2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2005 Lubos Lunak <l.lunak@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-09-01 08:57:10 +00:00
|
|
|
// read additional window rules and add them to kwinrulesrc
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QtDBus>
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <kconfig.h>
|
2007-10-05 22:21:25 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2022-03-25 12:20:32 +00:00
|
|
|
if (argc != 2) {
|
2007-04-29 17:35:43 +00:00
|
|
|
return 1;
|
2022-03-25 12:20:32 +00:00
|
|
|
}
|
2014-01-20 21:23:10 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QCoreApplication::setApplicationName("kwin_update_default_rules");
|
2014-01-20 21:23:10 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QString file = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QString("kwin/default_rules/%1").arg(argv[1]));
|
|
|
|
if (file.isEmpty()) {
|
|
|
|
qWarning() << "File " << argv[1] << " not found!";
|
2007-04-29 17:35:43 +00:00
|
|
|
return 1;
|
2022-03-23 10:13:38 +00:00
|
|
|
}
|
|
|
|
KConfig src_cfg(file);
|
2018-12-19 13:07:23 +00:00
|
|
|
KConfig dest_cfg("kwinrulesrc", KConfig::NoGlobals);
|
2022-03-23 10:13:38 +00:00
|
|
|
KConfigGroup scg(&src_cfg, "General");
|
|
|
|
KConfigGroup dcg(&dest_cfg, "General");
|
|
|
|
int count = scg.readEntry("count", 0);
|
|
|
|
int pos = dcg.readEntry("count", 0);
|
|
|
|
for (int group = 1;
|
2007-04-29 17:35:43 +00:00
|
|
|
group <= count;
|
2022-03-23 10:13:38 +00:00
|
|
|
++group) {
|
|
|
|
QMap<QString, QString> entries = src_cfg.entryMap(QString::number(group));
|
2007-04-29 17:35:43 +00:00
|
|
|
++pos;
|
2022-03-23 10:13:38 +00:00
|
|
|
dest_cfg.deleteGroup(QString::number(pos));
|
|
|
|
KConfigGroup dcg2(&dest_cfg, QString::number(pos));
|
|
|
|
for (QMap<QString, QString>::ConstIterator it = entries.constBegin();
|
2008-11-11 23:09:11 +00:00
|
|
|
it != entries.constEnd();
|
2022-03-25 12:20:32 +00:00
|
|
|
++it) {
|
2022-03-23 10:13:38 +00:00
|
|
|
dcg2.writeEntry(it.key(), *it);
|
2022-03-25 12:20:32 +00:00
|
|
|
}
|
2022-03-23 10:13:38 +00:00
|
|
|
}
|
|
|
|
dcg.writeEntry("count", pos);
|
2007-08-24 14:33:03 +00:00
|
|
|
scg.sync();
|
|
|
|
dcg.sync();
|
2007-04-30 11:32:47 +00:00
|
|
|
// Send signal to all kwin instances
|
|
|
|
QDBusMessage message =
|
2008-01-30 16:08:23 +00:00
|
|
|
QDBusMessage::createSignal("/KWin", "org.kde.KWin", "reloadConfig");
|
2007-04-30 11:32:47 +00:00
|
|
|
QDBusConnection::sessionBus().send(message);
|
2022-03-23 10:13:38 +00:00
|
|
|
}
|