Kstars
23 explicit ScriptFunction(ScriptFunction *sf);
24 ~ScriptFunction() =
default;
26 QString name()
const {
return Name; }
28 QString description()
const {
return Description; }
29 QString argType(
unsigned int n)
const {
return ArgType[n]; }
30 QString argName(
unsigned int n)
const {
return ArgName[n]; }
31 QString argVal(
unsigned int n)
const {
return ArgVal[n]; }
32 QString argDBusType(
unsigned int n)
const {
return ArgDBusType[n]; }
34 void setValid(
bool b) { Valid = b; }
35 bool valid()
const {
return Valid; }
37 void setClockFunction(
bool b =
true) { ClockFunction = b; }
38 bool isClockFunction()
const {
return ClockFunction; }
40 void setArg(
unsigned int n,
QString newVal) { ArgVal[n] = newVal; }
42 int numArgs()
const {
return NumArgs; }
46 void setINDIProperty(
QString prop) { INDIProp = prop; }
47 QString INDIProperty()
const {
return INDIProp; }
57 bool Valid, ClockFunction;
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:53:03 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.