]>
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 // create 'Show the command 'Delete' in context menu' checkbox
67 m_showDeleteCommand
= new QCheckBox(i18nc("@option:check", "Show 'Delete' command in context menu"), vBox
);
68 connect(m_showDeleteCommand
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
70 m_showCopyMoveMenu
= new QCheckBox(i18nc("@option:check", "Show 'Copy To' and 'Move To' commands in context menu"), vBox
);
71 connect(m_showCopyMoveMenu
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
73 m_browseThroughArchives
= new QCheckBox(i18nc("@option:check", "Browse through archives"), vBox
);
74 connect(m_browseThroughArchives
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
76 m_renameInline
= new QCheckBox(i18nc("@option:check", "Rename inline"), vBox
);
77 connect(m_renameInline
, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
79 // Add a dummy widget with no restriction regarding
80 // a vertical resizing. This assures that the dialog layout
81 // is not stretched vertically.
84 topLayout
->addWidget(vBox
);
89 GeneralSettingsPage::~GeneralSettingsPage()
93 void GeneralSettingsPage::applySettings()
95 GeneralSettings
* settings
= DolphinSettings::instance().generalSettings();
97 KSharedConfig::Ptr konqConfig
= KSharedConfig::openConfig("konquerorrc", KConfig::IncludeGlobals
);
98 KConfigGroup
trashConfig(konqConfig
, "Trash");
99 trashConfig
.writeEntry("ConfirmTrash", m_confirmMoveToTrash
->isChecked());
100 trashConfig
.writeEntry("ConfirmDelete", m_confirmDelete
->isChecked());
103 KConfigGroup
kdeConfig(KGlobal::config(), "KDE");
104 kdeConfig
.writeEntry("ShowDeleteCommand", m_showDeleteCommand
->isChecked());
107 settings
->setShowCopyMoveMenu(m_showCopyMoveMenu
->isChecked());
108 settings
->setBrowseThroughArchives(m_browseThroughArchives
->isChecked());
109 settings
->setRenameInline(m_renameInline
->isChecked());
112 void GeneralSettingsPage::restoreDefaults()
114 GeneralSettings
* settings
= DolphinSettings::instance().generalSettings();
115 settings
->setDefaults();
117 // TODO: reset default settings for trash and show delete command...
122 void GeneralSettingsPage::loadSettings()
124 KSharedConfig::Ptr konqConfig
= KSharedConfig::openConfig("konquerorrc", KConfig::IncludeGlobals
);
125 const KConfigGroup
trashConfig(konqConfig
, "Trash");
126 m_confirmMoveToTrash
->setChecked(trashConfig
.readEntry("ConfirmTrash", false));
127 m_confirmDelete
->setChecked(trashConfig
.readEntry("ConfirmDelete", true));
129 const KConfigGroup
kdeConfig(KGlobal::config(), "KDE");
130 m_showDeleteCommand
->setChecked(kdeConfig
.readEntry("ShowDeleteCommand", false));
132 GeneralSettings
* settings
= DolphinSettings::instance().generalSettings();
133 m_showCopyMoveMenu
->setChecked(settings
->showCopyMoveMenu());
134 m_browseThroughArchives
->setChecked(settings
->browseThroughArchives());
135 m_renameInline
->setChecked(settings
->renameInline());
138 #include "generalsettingspage.moc"