File: reformdoc.h

package info (click to toggle)
scribus 1.2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 29,928 kB
  • ctags: 8,814
  • sloc: cpp: 98,550; sh: 16,484; ansic: 10,295; perl: 2,818; makefile: 1,340; python: 1,177; xml: 83
file content (67 lines) | stat: -rw-r--r-- 1,525 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef REFORMDOC_H
#define REFORMDOC_H

#include <qdialog.h>
#include <qlayout.h>
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qgroupbox.h>
#include <qlabel.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include "mspinbox.h"

class ReformDoc : public QDialog
{ 
    Q_OBJECT

public:
    ReformDoc( QWidget* parent, double t, double l, double r, double b, double Pagebr, double Pageho, 
				bool fp, bool fpe, int Einh, int ori, QString pageSize, int PageNr );
    ~ReformDoc() {};

    QGroupBox* GroupBox7;
    QGroupBox* dsGroupBox7;
    QLabel* TextLabel5;
    QLabel* TextLabel7;
    QLabel* TextLabel1_3;
    QSpinBox* PgNr;
    MSpinBox* TopR;
    MSpinBox* BottomR;
    MSpinBox* LeftR;
    MSpinBox* RightR;
    QCheckBox* Doppelseiten;
    QCheckBox* ErsteSeite;
    QLabel* Links;
    QLabel* Rechts;
	QLabel*	widthQLabel;
	QLabel*	heightQLabel;
	QLabel*	sizeQLabel;
	QLabel*	orientationQLabel;
	QLabel*	sizedataQLabel;
	QLabel*	orientationdataQLabel;
    QLabel* widthdataQLabel;
    QLabel* heightdataQLabel;
    QPushButton* OKButton;
    QPushButton* CancelB;
	int einheit;
	double Breite;
	double Hoehe;

protected:
    QVBoxLayout* ReformDocLayout;
    QHBoxLayout* dsGroupBox7Layout;
    QHBoxLayout* GroupBox7Layout;
    QGridLayout* dsLayout4;
    QGridLayout* Layout4;
    QHBoxLayout* Layout3;

protected slots:
    virtual void setDS();
	virtual void setTop(int v);
	virtual void setBottom(int v);
	virtual void setLeft(int v);
	virtual void setRight(int v);
};

#endif // REFORMDOC_H