1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/* This file is part of the KDE libraries
Copyright (C) 2008 Alexander Dymo <adymo@kdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "kshortcutsdialog_p.h"
#include <QDir>
#include <QLabel>
#include <QMenu>
#include <QFile>
#include <QTextStream>
#include <QtXml/QDomDocument>
#include <QFileDialog>
#include <kcombobox.h>
#include <kpushbutton.h>
#include <kstandarddirs.h>
#include <kactioncollection.h>
#include <kmessagebox.h>
#include <kxmlguiclient.h>
#include <kinputdialog.h>
#include "kshortcutsdialog.h"
#include "kshortcutschemeshelper_p.h"
KShortcutSchemesEditor::KShortcutSchemesEditor(KShortcutsDialog *parent)
:QGroupBox(i18n("Shortcut Schemes"), parent), m_dialog(parent)
{
KConfigGroup group( KGlobal::config(), "Shortcut Schemes" );
const QStringList schemeFiles = KGlobal::dirs()->findAllResources("appdata", "*shortcuts.rc");
QStringList schemes;
schemes << "Default";
foreach (QString schemeFile, schemeFiles)
{
schemes << schemeFile.remove(QRegExp("^.*/"+KGlobal::mainComponent().componentName())).
remove("shortcuts.rc");
}
QString currentScheme = group.readEntry("Current Scheme", "Default");
QHBoxLayout *l = new QHBoxLayout(this);
l->setMargin(0);
QLabel *schemesLabel = new QLabel(i18n("Current scheme:"), this);
l->addWidget(schemesLabel);
m_schemesList = new KComboBox(this);
m_schemesList->setEditable(false);
m_schemesList->addItems(schemes);
m_schemesList->setCurrentIndex(m_schemesList->findText(currentScheme));
schemesLabel->setBuddy(m_schemesList);
l->addWidget(m_schemesList);
m_newScheme = new KPushButton(i18n("New..."));
l->addWidget(m_newScheme);
m_deleteScheme = new KPushButton(i18n("Delete"));
l->addWidget(m_deleteScheme);
KPushButton *moreActions = new KPushButton(i18n("More Actions"));
l->addWidget(moreActions);
QMenu *moreActionsMenu = new QMenu(this);
moreActionsMenu->addAction(i18n("Save as Scheme Defaults"),
this, SLOT(saveAsDefaultsForScheme()));
moreActionsMenu->addAction(i18n("Export Scheme..."),
this, SLOT(exportShortcutsScheme()));
moreActions->setMenu(moreActionsMenu);
l->addStretch(1);
connect(m_schemesList, SIGNAL(activated(QString)),
this, SIGNAL(shortcutsSchemeChanged(QString)));
connect(m_newScheme, SIGNAL(clicked()), this, SLOT(newScheme()));
connect(m_deleteScheme, SIGNAL(clicked()), this, SLOT(deleteScheme()));
updateDeleteButton();
}
void KShortcutSchemesEditor::newScheme()
{
bool ok;
const QString newName = KInputDialog::getText(i18n("Name for New Scheme"),
i18n("Name for new scheme:"), i18n("New Scheme"), &ok,this);
if (!ok )
return;
if (m_schemesList->findText(newName) != -1)
{
KMessageBox::sorry(this, i18n("A scheme with this name already exists."));
return;
}
const QString newSchemeFileName = KShortcutSchemesHelper::applicationShortcutSchemeFileName(newName);
QFile schemeFile(newSchemeFileName);
if (!schemeFile.open(QFile::WriteOnly | QFile::Truncate))
return;
QDomDocument doc;
QDomElement docElem = doc.createElement("kpartgui");
doc.appendChild(docElem);
QDomElement elem = doc.createElement("ActionProperties");
docElem.appendChild(elem);
QTextStream out(&schemeFile);
out << doc.toString(4);
m_schemesList->addItem(newName);
m_schemesList->setCurrentIndex(m_schemesList->findText(newName));
updateDeleteButton();
emit shortcutsSchemeChanged(newName);
}
void KShortcutSchemesEditor::deleteScheme()
{
if (KMessageBox::questionYesNo(this,
i18n("Do you really want to delete the scheme %1?\n\
Note that this will not remove any system wide shortcut schemes.", currentScheme())) == KMessageBox::No)
return;
//delete the scheme for the app itself
QFile::remove(KShortcutSchemesHelper::applicationShortcutSchemeFileName(currentScheme()));
//delete all scheme files we can find for xmlguiclients in the user directories
foreach (KActionCollection *collection, m_dialog->actionCollections())
{
const KXMLGUIClient *client = collection->parentGUIClient();
if (!client)
continue;
QFile::remove(KShortcutSchemesHelper::shortcutSchemeFileName(client, currentScheme()));
}
m_schemesList->removeItem(m_schemesList->findText(currentScheme()));
updateDeleteButton();
emit shortcutsSchemeChanged(currentScheme());
}
QString KShortcutSchemesEditor::currentScheme()
{
return m_schemesList->currentText();
}
void KShortcutSchemesEditor::exportShortcutsScheme()
{
//ask user about dir
QString exportTo = QFileDialog::getExistingDirectory(this, i18n("Export to Location"), //krazy:exclude=qclasses it is not possible to use KDirSelectDialog here because kfile links against kdeui; the dialog gets replaced anyway with the KDE one at runtime
QDir::currentPath());
if (exportTo.isEmpty())
return;
QDir schemeRoot(exportTo);
if (!schemeRoot.exists(exportTo))
{
KMessageBox::error(this, i18n("Could not export shortcuts scheme because the location is invalid."));
return;
}
foreach (KActionCollection *collection, m_dialog->actionCollections())
{
const KXMLGUIClient *client = collection->parentGUIClient();
if (!client) continue;
KShortcutSchemesHelper::exportActionCollection(collection,
currentScheme(), exportTo + '/');
}
}
void KShortcutSchemesEditor::saveAsDefaultsForScheme()
{
foreach (KActionCollection *collection, m_dialog->actionCollections())
KShortcutSchemesHelper::exportActionCollection(collection, currentScheme());
}
void KShortcutSchemesEditor::updateDeleteButton()
{
m_deleteScheme->setEnabled(m_schemesList->count()>=1);
}
|