2007-04-29 17:35:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ruleslist.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
2013-11-01 11:29:05 +00:00
|
|
|
#include <QDebug>
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <kconfig.h>
|
2013-09-30 06:43:09 +00:00
|
|
|
#include <QFileDialog>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include "ruleswidget.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KCMRulesList::KCMRulesList(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
|
|
|
setupUi(this);
|
2009-05-12 15:00:07 +00:00
|
|
|
// connect both current/selected, so that current==selected (stupid QListBox :( )
|
2011-01-30 14:34:42 +00:00
|
|
|
connect(rules_listbox, SIGNAL(itemChanged(QListWidgetItem*)),
|
|
|
|
SLOT(activeChanged()));
|
|
|
|
connect(rules_listbox, SIGNAL(itemSelectionChanged()),
|
|
|
|
SLOT(activeChanged()));
|
|
|
|
connect(new_button, SIGNAL(clicked()),
|
|
|
|
SLOT(newClicked()));
|
|
|
|
connect(modify_button, SIGNAL(clicked()),
|
|
|
|
SLOT(modifyClicked()));
|
|
|
|
connect(delete_button, SIGNAL(clicked()),
|
|
|
|
SLOT(deleteClicked()));
|
|
|
|
connect(moveup_button, SIGNAL(clicked()),
|
|
|
|
SLOT(moveupClicked()));
|
|
|
|
connect(movedown_button, SIGNAL(clicked()),
|
|
|
|
SLOT(movedownClicked()));
|
2011-04-06 17:52:23 +00:00
|
|
|
connect(export_button, SIGNAL(clicked()),
|
|
|
|
SLOT(exportClicked()));
|
|
|
|
connect(import_button, SIGNAL(clicked()),
|
|
|
|
SLOT(importClicked()));
|
2011-01-30 14:34:42 +00:00
|
|
|
connect(rules_listbox, SIGNAL(itemDoubleClicked(QListWidgetItem*)),
|
|
|
|
SLOT(modifyClicked()));
|
2007-04-29 17:35:43 +00:00
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
KCMRulesList::~KCMRulesList()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
for (QVector< Rules* >::Iterator it = rules.begin();
|
|
|
|
it != rules.end();
|
|
|
|
++it)
|
2007-04-29 17:35:43 +00:00
|
|
|
delete *it;
|
|
|
|
rules.clear();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-05-09 14:59:04 +00:00
|
|
|
void KCMRulesList::activeChanged()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-05-09 14:59:04 +00:00
|
|
|
QListWidgetItem *item = rules_listbox->currentItem();
|
2007-04-30 11:55:02 +00:00
|
|
|
int itemRow = rules_listbox->row(item);
|
|
|
|
|
2014-01-07 10:22:24 +00:00
|
|
|
if (item != nullptr) // make current==selected
|
2011-01-30 14:34:42 +00:00
|
|
|
rules_listbox->setCurrentItem(item, QItemSelectionModel::ClearAndSelect);
|
2014-01-07 10:22:24 +00:00
|
|
|
modify_button->setEnabled(item != nullptr);
|
|
|
|
delete_button->setEnabled(item != nullptr);
|
|
|
|
export_button->setEnabled(item != nullptr);
|
|
|
|
moveup_button->setEnabled(item != nullptr && itemRow > 0);
|
|
|
|
movedown_button->setEnabled(item != nullptr && itemRow < (rules_listbox->count() - 1));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void KCMRulesList::newClicked()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-09 08:02:24 +00:00
|
|
|
RulesDialog dlg(this);
|
2014-01-07 10:22:24 +00:00
|
|
|
Rules* rule = dlg.edit(nullptr, 0, false);
|
|
|
|
if (rule == nullptr)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2009-05-01 03:03:54 +00:00
|
|
|
int pos = rules_listbox->currentRow() + 1;
|
2011-01-30 14:34:42 +00:00
|
|
|
rules_listbox->insertItem(pos , rule->description);
|
|
|
|
rules_listbox->setCurrentRow(pos, QItemSelectionModel::ClearAndSelect);
|
|
|
|
rules.insert(rules.begin() + pos, rule);
|
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void KCMRulesList::modifyClicked()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-30 11:55:02 +00:00
|
|
|
int pos = rules_listbox->currentRow();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (pos == -1)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2007-11-09 08:02:24 +00:00
|
|
|
RulesDialog dlg(this);
|
2011-01-30 14:34:42 +00:00
|
|
|
Rules* rule = dlg.edit(rules[ pos ], 0, false);
|
|
|
|
if (rule == rules[ pos ])
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
delete rules[ pos ];
|
|
|
|
rules[ pos ] = rule;
|
2011-01-30 14:34:42 +00:00
|
|
|
rules_listbox->item(pos)->setText(rule->description);
|
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void KCMRulesList::deleteClicked()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-30 11:55:02 +00:00
|
|
|
int pos = rules_listbox->currentRow();
|
2011-01-30 14:34:42 +00:00
|
|
|
assert(pos != -1);
|
|
|
|
delete rules_listbox->takeItem(pos);
|
|
|
|
rules.erase(rules.begin() + pos);
|
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2009-05-12 15:00:07 +00:00
|
|
|
void KCMRulesList::moveupClicked()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-30 11:55:02 +00:00
|
|
|
int pos = rules_listbox->currentRow();
|
2011-01-30 14:34:42 +00:00
|
|
|
assert(pos != -1);
|
|
|
|
if (pos > 0) {
|
|
|
|
QListWidgetItem * item = rules_listbox->takeItem(pos);
|
|
|
|
rules_listbox->insertItem(pos - 1 , item);
|
|
|
|
rules_listbox->setCurrentItem(item, QItemSelectionModel::ClearAndSelect);
|
2007-04-29 17:35:43 +00:00
|
|
|
Rules* rule = rules[ pos ];
|
|
|
|
rules[ pos ] = rules[ pos - 1 ];
|
|
|
|
rules[ pos - 1 ] = rule;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2009-05-12 15:00:07 +00:00
|
|
|
void KCMRulesList::movedownClicked()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-30 11:55:02 +00:00
|
|
|
int pos = rules_listbox->currentRow();
|
2011-01-30 14:34:42 +00:00
|
|
|
assert(pos != -1);
|
|
|
|
if (pos < int(rules_listbox->count()) - 1) {
|
|
|
|
QListWidgetItem * item = rules_listbox->takeItem(pos);
|
|
|
|
rules_listbox->insertItem(pos + 1 , item);
|
|
|
|
rules_listbox->setCurrentItem(item, QItemSelectionModel::ClearAndSelect);
|
2007-04-29 17:35:43 +00:00
|
|
|
Rules* rule = rules[ pos ];
|
|
|
|
rules[ pos ] = rules[ pos + 1 ];
|
|
|
|
rules[ pos + 1 ] = rule;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-04-06 17:52:23 +00:00
|
|
|
void KCMRulesList::exportClicked()
|
|
|
|
{
|
|
|
|
int pos = rules_listbox->currentRow();
|
|
|
|
assert(pos != -1);
|
2017-10-15 15:36:03 +00:00
|
|
|
QString path = QFileDialog::getSaveFileName(this, i18n("Export Rules"), QDir::home().absolutePath(),
|
2017-10-15 15:35:10 +00:00
|
|
|
i18n("KWin Rules (*.kwinrule)"));
|
2011-04-06 17:52:23 +00:00
|
|
|
if (path.isEmpty())
|
|
|
|
return;
|
|
|
|
KConfig config(path, KConfig::SimpleConfig);
|
|
|
|
KConfigGroup group(&config, rules[pos]->description);
|
|
|
|
group.deleteGroup();
|
|
|
|
rules[pos]->write(group);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KCMRulesList::importClicked()
|
|
|
|
{
|
2013-09-30 06:43:09 +00:00
|
|
|
QString path = QFileDialog::getOpenFileName(this, i18n("Import Rules"), QDir::home().absolutePath(),
|
2017-10-15 15:35:10 +00:00
|
|
|
i18n("KWin Rules (*.kwinrule)"));
|
2011-04-06 17:52:23 +00:00
|
|
|
if (path.isEmpty())
|
|
|
|
return;
|
|
|
|
KConfig config(path, KConfig::SimpleConfig);
|
|
|
|
QStringList groups = config.groupList();
|
|
|
|
if (groups.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
int pos = qMax(0, rules_listbox->currentRow());
|
2011-08-31 16:19:28 +00:00
|
|
|
foreach (const QString &group, groups) {
|
2011-04-06 17:52:23 +00:00
|
|
|
KConfigGroup grp(&config, group);
|
|
|
|
const bool remove = grp.readEntry("DeleteRule", false);
|
|
|
|
Rules* new_rule = new Rules(grp);
|
|
|
|
|
|
|
|
// try to replace existing rule first
|
|
|
|
for (int i = 0; i < rules.count(); ++i) {
|
|
|
|
if (rules[i]->description == new_rule->description) {
|
|
|
|
delete rules[i];
|
|
|
|
if (remove) {
|
|
|
|
rules.remove(i);
|
|
|
|
delete rules_listbox->takeItem(i);
|
|
|
|
delete new_rule;
|
|
|
|
pos = qMax(0, rules_listbox->currentRow()); // might have changed!
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rules[i] = new_rule;
|
2014-01-07 10:22:24 +00:00
|
|
|
new_rule = nullptr;
|
2011-04-06 17:52:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// don't add "to be deleted" if not present
|
|
|
|
if (remove) {
|
|
|
|
delete new_rule;
|
2014-01-07 10:22:24 +00:00
|
|
|
new_rule = nullptr;
|
2011-04-06 17:52:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// plain insertion
|
|
|
|
if (new_rule) {
|
|
|
|
rules.insert(pos, new_rule);
|
|
|
|
rules_listbox->insertItem(pos++, new_rule->description);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
emit changed(true);
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
void KCMRulesList::load()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
rules_listbox->clear();
|
2011-01-30 14:34:42 +00:00
|
|
|
for (QVector< Rules* >::Iterator it = rules.begin();
|
|
|
|
it != rules.end();
|
|
|
|
++it)
|
2007-04-29 17:35:43 +00:00
|
|
|
delete *it;
|
|
|
|
rules.clear();
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfig _cfg("kwinrulesrc");
|
|
|
|
KConfigGroup cfg(&_cfg, "General");
|
|
|
|
int count = cfg.readEntry("count", 0);
|
|
|
|
rules.reserve(count);
|
|
|
|
for (int i = 1;
|
|
|
|
i <= count;
|
|
|
|
++i) {
|
|
|
|
cfg = KConfigGroup(&_cfg, QString::number(i));
|
|
|
|
Rules* rule = new Rules(cfg);
|
|
|
|
rules.append(rule);
|
|
|
|
rules_listbox->addItem(rule->description);
|
|
|
|
}
|
|
|
|
if (rules.count() > 0)
|
|
|
|
rules_listbox->setCurrentItem(rules_listbox->item(0));
|
2009-05-12 15:00:07 +00:00
|
|
|
else
|
2014-01-07 10:22:24 +00:00
|
|
|
rules_listbox->setCurrentItem(nullptr);
|
2009-05-01 03:03:54 +00:00
|
|
|
activeChanged();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void KCMRulesList::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
KConfig cfg(QLatin1String("kwinrulesrc"));
|
2007-04-29 17:35:43 +00:00
|
|
|
QStringList groups = cfg.groupList();
|
2011-01-30 14:34:42 +00:00
|
|
|
for (QStringList::ConstIterator it = groups.constBegin();
|
|
|
|
it != groups.constEnd();
|
|
|
|
++it)
|
|
|
|
cfg.deleteGroup(*it);
|
|
|
|
cfg.group("General").writeEntry("count", rules.count());
|
2007-04-29 17:35:43 +00:00
|
|
|
int i = 1;
|
2011-01-30 14:34:42 +00:00
|
|
|
for (QVector< Rules* >::ConstIterator it = rules.constBegin();
|
|
|
|
it != rules.constEnd();
|
|
|
|
++it) {
|
|
|
|
KConfigGroup cg(&cfg, QString::number(i));
|
|
|
|
(*it)->write(cg);
|
2007-04-29 17:35:43 +00:00
|
|
|
++i;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void KCMRulesList::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|