~ubuntu-branches/debian/sid/scribus/sid

« back to all changes in this revision

Viewing changes to scribus/autoform.h

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2008-07-02 13:42:07 UTC
  • mto: (4.1.1 sid) (1.2.1) (20.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080702134207-h9h384v0wxjmaf8y
Tags: upstream-1.3.3.12.dfsg
ImportĀ upstreamĀ versionĀ 1.3.3.12.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
*/
1
7
#ifndef AUTOFORM_H
2
8
#define AUTOFORM_H
3
9
 
4
 
#include <qvariant.h>
5
10
#include <qwidget.h>
6
 
#include <qbuttongroup.h>
7
11
#include <qtoolbutton.h>
8
 
#include <qlayout.h>
9
 
#include <qtooltip.h>
10
 
#include <qwhatsthis.h>
11
 
#include <qpopupmenu.h>
12
 
#include <qpixmap.h>
13
 
 
14
 
class Autoforms : public QToolButton
 
12
#include "scribusapi.h"
 
13
class QGridLayout;
 
14
class QPopupMenu;
 
15
class QPixmap;
 
16
class AutoformButtonGroup;
 
17
 
 
18
 
 
19
class SCRIBUS_API Autoforms : public QToolButton
15
20
{
16
21
    Q_OBJECT
17
22
 
18
23
public:
19
24
        Autoforms( QWidget* parent );
20
25
        ~Autoforms() {};
21
 
        double* getShapeData(int a, int *n);
22
26
        QPixmap getIconPixmap(int nr);
23
 
 
24
 
        QButtonGroup* buttonGroup1;
25
 
        QToolButton* toolButton1;
26
 
        QToolButton* toolButton2;
27
 
        QToolButton* toolButton3;
28
 
        QToolButton* toolButton4;
29
 
        QToolButton* toolButton5;
30
 
        QToolButton* toolButton6;
31
 
        QToolButton* toolButton7;
32
 
        QToolButton* toolButton8;
33
 
        QToolButton* toolButton9;
34
 
        QToolButton* toolButton10;
35
 
        QToolButton* toolButton11;
36
 
        QToolButton* toolButton12;
37
 
        QToolButton* toolButton13;
38
 
        QToolButton* toolButton14;
39
 
        QToolButton* toolButton15;
40
 
        QToolButton* toolButton16;
41
 
        QToolButton* toolButton17;
42
 
        QToolButton* toolButton18;
43
27
        QPopupMenu* Men;
44
28
 
45
29
public slots:
50
34
 
51
35
protected:
52
36
        QGridLayout* buttonGroup1Layout;
 
37
        AutoformButtonGroup* buttonGroup1;
53
38
};
54
39
 
55
40
#endif