summaryrefslogtreecommitdiffstats
path: root/kcontrol/screensaver/advanceddialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/screensaver/advanceddialog.h')
-rw-r--r--kcontrol/screensaver/advanceddialog.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/kcontrol/screensaver/advanceddialog.h b/kcontrol/screensaver/advanceddialog.h
new file mode 100644
index 000000000..87ee03a31
--- /dev/null
+++ b/kcontrol/screensaver/advanceddialog.h
@@ -0,0 +1,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
+