Happy New Year!
[quassel.git] / src / uisupport / kcmdlinewrapper.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2014 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "kcmdlinewrapper.h"
22
23 #include <KCmdLineArgs>
24
25 KCmdLineWrapper::KCmdLineWrapper()
26 {
27 }
28
29
30 void KCmdLineWrapper::addArgument(const QString &longName, const CliParserArg &arg)
31 {
32     if (arg.shortName != 0) {
33         _cmdLineOptions.add(QByteArray().append(arg.shortName));
34     }
35     _cmdLineOptions.add(longName.toUtf8(), ki18n(arg.help.toUtf8()), arg.def.toUtf8());
36 }
37
38
39 bool KCmdLineWrapper::init(const QStringList &)
40 {
41     KCmdLineArgs::addCmdLineOptions(_cmdLineOptions);
42     return true;
43 }
44
45
46 QString KCmdLineWrapper::value(const QString &longName)
47 {
48     return KCmdLineArgs::parsedArgs()->getOption(longName.toUtf8());
49 }
50
51
52 bool KCmdLineWrapper::isSet(const QString &longName)
53 {
54     // KCmdLineArgs handles --nooption like NOT --option
55     if (longName.startsWith("no"))
56         return !KCmdLineArgs::parsedArgs()->isSet(longName.mid(2).toUtf8());
57     return KCmdLineArgs::parsedArgs()->isSet(longName.toUtf8());
58 }
59
60
61 void KCmdLineWrapper::usage()
62 {
63     KCmdLineArgs::usage();
64 }