Reformat ALL the source!
[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
29 void KCmdLineWrapper::addArgument(const QString &longName, const CliParserArg &arg)
30 {
31     if (arg.shortName != 0) {
32         _cmdLineOptions.add(QByteArray().append(arg.shortName));
33     }
34     _cmdLineOptions.add(longName.toUtf8(), ki18n(arg.help.toUtf8()), arg.def.toUtf8());
35 }
36
37
38 bool KCmdLineWrapper::init(const QStringList &)
39 {
40     KCmdLineArgs::addCmdLineOptions(_cmdLineOptions);
41     return true;
42 }
43
44
45 QString KCmdLineWrapper::value(const QString &longName)
46 {
47     return KCmdLineArgs::parsedArgs()->getOption(longName.toUtf8());
48 }
49
50
51 bool KCmdLineWrapper::isSet(const QString &longName)
52 {
53     // KCmdLineArgs handles --nooption like NOT --option
54     if (longName.startsWith("no"))
55         return !KCmdLineArgs::parsedArgs()->isSet(longName.mid(2).toUtf8());
56     return KCmdLineArgs::parsedArgs()->isSet(longName.toUtf8());
57 }
58
59
60 void KCmdLineWrapper::usage()
61 {
62     KCmdLineArgs::usage();
63 }