X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/445f0b64bdd34e39f0565ef870937ebd3d5dfa61..d6488887ecf69d7f192b94de8dce34fae0b7eb76:/src/viewsettingspage.h diff --git a/src/viewsettingspage.h b/src/viewsettingspage.h index f2949bbc3..46671cb0c 100644 --- a/src/viewsettingspage.h +++ b/src/viewsettingspage.h @@ -15,14 +15,15 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ #ifndef VIEWSETTINGSPAGE_H #define VIEWSETTINGSPAGE_H -#include +#include #include +class ColumnViewSettingsPage; class DolphinMainWindow; class GeneralViewSettingsPage; class IconsViewSettingsPage; @@ -31,8 +32,8 @@ class DetailsViewSettingsPage; /** * @brief Page for the 'View' settings of the Dolphin settings dialog. * - * The views settings allow to set the properties for the icons mode and - * the details mode. + * The views settings allow to set the properties for the icons mode, + * the details mode and the column mode. */ class ViewSettingsPage : public SettingsPageBase { @@ -42,13 +43,17 @@ public: ViewSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent); virtual ~ViewSettingsPage(); - /** @see SettingsPageBase::applySettings */ + /** @see SettingsPageBase::applySettings() */ virtual void applySettings(); + /** @see SettingsPageBase::restoreDefaults() */ + virtual void restoreDefaults(); + private: GeneralViewSettingsPage* m_generalPage; IconsViewSettingsPage* m_iconsPage; DetailsViewSettingsPage* m_detailsPage; + ColumnViewSettingsPage* m_columnPage; }; #endif