From e2de64d6f1beb9e492daf5b886e19933c1fa41dd Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kmix/kmixctrl.cpp | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 kmix/kmixctrl.cpp (limited to 'kmix/kmixctrl.cpp') diff --git a/kmix/kmixctrl.cpp b/kmix/kmixctrl.cpp new file mode 100644 index 00000000..3dbf4f4e --- /dev/null +++ b/kmix/kmixctrl.cpp @@ -0,0 +1,90 @@ +/* + * kmixctrl - kmix volume save/restore utility + * + * Copyright (C) 2000 Stefan Schimanski <1Stein@gmx.de> + * + * This program 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 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this program; if not, write to the Free + * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include "mixertoolbox.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "kmixtoolbox.h" +#include "mixer.h" +#include "version.h" + +static const char description[] = +I18N_NOOP("kmixctrl - kmix volume save/restore utility"); + +static KCmdLineOptions options[] = +{ + { "s", 0, 0 }, + { "save", I18N_NOOP("Save current volumes as default"), 0 }, + { "r", 0, 0 }, + { "restore", I18N_NOOP("Restore default volumes"), 0 }, + KCmdLineLastOption + // INSERT YOUR COMMANDLINE OPTIONS HERE +}; + +extern "C" KDE_EXPORT int kdemain(int argc, char *argv[]) +{ + KLocale::setMainCatalogue("kmix"); + KAboutData aboutData( "kmixctrl", I18N_NOOP("KMixCtrl"), + APP_VERSION, description, KAboutData::License_GPL, + "(c) 2000 by Stefan Schimanski"); + + aboutData.addAuthor("Stefan Schimanski", 0, "1Stein@gmx.de"); + + KCmdLineArgs::init( argc, argv, &aboutData ); + KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + KApplication app( false, false ); + + // get maximum values + KConfig *config= new KConfig("kmixrc", true, false); + config->setGroup("Misc"); + delete config; + + // create mixers + QString dummyStringHwinfo; + MixerToolBox::initMixer(Mixer::mixers(), false, dummyStringHwinfo); + + // load volumes + if ( args->isSet("restore") ) + { + for (Mixer *mixer=Mixer::mixers().first(); mixer!=0; mixer=Mixer::mixers().next()) { + mixer->volumeLoad( KGlobal::config() ); + } + } + + // save volumes + if ( args->isSet("save") ) + { + for (Mixer *mixer=Mixer::mixers().first(); mixer!=0; mixer=Mixer::mixers().next()) + mixer->volumeSave( KGlobal::config() ); + } + + MixerToolBox::deinitMixer(); + + return 0; +} -- cgit v1.2.1