6872f773a8ef472e0afd8a1e79d75b945467257e
[quassel.git] / src / common / cliparser.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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
21 #ifndef CLIPARSER_H
22 #define CLIPARSER_H
23
24 #include <QString>
25 #include <QStringList>
26 #include <QHash>
27 #include <QVariant>
28
29 class CliParserArg;
30
31 class CliParser{
32 public:
33     inline CliParser() {};
34     CliParser(int argc, char *argv[]);
35
36     ~CliParser();
37     bool parse();
38     QVariant value(QString key);
39     void addArgument(QString longName, char shortName, QVariant def);
40 private:
41   QStringList argsRaw;
42   QHash<QString, QVariant*> savedValues;
43   QHash<QString, CliParserArg> argsHash;
44   QHash<QString, QHash<QString, CliParserArg>::iterator> shortHash;
45 };
46
47 class CliParserArg {
48 public:
49   inline CliParserArg() {};
50   CliParserArg(const CliParserArg &other);
51   CliParserArg(QString longName, char shortName, QVariant _def);
52   CliParserArg &operator=(const CliParserArg &other);
53 // private:
54   QString lname;
55   char sname;
56   QVariant def;
57   QVariant value;
58 };
59 Q_DECLARE_METATYPE(CliParserArg);
60
61 #endif