]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/generalviewsettingspage.h
Dolphin is now a KUniqueApplication. A lot of thanks go to Oscar Blumberg, who submit...
[dolphin.git] / src / generalviewsettingspage.h
index 8f6f7ada61787d426f09b8ad2fd506aedec22167..0d065a5726102613f7b6ff63f23b9471d03496b6 100644 (file)
 
 #include <kvbox.h>
 
+class DolphinMainWindow;
 class QRadioButton;
 
 /**
  * @brief Represents the page from the Dolphin Settings which allows
  * to modify general settings for the view modes.
- *
- *  @author Peter Penz <peter.penz@gmx.at>
  */
 class GeneralViewSettingsPage : public KVBox
 {
     Q_OBJECT
 
 public:
-    GeneralViewSettingsPage(QWidget* parent);
+    GeneralViewSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent);
     virtual ~GeneralViewSettingsPage();
 
     /**
@@ -47,6 +46,7 @@ public:
     void applySettings();
 
 private:
+    DolphinMainWindow* m_mainWindow;
     QRadioButton* m_localProps;
     QRadioButton* m_globalProps;
 };