Scribus
Open source desktop publishing at your fingertips
sxwdia.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef SXWDIA_H
8 #define SXWDIA_H
9 
10 #include "scconfig.h"
11 
12 #include <QDialog>
13 class QCheckBox;
14 class QPushButton;
15 
16 class SxwDialog : public QDialog
17 {
18  Q_OBJECT
19 
20 public:
21  SxwDialog(bool update, bool prefix, bool pack);
22  ~SxwDialog();
23  bool shouldUpdate();
24  bool usePrefix();
25  bool askAgain();
26  bool packStyles();
27 private:
28  QCheckBox* updateCheck;
29  QCheckBox* prefixCheck;
30  QCheckBox* doNotAskCheck;
31  QCheckBox* packCheck;
32  QPushButton* okButton;
33  QPushButton* cancelButton;
34 };
35 
36 #endif // CSVDIA_H
Definition: sxwdia.h:16