summaryrefslogtreecommitdiff
path: root/src/ui/preferencesdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/preferencesdlg.h')
-rw-r--r--src/ui/preferencesdlg.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/ui/preferencesdlg.h b/src/ui/preferencesdlg.h
new file mode 100644
index 0000000..94f5682
--- /dev/null
+++ b/src/ui/preferencesdlg.h
@@ -0,0 +1,37 @@
+#pragma once
+
+#include <kdialogbase.h>
+
+class TQCheckBox;
+class TQSpinBox;
+
+class PreferencesDlg : public KDialogBase
+{
+ TQ_OBJECT
+
+public:
+ PreferencesDlg( TQWidget *parent = 0 );
+ void load();
+
+signals:
+ void settingsChanged();
+
+protected slots:
+ void slotOk();
+ void slotApply();
+
+private:
+ void save();
+
+ TQCheckBox *m_dockInTray;
+ TQCheckBox *m_showPopup;
+ TQCheckBox *m_showRecTray;
+ TQCheckBox *m_confirmQuit;
+ TQSpinBox *m_scrollStep;
+
+ TQCheckBox *m_noTabs;
+ TQCheckBox *m_showOutput;
+ TQCheckBox *m_showInput;
+ TQCheckBox *m_showPlayback;
+ TQCheckBox *m_showRecording;
+};