qtui: Set proper icon for "About Quassel" menu option
[quassel.git] / src / uisupport / kcmdlinewrapper.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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     QString longName = longName_;
33     if (arg.type == CliParserArg::CliArgOption && !arg.valueName.isEmpty())
34         longName += " <" + arg.valueName + ">";
35
36     if (arg.shortName != 0) {
37         _cmdLineOptions.add(QByteArray(1, arg.shortName));
38     }
39
40     _cmdLineOptions.add(longName.toUtf8(), ki18n(arg.help.toUtf8()), arg.def.toUtf8());
41 }
42
43
44 bool KCmdLineWrapper::init(const QStringList &)
45 {
46     KCmdLineArgs::addCmdLineOptions(_cmdLineOptions);
47     return true;
48 }
49
50
51 QString KCmdLineWrapper::value(const QString &longName)
52 {
53     return KCmdLineArgs::parsedArgs()->getOption(longName.toUtf8());
54 }
55
56
57 bool KCmdLineWrapper::isSet(const QString &longName)
58 {
59     // KCmdLineArgs handles --nooption like NOT --option
60     if (longName.startsWith("no"))
61         return !KCmdLineArgs::parsedArgs()->isSet(longName.mid(2).toUtf8());
62     return KCmdLineArgs::parsedArgs()->isSet(longName.toUtf8());
63 }
64
65
66 void KCmdLineWrapper::usage()
67 {
68     KCmdLineArgs::usage();
69 }