blob: 87ee03a31da8e5ed26725f8ba8f7e65da2916e19 (
plain)
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
|
#ifndef ADVANCEDDIALOG_H
#define ADVANCEDDIALOG_H
#include <kdialogbase.h>
#include <tqwidget.h>
#include <tdeconfig.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqwhatsthis.h>
#include <tqgroupbox.h>
#include <tqobject.h>
#include <tqcheckbox.h>
#include <tqslider.h>
#include "advanceddialogimpl.h"
class AdvancedDialog : public AdvancedDialogImpl
{
public:
AdvancedDialog(TQWidget *parent = 0, const char *name = 0);
~AdvancedDialog();
void setMode(TQComboBox *box, int i);
int mode(TQComboBox *box);
};
/* =================================================================================================== */
class KScreenSaverAdvancedDialog : public KDialogBase
{
Q_OBJECT
public:
KScreenSaverAdvancedDialog(TQWidget *parent, const char* name = 0);
public slots:
void slotOk();
protected slots:
void slotPriorityChanged(int val);
void slotChangeBottomRightCorner(int);
void slotChangeBottomLeftCorner(int);
void slotChangeTopRightCorner(int);
void slotChangeTopLeftCorner(int);
private:
void readSettings();
TQCheckBox *m_topLeftCorner;
TQCheckBox *m_bottomLeftCorner;
TQCheckBox *m_topRightCorner;
TQCheckBox *m_bottomRightCorner;
TQSlider *mPrioritySlider;
bool mChanged;
int mPriority;
AdvancedDialog *dialog;
};
#endif
|