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 / autoform.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-02-07  |  802 b   |  41 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 AUTOFORM_H
  8. #define AUTOFORM_H
  9.  
  10. #include <QPixmap>
  11. #include <QMenu>
  12. #include <QWidgetAction>
  13. #include <QToolButton>
  14. #include "scribusapi.h"
  15. class AutoformButtonGroup;
  16.  
  17.  
  18. class SCRIBUS_API Autoforms : public QToolButton
  19. {
  20.     Q_OBJECT
  21.  
  22. public:
  23.     Autoforms( QWidget* parent );
  24.     ~Autoforms() {};
  25.     QPixmap getIconPixmap(int nr);
  26.     QMenu* Men;
  27.     QWidgetAction* MenAct;
  28.  
  29. public slots:
  30.     void selForm(int a);
  31.  
  32. signals:
  33.     void FormSel(int, int, qreal *);
  34.  
  35. protected:
  36.     AutoformButtonGroup* buttonGroup1;
  37. };
  38.  
  39. #endif
  40.  
  41.