Introduce Clickable::activate() to put handling clicks in a single place
[quassel.git] / src / uisupport / kcmdlinewrapper.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #include "kcmdlinewrapper.h"
21
22 #include <KCmdLineArgs>
23
24 KCmdLineWrapper::KCmdLineWrapper() {
25
26 }
27
28 void KCmdLineWrapper::addArgument(const QString &longName, const CliParserArg &arg) {
29   if(arg.shortName != 0) {
30     _cmdLineOptions.add(QByteArray().append(arg.shortName));
31   }
32   _cmdLineOptions.add(longName.toUtf8(), ki18n(arg.help.toUtf8()), arg.def.toUtf8());
33 }
34
35 bool KCmdLineWrapper::init(const QStringList &) {
36   KCmdLineArgs::addCmdLineOptions(_cmdLineOptions);
37   return true;
38 }
39
40 QString KCmdLineWrapper::value(const QString &longName) {
41   return KCmdLineArgs::parsedArgs()->getOption(longName.toUtf8());
42 }
43
44 bool KCmdLineWrapper::isSet(const QString &longName) {
45   // KCmdLineArgs handles --nooption like NOT --option
46   if(longName.startsWith("no"))
47     return !KCmdLineArgs::parsedArgs()->isSet(longName.mid(2).toUtf8());
48   return KCmdLineArgs::parsedArgs()->isSet(longName.toUtf8());
49 }
50
51 void KCmdLineWrapper::usage() {
52   KCmdLineArgs::usage();
53 }