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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
/* This file is part of the KDE project
Copyright (C) 2002, Laurent Montel <lmontel@mandrakesoft.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __VCONFIGUREDLG_H__
#define __VCONFIGUREDLG_H__
#include <kdialogbase.h>
class KarbonView;
class KConfig;
class KIntNumInput;
class KColorButton;
class KoUnitDoubleSpinBox;
class TQCheckBox;
class TQComboBox;
class VConfigInterfacePage : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
VConfigInterfacePage(
KarbonView* view, TQVBox *box = 0L, char* name = 0L );
void apply();
public slots:
void slotDefault();
private:
KarbonView* m_view;
KConfig* m_config;
KIntNumInput* m_recentFiles;
int m_oldRecentFiles;
TQCheckBox* m_showStatusBar;
KIntNumInput* m_copyOffset;
int m_oldCopyOffset;
KIntNumInput* m_dockerFontSize;
int m_oldDockerFontSize;
};
class VConfigMiscPage : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
VConfigMiscPage(
KarbonView* view, TQVBox* box, char* name = 0L );
void apply();
signals:
void unitChanged( int );
public slots:
void slotDefault();
private:
KarbonView* m_view;
KConfig* m_config;
KIntNumInput* m_undoRedo;
int m_oldUndoRedo;
int m_oldUnit;
TQComboBox *m_unit;
};
class VConfigDefaultPage : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
VConfigDefaultPage(
KarbonView* view, TQVBox* box, char* name = 0L );
void apply();
public slots:
void slotDefault();
private:
KarbonView* m_view;
KConfig* m_config;
KIntNumInput* m_autoSave;
int m_oldAutoSave;
TQCheckBox *m_createBackupFile;
bool m_oldBackupFile;
TQCheckBox *m_saveAsPath;
bool m_oldSaveAsPath;
};
class VConfigGridPage : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
VConfigGridPage(
KarbonView* view, TQVBox* box, char* name = 0L );
void apply();
public slots:
void slotDefault();
void slotUnitChanged( int );
protected slots:
void setMaxHorizSnap( double v );
void setMaxVertSnap( double v );
private:
KarbonView* m_view;
KoUnitDoubleSpinBox* m_spaceHorizUSpin;
KoUnitDoubleSpinBox* m_spaceVertUSpin;
KoUnitDoubleSpinBox* m_snapHorizUSpin;
KoUnitDoubleSpinBox* m_snapVertUSpin;
TQCheckBox* m_gridChBox;
TQCheckBox* m_snapChBox;
KColorButton* m_gridColorBtn;
};
class VConfigureDlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
VConfigureDlg( KarbonView* tqparent );
public slots:
void slotApply();
void slotDefault();
private:
VConfigInterfacePage* m_interfacePage;
VConfigMiscPage* m_miscPage;
VConfigGridPage* m_gridPage;
VConfigDefaultPage* m_defaultDocPage;
};
#endif
|