diff options
Diffstat (limited to 'src/part/settingsDialog.h')
-rw-r--r-- | src/part/settingsDialog.h | 48 |
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 <[email protected]>, (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 |