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 / polyprops.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-11-22  |  957 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 POLYGONPROPS_H
  8. #define POLYGONPROPS_H
  9.  
  10. #include <QDialog>
  11. class QVBoxLayout;
  12. class QHBoxLayout;
  13. class QPushButton;
  14.  
  15. #include "scribusapi.h"
  16. class PolygonWidget;
  17.  
  18. class SCRIBUS_API PolygonProps : public QDialog
  19. {
  20.     Q_OBJECT
  21.  
  22. public:
  23.     PolygonProps(QWidget* parent, int polyC, int polyFd, double polyF, bool polyS, double polyR, double polyCurvature);
  24.     ~PolygonProps() {};
  25.     void getValues(int* polyC, int* polyFd, double* polyF, bool* polyS, double* polyR, double* polyCurvature);
  26.     PolygonWidget* polyWidget;
  27.     QPushButton* okButton;
  28.     QPushButton* cancelButton;
  29.  
  30. protected:
  31.     QVBoxLayout* PolygonPropsLayout;
  32.     QHBoxLayout* Layout1;
  33. };
  34.  
  35. #endif // POLYGONPROPS_H
  36.