X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/445f0b64bdd34e39f0565ef870937ebd3d5dfa61..d6488887ecf69d7f192b94de8dce34fae0b7eb76:/src/generalviewsettingspage.h diff --git a/src/generalviewsettingspage.h b/src/generalviewsettingspage.h index 0d065a572..5aad4be4f 100644 --- a/src/generalviewsettingspage.h +++ b/src/generalviewsettingspage.h @@ -1,6 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006 by Peter Penz * - * peter.penz@gmx.at * + * Copyright (C) 2006 by Peter Penz * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -24,7 +23,10 @@ #include class DolphinMainWindow; +class QCheckBox; class QRadioButton; +class QSlider; +class QSpinBox; /** * @brief Represents the page from the Dolphin Settings which allows @@ -45,10 +47,19 @@ public: */ void applySettings(); + /** Restores the settings to default values. */ + void restoreDefaults(); + +private: + void loadSettings(); + private: DolphinMainWindow* m_mainWindow; QRadioButton* m_localProps; QRadioButton* m_globalProps; + QSlider* m_maxPreviewSize; + QSpinBox* m_spinBox; + QCheckBox* m_useFileThumbnails; }; #endif