summaryrefslogtreecommitdiffstats
path: root/kpresenter/autoformEdit/ATFInterpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/autoformEdit/ATFInterpreter.h')
-rw-r--r--kpresenter/autoformEdit/ATFInterpreter.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/kpresenter/autoformEdit/ATFInterpreter.h b/kpresenter/autoformEdit/ATFInterpreter.h
index 8e0feebbb..e532a49ac 100644
--- a/kpresenter/autoformEdit/ATFInterpreter.h
+++ b/kpresenter/autoformEdit/ATFInterpreter.h
@@ -21,9 +21,9 @@
#ifndef ATFINTERP_H
#define ATFINTERP_H
-#include <qpointarray.h>
-#include <qptrlist.h>
-#include <qstringlist.h>
+#include <tqpointarray.h>
+#include <tqptrlist.h>
+#include <tqstringlist.h>
class ATFInterpreter {
@@ -39,20 +39,20 @@ public:
// coordinate structure
struct CoordStruct
{
- QString a;
- QString b;
- QString c;
- QString d;
- QString e;
- QString f;
- QString result;
+ TQString a;
+ TQString b;
+ TQString c;
+ TQString d;
+ TQString e;
+ TQString f;
+ TQString result;
};
// attribute structure
struct AttribStruct
{
- QString isVariable;
- QString pwDiv;
+ TQString isVariable;
+ TQString pwDiv;
};
// structure of signs
@@ -67,13 +67,13 @@ public:
// structure of values
struct Value
{
- QPtrList<Sign> var1;
- QPtrList<Sign> var2;
- QPtrList<Sign> var3;
- QPtrList<Sign> var4;
- QPtrList<Sign> var5;
- QPtrList<Sign> var6;
- QPtrList<Sign> result;
+ TQPtrList<Sign> var1;
+ TQPtrList<Sign> var2;
+ TQPtrList<Sign> var3;
+ TQPtrList<Sign> var4;
+ TQPtrList<Sign> var5;
+ TQPtrList<Sign> var6;
+ TQPtrList<Sign> result;
};
// constructure - destructure
@@ -81,11 +81,11 @@ public:
~ATFInterpreter();
// load autoform
- void load(const QString &);
+ void load(const TQString &);
// get pointarray/attribute list/points
- QPointArray getPointArray(int,int);
- QPtrList<AttribList> getAttribList();
+ TQPointArray getPointArray(int,int);
+ TQPtrList<AttribList> getAttribList();
protected:
@@ -157,19 +157,19 @@ protected:
void interpret();
// get varaible of a line
- QPtrList<Sign> getVar(const QString&);
+ TQPtrList<Sign> getVar(const TQString&);
// ********** variables **********
// list of coordinates and pointers to coordinate/sign/value
- QPtrList<Coord> coordList;
- QPtrList<AttribList> attrLs;
+ TQPtrList<Coord> coordList;
+ TQPtrList<AttribList> attrLs;
Coord *coordPtr;
Sign *signPtr;
Value *valuePtr;
// list of lines
- QStringList lines;
+ TQStringList lines;
};
#endif //ATFINTERP_H