UniversalIndentGUI 1.2.0
|
00001 /*************************************************************************** 00002 * Copyright (C) 2006-2012 by Thomas Schweitzer * 00003 * thomas-schweitzer(at)arcor.de * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License version 2.0 as * 00007 * published by the Free Software Foundation. * 00008 * * 00009 * This program is distributed in the hope that it will be useful, * 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00012 * GNU General Public License for more details. * 00013 * * 00014 * You should have received a copy of the GNU General Public License * 00015 * along with this program in the file LICENSE.GPL; if not, write to the * 00016 * Free Software Foundation, Inc., * 00017 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00018 ***************************************************************************/ 00019 00020 #ifndef UIGUIINIFILEPARSER_H 00021 #define UIGUIINIFILEPARSER_H 00022 00023 #include <QMap> 00024 #include <QString> 00025 00026 #include <vector> 00027 00028 class QStringList; 00029 class QVariant; 00030 00031 00032 class UiGuiIniFileParser 00033 { 00034 public: 00035 UiGuiIniFileParser(void); 00036 UiGuiIniFileParser(const QString &iniFileName); 00037 ~UiGuiIniFileParser(void); 00038 QVariant value(const QString &keyName, const QString &defaultValue = ""); 00039 QStringList childGroups(); 00040 00041 protected: 00042 void init(); 00043 00044 private: 00045 void parseIniFile(); 00046 00047 QString _iniFileName; 00048 std::vector<QString> _sections; 00049 QMap<QString, QVariant> _keyValueMap; 00050 }; 00051 00052 #endif // UIGUIINIFILEPARSER_H