]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/settings/startup/startupsettingspage.h
Change default Dolphin toolbar layout
[dolphin.git] / src / settings / startup / startupsettingspage.h
index 1c53cccdf753266612bd225ec8dd118b40479a10..a5e0b236f415f7551da914074e80511188bfdd66 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2008 by Peter Penz <peter.penz@gmx.at>                  *
+ *   Copyright (C) 2008 by Peter Penz <peter.penz19@gmail.com>             *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
 #ifndef STARTUPSETTINGSPAGE_H
 #define STARTUPSETTINGSPAGE_H
 
-#include <settings/settingspagebase.h>
-#include <KUrl>
+#include "settings/settingspagebase.h"
 
-class KLineEdit;
+#include <QUrl>
+
+class QLineEdit;
 class QCheckBox;
 
 /**
@@ -36,14 +37,14 @@ class StartupSettingsPage : public SettingsPageBase
     Q_OBJECT
 
 public:
-    StartupSettingsPage(const KUrl& url, QWidget* parent);
-    virtual ~StartupSettingsPage();
+    StartupSettingsPage(const QUrl& url, QWidget* parent);
+    ~StartupSettingsPage() override;
 
     /** @see SettingsPageBase::applySettings() */
-    virtual void applySettings();
+    void applySettings() override;
 
     /** @see SettingsPageBase::restoreDefaults() */
-    virtual void restoreDefaults();
+    void restoreDefaults() override;
 
 private slots:
     void slotSettingsChanged();
@@ -55,13 +56,15 @@ private:
     void loadSettings();
 
 private:
-    KUrl m_url;
-    KLineEdit* m_homeUrl;
+    QUrl m_url;
+    QLineEdit* m_homeUrl;
 
     QCheckBox* m_splitView;
     QCheckBox* m_editableUrl;
     QCheckBox* m_showFullPath;
     QCheckBox* m_filterBar;
+    QCheckBox* m_showFullPathInTitlebar;
+    QCheckBox* m_openExternallyCalledFolderInNewTab;
 };
 
 #endif