7 enum ErrorLevel {NoError,Warning,Aborted};
14 void parseInput (const QString &input);
16 QStringList parameters();
18 QString errorMessage();
19 QString errorDescription();
20 ErrorLevel errorLevel();
21 void setError (ErrorLevel level,const QString &description);
23 bool checkParamCount (QList <int> plist);
24 bool checkParamCount (const int &index);
25 bool checkParamIsInt (const int &index);
26 int parInt (bool &,const uint &index);
27 QString parString(bool &ok,const int &index);
28 bool parBool (bool &ok, const int &index);
29 QColor parColor (bool &ok, const int &index);
33 QStringList paramList;
35 QString errDescription;