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 checkParCount (QList <int> plist);
24 bool checkParCount (const int &index);
25 bool checkParIsInt (const int &index);
26 bool checkParIsDouble (const int &index);
27 int parInt (bool &,const uint &index);
28 QString parString(bool &ok,const int &index);
29 bool parBool (bool &ok, const int &index);
30 QColor parColor (bool &ok, const int &index);
31 double parDouble (bool &ok, const int &index);
33 void setScript (const QString &);
46 QStringList paramList;
51 QString errDescription;