summaryrefslogtreecommitdiffstats
path: root/src/part/settingsDialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 01:26:04 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 01:26:04 +0000
commit3c7b870f367df150ea60eb9d6bb2fd41646545d7 (patch)
treeac8705b4703cebb5031f9443eafd3e429a17ac1a /src/part/settingsDialog.h
downloadfilelight-3c7b870f367df150ea60eb9d6bb2fd41646545d7.tar.gz
filelight-3c7b870f367df150ea60eb9d6bb2fd41646545d7.zip
Added abandoned Filelight application
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1084392 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/part/settingsDialog.h')
-rw-r--r--src/part/settingsDialog.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/part/settingsDialog.h b/src/part/settingsDialog.h
new file mode 100644
index 0000000..b3ed375
--- /dev/null
+++ b/src/part/settingsDialog.h
@@ -0,0 +1,48 @@
+//Author: Max Howell <max.howell@methylblue.com>, (C) 2003-4
+//Copyright: See COPYING file that comes with this distribution
+
+#ifndef SETTINGSDLG_H
+#define SETTINGSDLG_H
+
+#include "dialog.h" //generated by uic
+#include <qtimer.h>
+
+
+class SettingsDialog : public Dialog
+{
+Q_OBJECT
+
+public:
+ SettingsDialog( QWidget* =0, const char* =0 );
+
+protected:
+ virtual void closeEvent( QCloseEvent * );
+ virtual void reject();
+
+public slots:
+ void addDirectory();
+ void removeDirectory();
+ void toggleScanAcrossMounts( bool );
+ void toggleDontScanRemoteMounts( bool );
+ void toggleDontScanRemovableMedia( bool );
+ void reset();
+ void startTimer();
+ void toggleUseAntialiasing( bool = true );
+ void toggleVaryLabelFontSizes( bool );
+ void changeContrast( int );
+ void changeScheme( int );
+ void changeMinFontPitch( int );
+ void toggleShowSmallFiles( bool );
+ void slotSliderReleased();
+
+signals:
+ void mapIsInvalid();
+ void canvasIsDirty( int );
+
+private:
+ QTimer m_timer;
+
+ static const uint TIMEOUT=1000;
+};
+
+#endif