/*************************************************************************** scriptfunction.h - description ------------------- begin : Thu Apr 17 2003 copyright : (C) 2003 by Jason Harris email : kstars@30doradus.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef SCRIPTFUNCTION_H #define SCRIPTFUNCTION_H #include /** * * Jason Harris **/ class ScriptFunction { public: ScriptFunction( QString name, QString desc, bool clockfcn=false, QString at1="", QString an1="", QString at2="", QString an2="", QString at3="", QString an3="", QString at4="", QString an4="", QString at5="", QString an5="", QString at6="", QString an6="" ); ScriptFunction( ScriptFunction *sf ); ~ScriptFunction(); QString name() const { return Name; } QString prototype() const; QString description() const { return Description; } QString argType( unsigned int n ) const { return ArgType[n]; } QString argName( unsigned int n ) const { return ArgName[n]; } QString argVal( unsigned int n ) const { return ArgVal[n]; } void setValid( bool b ) { Valid = b; } bool valid() const { return Valid; } void setClockFunction( bool b=true ) { ClockFunction = b; } bool isClockFunction() const { return ClockFunction; } void setArg( unsigned int n, QString newVal ) { ArgVal[n] = newVal; } bool checkArgs(); unsigned int numArgs() const { return NumArgs; } QString scriptLine() const; void setINDIProperty(QString prop) { INDIProp = prop; } QString INDIProperty() const { return INDIProp; } private: QString Name, Description; QString ArgType[6]; QString ArgName[6]; QString ArgVal[6]; QString INDIProp; bool Valid, ClockFunction; unsigned int NumArgs; }; #endif