]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/generalsettingspage.h
Forwardport 773570:
[dolphin.git] / src / generalsettingspage.h
index 7dab3ea74e7472cb92424ea053efc49e03ae4b2f..df713ad477ec6f8c446b1aaa3a13a09bf26915a9 100644 (file)
 
 class DolphinMainWindow;
 class QLineEdit;
-class QRadioButton;
 class QCheckBox;
 
 /**
  * @brief Page for the 'General' settings of the Dolphin settings dialog.
- *
- * The general settings allow to set the home Url, the default view mode
- * and the split view mode.
  */
 class GeneralSettingsPage : public SettingsPageBase
 {
@@ -41,21 +37,21 @@ public:
     GeneralSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent);
     virtual ~GeneralSettingsPage();
 
-    /** @see SettingsPageBase::applySettings */
+    /** @see SettingsPageBase::applySettings() */
     virtual void applySettings();
 
-private slots:
-    void selectHomeUrl();
-    void useCurrentLocation();
-    void useDefaultLocation();
+    /** @see SettingsPageBase::restoreDefaults() */
+    virtual void restoreDefaults();
+
+private:
+    void loadSettings();
 
 private:
-    DolphinMainWindow* m_mainWindow;
-    QLineEdit* m_homeUrl;
-    QCheckBox* m_splitView;
-    QCheckBox* m_editableUrl;
-    QCheckBox* m_filterBar;
     QCheckBox* m_showDeleteCommand;
+    QCheckBox* m_confirmMoveToTrash;
+    QCheckBox* m_confirmDelete;
+
+    QCheckBox* m_browseThroughArchives;
 };
 
 #endif