2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2005 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
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
|
|
|
|
|
|
|
#include <kconfig.h>
|
2007-10-05 22:21:25 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kcomponentdata.h>
|
|
|
|
#include <kstandarddirs.h>
|
2008-08-07 19:14:04 +00:00
|
|
|
#include <kaboutdata.h>
|
|
|
|
#include <kcmdlineargs.h>
|
|
|
|
#include <kglobal.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <QtDBus/QtDBus>
|
|
|
|
|
|
|
|
int main( int argc, char* argv[] )
|
|
|
|
{
|
|
|
|
if( argc != 2 )
|
|
|
|
return 1;
|
2008-08-07 19:14:04 +00:00
|
|
|
KAboutData about( "kwin_update_default_rules", "kwin", KLocalizedString(), 0 );
|
|
|
|
KCmdLineArgs::init( argc, argv, &about );
|
|
|
|
KComponentData inst( &about );
|
|
|
|
Q_UNUSED( KGlobal::locale() ); // jump-start locales to get to translated desriptions
|
2007-04-29 17:35:43 +00:00
|
|
|
QString file = KStandardDirs::locate( "data", QString( "kwin/default_rules/" ) + argv[ 1 ] );
|
|
|
|
if( file.isEmpty())
|
|
|
|
{
|
2008-11-17 15:04:52 +00:00
|
|
|
kWarning(1212) << "File " << argv[ 1 ] << " not found!" ;
|
2007-04-29 17:35:43 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
KConfig src_cfg( file );
|
|
|
|
KConfig dest_cfg( "kwinrulesrc" );
|
2007-08-24 14:33:03 +00:00
|
|
|
KConfigGroup scg(&src_cfg, "General");
|
|
|
|
KConfigGroup dcg(&dest_cfg, "General");
|
|
|
|
int count = scg.readEntry( "count", 0 );
|
|
|
|
int pos = dcg.readEntry( "count", 0 );
|
2007-04-29 17:35:43 +00:00
|
|
|
for( int group = 1;
|
|
|
|
group <= count;
|
|
|
|
++group )
|
|
|
|
{
|
|
|
|
QMap< QString, QString > entries = src_cfg.entryMap( QString::number( group ));
|
|
|
|
++pos;
|
|
|
|
dest_cfg.deleteGroup( QString::number( pos ));
|
2007-08-24 14:33:03 +00:00
|
|
|
KConfigGroup dcg2 (&dest_cfg, QString::number( pos ));
|
2008-11-11 23:09:11 +00:00
|
|
|
for( QMap< QString, QString >::ConstIterator it = entries.constBegin();
|
|
|
|
it != entries.constEnd();
|
2007-04-29 17:35:43 +00:00
|
|
|
++it )
|
2007-08-24 14:33:03 +00:00
|
|
|
dcg2.writeEntry( it.key(), *it );
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2007-08-24 14:33:03 +00:00
|
|
|
dcg.writeEntry( "count", pos );
|
|
|
|
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);
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|