7 enum ErrorLevel {NoError,Warning,Aborted};
13 void parseAtom (QString input);
16 QStringList getParameters();
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);
31 void setScript (const QString &);
44 QStringList paramList;
49 QString errDescription;