diff options
| author | Peter Penz <[email protected]> | 2008-03-23 15:54:07 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-03-23 15:54:07 +0000 |
| commit | 6420d5f973bdf63375c02ab5308873d42f859f8d (patch) | |
| tree | 76630564c250a704fae8dafc4fea3a95398c3fe7 /src/dolphinsettingsdialog.h | |
| parent | cfb135f24e6b1b3eb1253c8ebf7c8e7307974eea (diff) | |
provide a config module for the settings GUI of the Dolphin views, so that it can be embedded into Konqueror
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=789209
Diffstat (limited to 'src/dolphinsettingsdialog.h')
| -rw-r--r-- | src/dolphinsettingsdialog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dolphinsettingsdialog.h b/src/dolphinsettingsdialog.h index 2cb7fc78e..fc17b3774 100644 --- a/src/dolphinsettingsdialog.h +++ b/src/dolphinsettingsdialog.h @@ -23,10 +23,8 @@ #include <kpagedialog.h> -class GeneralSettingsPage; -class StartupSettingsPage; -class ViewSettingsPage; class DolphinMainWindow; +class SettingsPageBase; /** * @brief Settings dialog for Dolphin. @@ -47,14 +45,16 @@ protected slots: /** @see KDialog::slotButtonClicked() */ virtual void slotButtonClicked(int button); +private slots: + /** Enables the Apply button. */ + void enableApply(); + private: void applySettings(); void restoreDefaults(); private: - StartupSettingsPage* m_startupSettingsPage; - GeneralSettingsPage* m_generalSettingsPage; - ViewSettingsPage* m_viewSettingsPage; + QList<SettingsPageBase*> m_pages; }; #endif |
