Scribus
Open source desktop publishing at your fingertips
autoform.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 AUTOFORM_H
8 #define AUTOFORM_H
9 
10 #include <QPixmap>
11 #include <QMenu>
12 #include <QWidgetAction>
13 #include <QToolButton>
14 #include "scribusapi.h"
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 
Definition: autoformbuttongroup.h:22
Definition: autoform.h:18