/* * SPDX-FileCopyrightText: 2006 Peter Penz * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef VIEWSETTINGSPAGE_H #define VIEWSETTINGSPAGE_H #include "settings/settingspagebase.h" class ViewSettingsTab; class QWidget; /** * @brief Page for the 'View' settings of the Dolphin settings dialog. * * The views settings allow to set the properties for the icons mode, * the details mode and the column mode. */ class ViewSettingsPage : public SettingsPageBase { Q_OBJECT public: explicit ViewSettingsPage(QWidget* parent); ~ViewSettingsPage() override; /** @see SettingsPageBase::applySettings() */ void applySettings() override; /** @see SettingsPageBase::restoreDefaults() */ void restoreDefaults() override; private: QList m_tabs; }; #endif