7 enum ErrorLevel {NoError,Warning,Aborted};
13 void parseAtom (const QString &input);
15 QStringList parameters();
17 QString errorMessage();
18 QString errorDescription();
19 ErrorLevel errorLevel();
20 void setError (ErrorLevel level,const QString &description);
22 bool checkParamCount (QList <int> plist);
23 bool checkParamCount (const int &index);
24 bool checkParamIsInt (const int &index);
25 int parInt (bool &,const uint &index);
26 QString parString(bool &ok,const int &index);
27 bool parBool (bool &ok, const int &index);
28 QColor parColor (bool &ok, const int &index);
30 void setScript (const QString &);
41 QStringList paramList;
45 QString errDescription;