File: applytemplate.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 (51 lines) | stat: -rw-r--r-- 957 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
#ifndef APPLYT_H
#define APPLYT_H

#include <qdialog.h>
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qpushbutton.h>
#include <qlayout.h>
#include <qtooltip.h>
#include <qspinbox.h>
#include <qradiobutton.h>
#include <qbuttongroup.h>
#include "scribusview.h"

class ApplyT : public QDialog
{
	Q_OBJECT

public:
	ApplyT( QWidget* parent, ScribusView *view, QString Nam);
	~ApplyT() {};

	QLabel* TextLabel1;
	QLabel* TextLabel2;
	QComboBox* Templ;
	QButtonGroup* buttonGroup1;
	QRadioButton* SinglePage;
	QRadioButton* PageRange;
	QRadioButton* OddRange;
	QRadioButton* EvenRange;
	QSpinBox* FromPage;
	QSpinBox* ToPage;
	QPushButton* CancelB;
	QPushButton* OKButton;

public slots:
	void RangeSel();
	void SingleSel();
	void CheckRangeF();
	void CheckRangeT();

protected:
	QVBoxLayout* ApplyTLayout;
	QHBoxLayout* Layout4;
	QHBoxLayout* layout3;
	QVBoxLayout* buttonGroup1Layout;
	QHBoxLayout* layout2;
};

#endif // APPLYT_H