home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / adjustcmsdialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-07-06  |  806 b   |  36 lines

  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
  36.