Scribus
Open source desktop publishing at your fingertips
adjustcmsdialog.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 ADJUSTCMSDIALOG_H
8 #define ADJUSTCMSDIALOG_H
9 
10 #include <QDialog>
11 #include <QVBoxLayout>
12 #include <QHBoxLayout>
13 class QPushButton;
14 class ScribusDoc;
15 
16 #include "scribusapi.h"
17 #include "cmsprefs.h"
18 
19 class SCRIBUS_API AdjustCmsDialog : public QDialog
20 {
21  Q_OBJECT
22 
23 public:
24  AdjustCmsDialog(QWidget* parent, ScribusDoc* doc);
25  ~AdjustCmsDialog() {};
26  CMSPrefs* tabColorManagement;
27 
28 private:
29  QVBoxLayout* queryLayout;
30  QHBoxLayout* okCancelLayout;
31  QPushButton* okButton;
32  QPushButton* cancelButton;
33 };
34 
35 #endif
the Document Class
Definition: scribusdoc.h:90
Definition: adjustcmsdialog.h:19
Definition: cmsprefs.h:17