]> cloud.milkyroute.net Git - dolphin.git/blob - src/generalsettingspage.cpp
SVN_SILENT made messages (.desktop file)
[dolphin.git] / src / generalsettingspage.cpp
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz (peter.penz@gmx.at) and *
3 * and Patrice Tremblay *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
19 ***************************************************************************/
20
21 #include "generalsettingspage.h"
22
23 #include "dolphinsettings.h"
24
25 #include "dolphin_generalsettings.h"
26
27 #include <kdialog.h>
28 #include <klocale.h>
29 #include <kvbox.h>
30
31 #include <QCheckBox>
32 #include <QGroupBox>
33 #include <QLabel>
34 #include <QVBoxLayout>
35
36 GeneralSettingsPage::GeneralSettingsPage(DolphinMainWindow* mainWin, QWidget* parent) :
37 SettingsPageBase(parent),
38 m_showDeleteCommand(0),
39 m_confirmMoveToTrash(0),
40 m_confirmDelete(0),
41 m_browseThroughArchives(0)
42 {
43 Q_UNUSED(mainWin);
44
45 const int spacing = KDialog::spacingHint();
46
47 QVBoxLayout* topLayout = new QVBoxLayout(this);
48 KVBox* vBox = new KVBox(this);
49 vBox->setSpacing(spacing);
50
51 // create 'Ask Confirmation For' group
52 QGroupBox* confirmBox = new QGroupBox(i18nc("@title:group", "Ask For Confirmation When"), vBox);
53 m_confirmMoveToTrash = new QCheckBox(i18nc("@option:check Ask for Confirmation When",
54 "Moving files or folders to trash"), confirmBox);
55 m_confirmDelete = new QCheckBox(i18nc("@option:check Ask for Confirmation When",
56 "Deleting files or folders"), confirmBox);
57
58 QVBoxLayout* confirmBoxLayout = new QVBoxLayout(confirmBox);
59 confirmBoxLayout->addWidget(m_confirmMoveToTrash);
60 confirmBoxLayout->addWidget(m_confirmDelete);
61
62 // create 'Show the command 'Delete' in context menu' checkbox
63 m_showDeleteCommand = new QCheckBox(i18nc("@option:check", "Show 'Delete' command in context menu"), vBox);
64
65 m_browseThroughArchives = new QCheckBox(i18nc("option:check", "Browse through archives"), vBox);
66
67 // Add a dummy widget with no restriction regarding
68 // a vertical resizing. This assures that the dialog layout
69 // is not stretched vertically.
70 new QWidget(vBox);
71
72 topLayout->addWidget(vBox);
73
74 loadSettings();
75 }
76
77 GeneralSettingsPage::~GeneralSettingsPage()
78 {
79 }
80
81 void GeneralSettingsPage::applySettings()
82 {
83 GeneralSettings* settings = DolphinSettings::instance().generalSettings();
84
85 KSharedConfig::Ptr konqConfig = KSharedConfig::openConfig("konquerorrc", KConfig::IncludeGlobals);
86 KConfigGroup trashConfig(konqConfig, "Trash");
87 trashConfig.writeEntry("ConfirmTrash", m_confirmMoveToTrash->isChecked());
88 trashConfig.writeEntry("ConfirmDelete", m_confirmDelete->isChecked());
89 trashConfig.sync();
90
91 KConfigGroup kdeConfig(KGlobal::config(), "KDE");
92 kdeConfig.writeEntry("ShowDeleteCommand", m_showDeleteCommand->isChecked());
93 kdeConfig.sync();
94
95 settings->setBrowseThroughArchives(m_browseThroughArchives->isChecked());
96 }
97
98 void GeneralSettingsPage::restoreDefaults()
99 {
100 GeneralSettings* settings = DolphinSettings::instance().generalSettings();
101 settings->setDefaults();
102
103 // TODO: reset default settings for trash and show delete command...
104
105 loadSettings();
106 }
107
108 void GeneralSettingsPage::loadSettings()
109 {
110 KSharedConfig::Ptr konqConfig = KSharedConfig::openConfig("konquerorrc", KConfig::IncludeGlobals);
111 const KConfigGroup trashConfig(konqConfig, "Trash");
112 m_confirmMoveToTrash->setChecked(trashConfig.readEntry("ConfirmTrash", false));
113 m_confirmDelete->setChecked(trashConfig.readEntry("ConfirmDelete", true));
114
115 const KConfigGroup kdeConfig(KGlobal::config(), "KDE");
116 m_showDeleteCommand->setChecked(kdeConfig.readEntry("ShowDeleteCommand", false));
117
118 GeneralSettings* settings = DolphinSettings::instance().generalSettings();
119 m_browseThroughArchives->setChecked(settings->browseThroughArchives());
120 }
121
122 #include "generalsettingspage.moc"