]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/generalsettingspage.h
allow to configure whether the zoom slider and/or the space information should be...
[dolphin.git] / src / generalsettingspage.h
index 90f510c28cca0e8cfb19721e3a6745402c4a4ebe..da49326c5c91a7e23e4612702890c476dc3a19ae 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 and to configure the
- * state of the view mode, split mode and the filter bar when starting Dolphin.
  */
 class GeneralSettingsPage : public SettingsPageBase
 {
@@ -47,25 +43,21 @@ public:
     /** @see SettingsPageBase::restoreDefaults() */
     virtual void restoreDefaults();
 
-private slots:
-    void selectHomeUrl();
-    void useCurrentLocation();
-    void useDefaultLocation();
-
 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_showDeleteCommand;
+    QCheckBox* m_showCopyMoveMenu;
+    
+    QCheckBox* m_showZoomSlider;
+    QCheckBox* m_showSpaceInfo;
+    
+    QCheckBox* m_browseThroughArchives;
+    QCheckBox* m_renameInline;
 };
 
 #endif