00001 /*************************************************************************** 00002 ** 00003 ** This file is part of QGpCoreTools. 00004 ** 00005 ** This library is free software; you can redistribute it and/or 00006 ** modify it under the terms of the GNU Lesser General Public 00007 ** License as published by the Free Software Foundation; either 00008 ** version 2.1 of the License, or (at your option) any later version. 00009 ** 00010 ** This file is distributed in the hope that it will be useful, but WITHOUT 00011 ** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 ** FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 00013 ** License for more details. 00014 ** 00015 ** You should have received a copy of the GNU Lesser General Public 00016 ** License along with this library; if not, write to the Free Software 00017 ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 ** 00019 ** See http://www.geopsy.org for more information. 00020 ** 00021 ** Created : 2007-05-14 00022 ** Authors : 00023 ** Marc Wathelet 00024 ** Marc Wathelet (LGIT, Grenoble, France) 00025 ** 00026 ***************************************************************************/ 00027 00028 #ifndef ABSTRACTPARAMETERS_H 00029 #define ABSTRACTPARAMETERS_H 00030 00031 #include <QtCore> 00032 00033 #include "QGpCoreToolsDLLExport.h" 00034 00035 #define PARAMETERS_KEYWORDCOUNT_ARGS 00036 #define PARAMETERS_COLLECTKEYWORDS_ARGS KeywordMap& keywords, const QString& prefix 00037 #define PARAMETERS_SETVALUE_ARGS int index, const QString& value 00038 #define PARAMETERS_TOSTRING_ARGS_DECL const QString& prefix=QString::null 00039 #define PARAMETERS_TOSTRING_ARGS_IMPL const QString& prefix 00040 00041 namespace QGpCoreTools { 00042 00043 class QGPCORETOOLS_EXPORT AbstractParameters 00044 { 00045 public: 00046 AbstractParameters() {} 00047 virtual ~AbstractParameters() {} 00048 00049 struct Keyword { 00050 AbstractParameters * param; 00051 int index; 00052 }; 00053 00054 class QGPCORETOOLS_EXPORT KeywordMap: private QMap<QString, Keyword> 00055 { 00056 public: 00057 void add(const QString& key, AbstractParameters * param, int index); 00058 bool setValue(const QString& key, const QString& value) const; 00059 }; 00060 00061 virtual void collectKeywords(PARAMETERS_COLLECTKEYWORDS_ARGS); 00062 virtual int keywordCount(PARAMETERS_KEYWORDCOUNT_ARGS) {return 0;} 00063 virtual bool setValue(PARAMETERS_SETVALUE_ARGS); 00064 virtual QString toString(PARAMETERS_TOSTRING_ARGS_DECL) const; 00065 }; 00066 00067 } // namespace QGpCoreTools 00068 00069 #endif // ABSTRACTPARAMETERS_H