]> cloud.milkyroute.net Git - dolphin.git/blob - src/settings/startup/startupsettingspage.cpp
Add 'Sort By' and 'View Mode' into Dolphin file context menus
[dolphin.git] / src / settings / startup / startupsettingspage.cpp
1 /***************************************************************************
2 * Copyright (C) 2008 by Peter Penz <peter.penz19@gmail.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
19
20 #include "startupsettingspage.h"
21
22 #include "dolphin_generalsettings.h"
23 #include "dolphinmainwindow.h"
24 #include "dolphinviewcontainer.h"
25 #include "global.h"
26
27 #include <KLocalizedString>
28 #include <KMessageBox>
29
30 #include <QCheckBox>
31 #include <QFileDialog>
32 #include <QGroupBox>
33 #include <QLabel>
34 #include <QLineEdit>
35 #include <QPushButton>
36 #include <QVBoxLayout>
37
38 StartupSettingsPage::StartupSettingsPage(const QUrl& url, QWidget* parent) :
39 SettingsPageBase(parent),
40 m_url(url),
41 m_homeUrl(nullptr),
42 m_splitView(nullptr),
43 m_editableUrl(nullptr),
44 m_showFullPath(nullptr),
45 m_filterBar(nullptr),
46 m_showFullPathInTitlebar(nullptr)
47 {
48 QVBoxLayout* topLayout = new QVBoxLayout(this);
49 QWidget* vBox = new QWidget(this);
50 QVBoxLayout *vBoxLayout = new QVBoxLayout(vBox);
51 vBoxLayout->setMargin(0);
52 vBoxLayout->setAlignment(Qt::AlignTop);
53
54 // create 'Home URL' editor
55 QGroupBox* homeBox = new QGroupBox(i18nc("@title:group", "Home Folder"), vBox);
56 vBoxLayout->addWidget(homeBox);
57
58 QWidget* homeUrlBox = new QWidget(homeBox);
59 QHBoxLayout *homeUrlBoxLayout = new QHBoxLayout(homeUrlBox);
60 homeUrlBoxLayout->setMargin(0);
61
62 QLabel* homeUrlLabel = new QLabel(i18nc("@label:textbox", "Location:"), homeUrlBox);
63 homeUrlBoxLayout->addWidget(homeUrlLabel);
64 m_homeUrl = new QLineEdit(homeUrlBox);
65 homeUrlBoxLayout->addWidget(m_homeUrl);
66 m_homeUrl->setClearButtonEnabled(true);
67
68 QPushButton* selectHomeUrlButton = new QPushButton(QIcon::fromTheme(QStringLiteral("folder-open")), QString(), homeUrlBox);
69 homeUrlBoxLayout->addWidget(selectHomeUrlButton);
70
71 #ifndef QT_NO_ACCESSIBILITY
72 selectHomeUrlButton->setAccessibleName(i18nc("@action:button", "Select Home Location"));
73 #endif
74
75 connect(selectHomeUrlButton, &QPushButton::clicked,
76 this, &StartupSettingsPage::selectHomeUrl);
77
78 QWidget* buttonBox = new QWidget(homeBox);
79 QHBoxLayout *buttonBoxLayout = new QHBoxLayout(buttonBox);
80 buttonBoxLayout->setMargin(0);
81
82 QPushButton* useCurrentButton = new QPushButton(i18nc("@action:button", "Use Current Location"), buttonBox);
83 buttonBoxLayout->addWidget(useCurrentButton);
84 connect(useCurrentButton, &QPushButton::clicked,
85 this, &StartupSettingsPage::useCurrentLocation);
86 QPushButton* useDefaultButton = new QPushButton(i18nc("@action:button", "Use Default Location"), buttonBox);
87 buttonBoxLayout->addWidget(useDefaultButton);
88 connect(useDefaultButton, &QPushButton::clicked,
89 this, &StartupSettingsPage::useDefaultLocation);
90
91 QVBoxLayout* homeBoxLayout = new QVBoxLayout(homeBox);
92 homeBoxLayout->addWidget(homeUrlBox);
93 homeBoxLayout->addWidget(buttonBox);
94
95 // create 'Split view', 'Show full path', 'Editable location' and 'Filter bar' checkboxes
96 m_splitView = new QCheckBox(i18nc("@option:check Startup Settings", "Split view mode"), vBox);
97 vBoxLayout->addWidget(m_splitView);
98 m_editableUrl = new QCheckBox(i18nc("@option:check Startup Settings", "Editable location bar"), vBox);
99 vBoxLayout->addWidget(m_editableUrl);
100 m_showFullPath = new QCheckBox(i18nc("@option:check Startup Settings", "Show full path inside location bar"), vBox);
101 vBoxLayout->addWidget(m_showFullPath);
102 m_filterBar = new QCheckBox(i18nc("@option:check Startup Settings", "Show filter bar"), vBox);
103 vBoxLayout->addWidget(m_filterBar);
104 m_showFullPathInTitlebar = new QCheckBox(i18nc("@option:check Startup Settings", "Show full path in title bar"), vBox);
105 vBoxLayout->addWidget(m_showFullPathInTitlebar);
106
107 // Add a dummy widget with no restriction regarding
108 // a vertical resizing. This assures that the dialog layout
109 // is not stretched vertically.
110 new QWidget(vBox);
111
112 topLayout->addWidget(vBox);
113
114 loadSettings();
115
116 connect(m_homeUrl, &QLineEdit::textChanged, this, &StartupSettingsPage::slotSettingsChanged);
117 connect(m_splitView, &QCheckBox::toggled, this, &StartupSettingsPage::slotSettingsChanged);
118 connect(m_editableUrl, &QCheckBox::toggled, this, &StartupSettingsPage::slotSettingsChanged);
119 connect(m_showFullPath, &QCheckBox::toggled, this, &StartupSettingsPage::slotSettingsChanged);
120 connect(m_filterBar, &QCheckBox::toggled, this, &StartupSettingsPage::slotSettingsChanged);
121 connect(m_showFullPathInTitlebar, &QCheckBox::toggled, this, &StartupSettingsPage::slotSettingsChanged);
122 }
123
124 StartupSettingsPage::~StartupSettingsPage()
125 {
126 }
127
128 void StartupSettingsPage::applySettings()
129 {
130 GeneralSettings* settings = GeneralSettings::self();
131
132 const QUrl url(QUrl::fromUserInput(m_homeUrl->text(), QString(), QUrl::AssumeLocalFile));
133 KFileItem fileItem(url);
134 if ((url.isValid() && fileItem.isDir()) || (url.scheme() == QLatin1String("timeline"))) {
135 settings->setHomeUrl(url.toDisplayString(QUrl::PreferLocalFile));
136 } else {
137 KMessageBox::error(this, i18nc("@info", "The location for the home folder is invalid or does not exist, it will not be applied."));
138 }
139
140 settings->setSplitView(m_splitView->isChecked());
141 settings->setEditableUrl(m_editableUrl->isChecked());
142 settings->setShowFullPath(m_showFullPath->isChecked());
143 settings->setFilterBar(m_filterBar->isChecked());
144 settings->setShowFullPathInTitlebar(m_showFullPathInTitlebar->isChecked());
145
146 settings->save();
147 }
148
149 void StartupSettingsPage::restoreDefaults()
150 {
151 GeneralSettings* settings = GeneralSettings::self();
152 settings->useDefaults(true);
153 loadSettings();
154 settings->useDefaults(false);
155 }
156
157 void StartupSettingsPage::slotSettingsChanged()
158 {
159 // Provide a hint that the startup settings have been changed. This allows the views
160 // to apply the startup settings only if they have been explicitly changed by the user
161 // (see bug #254947).
162 GeneralSettings::setModifiedStartupSettings(true);
163 emit changed();
164 }
165
166 void StartupSettingsPage::selectHomeUrl()
167 {
168 const QUrl homeUrl(QUrl::fromUserInput(m_homeUrl->text(), QString(), QUrl::AssumeLocalFile));
169 QUrl url = QFileDialog::getExistingDirectoryUrl(this, QString(), homeUrl);
170 if (!url.isEmpty()) {
171 m_homeUrl->setText(url.toDisplayString(QUrl::PreferLocalFile));
172 slotSettingsChanged();
173 }
174 }
175
176 void StartupSettingsPage::useCurrentLocation()
177 {
178 m_homeUrl->setText(m_url.toDisplayString(QUrl::PreferLocalFile));
179 }
180
181 void StartupSettingsPage::useDefaultLocation()
182 {
183 m_homeUrl->setText(QDir::homePath());
184 }
185
186 void StartupSettingsPage::loadSettings()
187 {
188 const QUrl url(Dolphin::homeUrl());
189 m_homeUrl->setText(url.toDisplayString(QUrl::PreferLocalFile));
190 m_splitView->setChecked(GeneralSettings::splitView());
191 m_editableUrl->setChecked(GeneralSettings::editableUrl());
192 m_showFullPath->setChecked(GeneralSettings::showFullPath());
193 m_filterBar->setChecked(GeneralSettings::filterBar());
194 m_showFullPathInTitlebar->setChecked(GeneralSettings::showFullPathInTitlebar());
195 }