]>
cloud.milkyroute.net Git - dolphin.git/blob - src/generalsettingspage.cpp
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz (peter.penz@gmx.at) and *
3 * and Patrice Tremblay *
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. *
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. *
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 ***************************************************************************/
21 #include "generalsettingspage.h"
23 #include "dolphinsettings.h"
25 #include "dolphin_generalsettings.h"
34 #include <QVBoxLayout>
36 GeneralSettingsPage::GeneralSettingsPage(DolphinMainWindow
* mainWin
, QWidget
* parent
) :
37 SettingsPageBase(parent
),
38 m_confirmMoveToTrash(0),
40 m_showDeleteCommand(0),
41 m_showCopyMoveMenu(0),
42 m_browseThroughArchives(0),
47 const int spacing
= KDialog::spacingHint();
49 QVBoxLayout
* topLayout
= new QVBoxLayout(this);
50 KVBox
* vBox
= new KVBox(this);
51 vBox
->setSpacing(spacing
);
53 // create 'Ask Confirmation For' group
54 QGroupBox
* confirmBox
= new QGroupBox(i18nc("@title:group", "Ask For Confirmation When"), vBox
);
55 m_confirmMoveToTrash
= new QCheckBox(i18nc("@option:check Ask for Confirmation When",
56 "Moving files or folders to trash"), confirmBox
);
57 connect(m_confirmMoveToTrash
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
58 m_confirmDelete
= new QCheckBox(i18nc("@option:check Ask for Confirmation When",
59 "Deleting files or folders"), confirmBox
);
60 connect(m_confirmDelete
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
62 QVBoxLayout
* confirmBoxLayout
= new QVBoxLayout(confirmBox
);
63 confirmBoxLayout
->addWidget(m_confirmMoveToTrash
);
64 confirmBoxLayout
->addWidget(m_confirmDelete
);
66 QGroupBox
* contextMenuBox
= new QGroupBox(i18nc("@title:group", "Context Menu"), vBox
);
68 // create 'Show the command 'Delete' in context menu' checkbox
69 m_showDeleteCommand
= new QCheckBox(i18nc("@option:check", "Show 'Delete' command"), contextMenuBox
);
70 connect(m_showDeleteCommand
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
72 m_showCopyMoveMenu
= new QCheckBox(i18nc("@option:check", "Show 'Copy To' and 'Move To' commands"), contextMenuBox
);
73 connect(m_showCopyMoveMenu
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
75 QVBoxLayout
* contextMenuBoxLayout
= new QVBoxLayout(contextMenuBox
);
76 contextMenuBoxLayout
->addWidget(m_showDeleteCommand
);
77 contextMenuBoxLayout
->addWidget(m_showCopyMoveMenu
);
79 m_browseThroughArchives
= new QCheckBox(i18nc("@option:check", "Browse through archives"), vBox
);
80 connect(m_browseThroughArchives
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
82 m_renameInline
= new QCheckBox(i18nc("@option:check", "Rename inline"), vBox
);
83 connect(m_renameInline
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
85 // Add a dummy widget with no restriction regarding
86 // a vertical resizing. This assures that the dialog layout
87 // is not stretched vertically.
90 topLayout
->addWidget(vBox
);
95 GeneralSettingsPage::~GeneralSettingsPage()
99 void GeneralSettingsPage::applySettings()
101 GeneralSettings
* settings
= DolphinSettings::instance().generalSettings();
103 KSharedConfig::Ptr kioConfig
= KSharedConfig::openConfig("kiorc", KConfig::NoGlobals
);
104 KConfigGroup
confirmationGroup(kioConfig
, "Confirmations");
105 confirmationGroup
.writeEntry("ConfirmTrash", m_confirmMoveToTrash
->isChecked());
106 confirmationGroup
.writeEntry("ConfirmDelete", m_confirmDelete
->isChecked());
107 confirmationGroup
.sync();
109 KSharedConfig::Ptr globalConfig
= KSharedConfig::openConfig("kdeglobals", KConfig::NoGlobals
);
110 KConfigGroup
configGroup(globalConfig
, "KDE");
111 configGroup
.writeEntry("ShowDeleteCommand", m_showDeleteCommand
->isChecked());
114 settings
->setShowCopyMoveMenu(m_showCopyMoveMenu
->isChecked());
115 settings
->setBrowseThroughArchives(m_browseThroughArchives
->isChecked());
116 settings
->setRenameInline(m_renameInline
->isChecked());
119 void GeneralSettingsPage::restoreDefaults()
121 GeneralSettings
* settings
= DolphinSettings::instance().generalSettings();
122 settings
->setDefaults();
124 // TODO: reset default settings for trash and show delete command...
129 void GeneralSettingsPage::loadSettings()
131 KSharedConfig::Ptr kioConfig
= KSharedConfig::openConfig("kiorc", KConfig::IncludeGlobals
);
132 const KConfigGroup
confirmationGroup(kioConfig
, "Confirmations");
133 m_confirmMoveToTrash
->setChecked(confirmationGroup
.readEntry("ConfirmTrash", false));
134 m_confirmDelete
->setChecked(confirmationGroup
.readEntry("ConfirmDelete", true));
136 KSharedConfig::Ptr globalConfig
= KSharedConfig::openConfig("kdeglobals", KConfig::IncludeGlobals
);
137 KConfigGroup
configGroup(globalConfig
, "KDE");
138 m_showDeleteCommand
->setChecked(configGroup
.readEntry("ShowDeleteCommand", false));
140 GeneralSettings
* settings
= DolphinSettings::instance().generalSettings();
141 m_showCopyMoveMenu
->setChecked(settings
->showCopyMoveMenu());
142 m_browseThroughArchives
->setChecked(settings
->browseThroughArchives());
143 m_renameInline
->setChecked(settings
->renameInline());
146 #include "generalsettingspage.moc"