summaryrefslogtreecommitdiffstats
path: root/kjsembed/tools/headers
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/tools/headers')
-rw-r--r--kjsembed/tools/headers/qbrush.h40
-rw-r--r--kjsembed/tools/headers/qcanvas.h544
-rw-r--r--kjsembed/tools/headers/qdir.h116
-rw-r--r--kjsembed/tools/headers/qpen.h36
-rw-r--r--kjsembed/tools/headers/qtimer.h18
5 files changed, 377 insertions, 377 deletions
diff --git a/kjsembed/tools/headers/qbrush.h b/kjsembed/tools/headers/qbrush.h
index 93f17e28..038e7699 100644
--- a/kjsembed/tools/headers/qbrush.h
+++ b/kjsembed/tools/headers/qbrush.h
@@ -1,7 +1,7 @@
/****************************************************************************
**
**
-** Definition of TTQBrush class
+** Definition of TQBrush class
**
** Created : 940112
**
@@ -44,33 +44,33 @@
#endif // QT_H
-class Q_EXPORT TTQBrush: public Qt
+class Q_EXPORT TQBrush: public Qt
{
-friend class TTQPainter;
+friend class TQPainter;
public:
- TTQBrush();
- TTQBrush( BrushStyle );
- TTQBrush( const TTQColor &, BrushStyle=SolidPattern );
- TTQBrush( const TTQColor &, const TTQPixmap & );
- TTQBrush( const TTQBrush & );
- ~TTQBrush();
- TTQBrush &operator=( const TTQBrush & );
+ TQBrush();
+ TQBrush( BrushStyle );
+ TQBrush( const TQColor &, BrushStyle=SolidPattern );
+ TQBrush( const TQColor &, const TQPixmap & );
+ TQBrush( const TQBrush & );
+ ~TQBrush();
+ TQBrush &operator=( const TQBrush & );
BrushStyle style() const { return data->style; }
void setStyle( BrushStyle );
- const TTQColor &color()const { return data->color; }
- void setColor( const TTQColor & );
- TTQPixmap *pixmap() const { return data->pixmap; }
- void setPixmap( const TTQPixmap & );
+ const TQColor &color()const { return data->color; }
+ void setColor( const TQColor & );
+ TQPixmap *pixmap() const { return data->pixmap; }
+ void setPixmap( const TQPixmap & );
- bool operator==( const TTQBrush &p ) const;
- bool operator!=( const TTQBrush &b ) const
+ bool operator==( const TQBrush &p ) const;
+ bool operator!=( const TQBrush &b ) const
{ return !(operator==(b)); }
private:
TQBrush copy() const;
void detach();
- void init( const TTQColor &, BrushStyle );
+ void init( const TQColor &, BrushStyle );
struct TQBrushData : public TQShared { // brush data
BrushStyle style;
TQColor color;
@@ -80,12 +80,12 @@ private:
/*****************************************************************************
- TTQBrush stream functions
+ TQBrush stream functions
*****************************************************************************/
#ifndef QT_NO_DATASTREAM
-Q_EXPORT TTQDataStream &operator<<( TTQDataStream &, const TTQBrush & );
-Q_EXPORT TTQDataStream &operator>>( TTQDataStream &, TTQBrush & );
+Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQBrush & );
+Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQBrush & );
#endif
#endif // TQBRUSH_H
diff --git a/kjsembed/tools/headers/qcanvas.h b/kjsembed/tools/headers/qcanvas.h
index b89fd795..bdf46d83 100644
--- a/kjsembed/tools/headers/qcanvas.h
+++ b/kjsembed/tools/headers/qcanvas.h
@@ -1,7 +1,7 @@
/**********************************************************************
**
**
-** Definition of TTQCanvas classes
+** Definition of TQCanvas classes
**
** Created : 991211
**
@@ -59,34 +59,34 @@
#ifndef QT_NO_CANVAS
-class TTQCanvasSprite;
-class TTQCanvasPolygonalItem;
-class TTQCanvasRectangle;
-class TTQCanvasPolygon;
-class TTQCanvasEllipse;
-class TTQCanvasText;
-class TTQCanvasLine;
-class TTQCanvasChunk;
-class TTQCanvas;
-class TTQCanvasItem;
-class TTQCanvasView;
-class TTQCanvasPixmap;
+class TQCanvasSprite;
+class TQCanvasPolygonalItem;
+class TQCanvasRectangle;
+class TQCanvasPolygon;
+class TQCanvasEllipse;
+class TQCanvasText;
+class TQCanvasLine;
+class TQCanvasChunk;
+class TQCanvas;
+class TQCanvasItem;
+class TQCanvasView;
+class TQCanvasPixmap;
-class TQM_EXPORT_CANVAS TTQCanvasItemList : public TTQValueList<TTQCanvasItem*> {
+class TQM_EXPORT_CANVAS TQCanvasItemList : public TQValueList<TQCanvasItem*> {
public:
void sort();
- void drawUnique( TTQPainter& painter );
+ void drawUnique( TQPainter& painter );
};
-class TTQCanvasItemExtra;
+class TQCanvasItemExtra;
-class TQM_EXPORT_CANVAS TTQCanvasItem : public Qt
+class TQM_EXPORT_CANVAS TQCanvasItem : public Qt
{
public:
- TTQCanvasItem(TTQCanvas* canvas);
- virtual ~TTQCanvasItem();
+ TQCanvasItem(TQCanvas* canvas);
+ virtual ~TQCanvasItem();
double x() const
{ return myx; }
@@ -110,13 +110,13 @@ public:
double yVelocity() const;
virtual void advance(int stage);
- virtual bool collidesWith( const TTQCanvasItem* ) const=0;
+ virtual bool collidesWith( const TQCanvasItem* ) const=0;
- TTQCanvasItemList collisions(bool exact /* NO DEFAULT */ ) const;
+ TQCanvasItemList collisions(bool exact /* NO DEFAULT */ ) const;
- virtual void setCanvas(TTQCanvas*);
+ virtual void setCanvas(TQCanvas*);
- virtual void draw(TTQPainter&)=0;
+ virtual void draw(TQPainter&)=0;
void show();
void hide();
@@ -159,10 +159,10 @@ public:
virtual int rtti() const;
static int RTTI;
- virtual TTQRect boundingRect() const=0;
- virtual TTQRect boundingRectAdvanced() const;
+ virtual TQRect boundingRect() const=0;
+ virtual TQRect boundingRectAdvanced() const;
- TTQCanvas* canvas() const
+ TQCanvas* canvas() const
{ return cnv; }
protected:
@@ -171,30 +171,30 @@ protected:
private:
// For friendly subclasses...
- friend class TTQCanvasPolygonalItem;
- friend class TTQCanvasSprite;
- friend class TTQCanvasRectangle;
- friend class TTQCanvasPolygon;
- friend class TTQCanvasEllipse;
- friend class TTQCanvasText;
- friend class TTQCanvasLine;
+ friend class TQCanvasPolygonalItem;
+ friend class TQCanvasSprite;
+ friend class TQCanvasRectangle;
+ friend class TQCanvasPolygon;
+ friend class TQCanvasEllipse;
+ friend class TQCanvasText;
+ friend class TQCanvasLine;
- virtual TTQPointArray chunks() const;
+ virtual TQPointArray chunks() const;
virtual void addToChunks();
virtual void removeFromChunks();
virtual void changeChunks();
- virtual bool collidesWith( const TTQCanvasSprite*,
- const TTQCanvasPolygonalItem*,
- const TTQCanvasRectangle*,
- const TTQCanvasEllipse*,
- const TTQCanvasText* ) const = 0;
+ virtual bool collidesWith( const TQCanvasSprite*,
+ const TQCanvasPolygonalItem*,
+ const TQCanvasRectangle*,
+ const TQCanvasEllipse*,
+ const TQCanvasText* ) const = 0;
// End of friend stuff
- TTQCanvas* cnv;
- static TTQCanvas* current_canvas;
+ TQCanvas* cnv;
+ static TQCanvas* current_canvas;
double myx,myy,myz;
- TTQCanvasItemExtra *ext;
- TTQCanvasItemExtra& extra();
+ TQCanvasItemExtra *ext;
+ TQCanvasItemExtra& extra();
uint ani:1;
uint vis:1;
uint val:1;
@@ -204,25 +204,25 @@ private:
};
-class TTQCanvasData;
+class TQCanvasData;
-class TQM_EXPORT_CANVAS TTQCanvas : public TQObject
+class TQM_EXPORT_CANVAS TQCanvas : public TQObject
{
Q_OBJECT
public:
- TTQCanvas( TTQObject* parent = 0, const char* name = 0 );
- TTQCanvas(int w, int h);
- TTQCanvas( TTQPixmap p, int h, int v, int tilewidth, int tileheight );
+ TQCanvas( TQObject* parent = 0, const char* name = 0 );
+ TQCanvas(int w, int h);
+ TQCanvas( TQPixmap p, int h, int v, int tilewidth, int tileheight );
- virtual ~TTQCanvas();
+ virtual ~TQCanvas();
- virtual void setTiles( TTQPixmap tiles, int h, int v,
+ virtual void setTiles( TQPixmap tiles, int h, int v,
int tilewidth, int tileheight );
- virtual void setBackgroundPixmap( const TTQPixmap& p );
- TTQPixmap backgroundPixmap() const;
+ virtual void setBackgroundPixmap( const TQPixmap& p );
+ TQPixmap backgroundPixmap() const;
- virtual void setBackgroundColor( const TTQColor& c );
- TTQColor backgroundColor() const;
+ virtual void setBackgroundColor( const TQColor& c );
+ TQColor backgroundColor() const;
virtual void setTile( int x, int y, int tilenum );
int tile( int x, int y ) const
@@ -243,17 +243,17 @@ public:
{ return awidth; }
int height() const
{ return aheight; }
- TTQSize size() const
- { return TTQSize(awidth,aheight); }
- TTQRect rect() const
- { return TTQRect( 0, 0, awidth, aheight ); }
+ TQSize size() const
+ { return TQSize(awidth,aheight); }
+ TQRect rect() const
+ { return TQRect( 0, 0, awidth, aheight ); }
bool onCanvas( int x, int y ) const
{ return x>=0 && y>=0 && x<awidth && y<aheight; }
- bool onCanvas( const TTQPoint& p ) const
+ bool onCanvas( const TQPoint& p ) const
{ return onCanvas(p.x(),p.y()); }
bool validChunk( int x, int y ) const
{ return x>=0 && y>=0 && x<chwidth && y<chheight; }
- bool validChunk( const TTQPoint& p ) const
+ bool validChunk( const TQPoint& p ) const
{ return validChunk(p.x(),p.y()); }
int chunkSize() const
@@ -265,34 +265,34 @@ public:
virtual void setChangedChunk(int i, int j);
virtual void setChangedChunkContaining(int x, int y);
virtual void setAllChanged();
- virtual void setChanged(const TTQRect& area);
- virtual void setUnchanged(const TTQRect& area);
+ virtual void setChanged(const TQRect& area);
+ virtual void setUnchanged(const TQRect& area);
// These call setChangedChunk.
- void addItemToChunk(TTQCanvasItem*, int i, int j);
- void removeItemFromChunk(TTQCanvasItem*, int i, int j);
- void addItemToChunkContaining(TTQCanvasItem*, int x, int y);
- void removeItemFromChunkContaining(TTQCanvasItem*, int x, int y);
-
- TTQCanvasItemList allItems();
- TTQCanvasItemList collisions( const TTQPoint&) const;
- TTQCanvasItemList collisions( const TTQRect&) const;
- TTQCanvasItemList collisions( const TTQPointArray& pa, const TTQCanvasItem* item,
+ void addItemToChunk(TQCanvasItem*, int i, int j);
+ void removeItemFromChunk(TQCanvasItem*, int i, int j);
+ void addItemToChunkContaining(TQCanvasItem*, int x, int y);
+ void removeItemFromChunkContaining(TQCanvasItem*, int x, int y);
+
+ TQCanvasItemList allItems();
+ TQCanvasItemList collisions( const TQPoint&) const;
+ TQCanvasItemList collisions( const TQRect&) const;
+ TQCanvasItemList collisions( const TQPointArray& pa, const TQCanvasItem* item,
bool exact) const;
- void drawArea(const TTQRect&, TTQPainter* p, bool double_buffer=FALSE);
+ void drawArea(const TQRect&, TQPainter* p, bool double_buffer=FALSE);
- // These are for TTQCanvasView to call
- virtual void addView(TTQCanvasView*);
- virtual void removeView(TTQCanvasView*);
- void drawCanvasArea(const TTQRect&, TTQPainter* p=0, bool double_buffer=TRUE);
- void drawViewArea( TTQCanvasView* view, TTQPainter* p, const TTQRect& r, bool dbuf );
+ // These are for TQCanvasView to call
+ virtual void addView(TQCanvasView*);
+ virtual void removeView(TQCanvasView*);
+ void drawCanvasArea(const TQRect&, TQPainter* p=0, bool double_buffer=TRUE);
+ void drawViewArea( TQCanvasView* view, TQPainter* p, const TQRect& r, bool dbuf );
- // These are for TTQCanvasItem to call
- virtual void addItem(TTQCanvasItem*);
- virtual void addAnimation(TTQCanvasItem*);
- virtual void removeItem(TTQCanvasItem*);
- virtual void removeAnimation(TTQCanvasItem*);
+ // These are for TQCanvasItem to call
+ virtual void addItem(TQCanvasItem*);
+ virtual void addAnimation(TQCanvasItem*);
+ virtual void removeItem(TQCanvasItem*);
+ virtual void removeAnimation(TQCanvasItem*);
virtual void setAdvancePeriod(int ms);
virtual void setUpdatePeriod(int ms);
@@ -307,77 +307,77 @@ public slots:
virtual void update();
protected:
- virtual void drawBackground(TTQPainter&, const TTQRect& area);
- virtual void drawForeground(TTQPainter&, const TTQRect& area);
+ virtual void drawBackground(TQPainter&, const TQRect& area);
+ virtual void drawForeground(TQPainter&, const TQRect& area);
private:
void init(int w, int h, int chunksze=16, int maxclust=100);
- TTQCanvasChunk& chunk(int i, int j) const;
- TTQCanvasChunk& chunkContaining(int x, int y) const;
+ TQCanvasChunk& chunk(int i, int j) const;
+ TQCanvasChunk& chunkContaining(int x, int y) const;
- TTQRect changeBounds(const TTQRect& inarea);
- void drawChanges(const TTQRect& inarea);
+ TQRect changeBounds(const TQRect& inarea);
+ void drawChanges(const TQRect& inarea);
void ensureOffScrSize( int osw, int osh );
- TTQPixmap offscr;
+ TQPixmap offscr;
int awidth,aheight;
int chunksize;
int maxclusters;
int chwidth,chheight;
- TTQCanvasChunk* chunks;
+ TQCanvasChunk* chunks;
- TTQCanvasData* d;
+ TQCanvasData* d;
- void initTiles(TTQPixmap p, int h, int v, int tilewidth, int tileheight);
+ void initTiles(TQPixmap p, int h, int v, int tilewidth, int tileheight);
ushort *grid;
ushort htiles;
ushort vtiles;
ushort tilew;
ushort tileh;
bool oneone;
- TTQPixmap pm;
- TTQTimer* update_timer;
- TTQColor bgcolor;
+ TQPixmap pm;
+ TQTimer* update_timer;
+ TQColor bgcolor;
bool debug_redraw_areas;
bool dblbuf;
- friend void qt_unview(TTQCanvas* c);
+ friend void qt_unview(TQCanvas* c);
#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
- TTQCanvas( const TTQCanvas & );
- TTQCanvas &operator=( const TTQCanvas & );
+ TQCanvas( const TQCanvas & );
+ TQCanvas &operator=( const TQCanvas & );
#endif
};
-class TTQCanvasViewData;
+class TQCanvasViewData;
-class TQM_EXPORT_CANVAS TTQCanvasView : public TQScrollView
+class TQM_EXPORT_CANVAS TQCanvasView : public TQScrollView
{
Q_OBJECT
public:
- TTQCanvasView(TTQWidget* parent=0, const char* name=0, WFlags f=0);
- TTQCanvasView(TTQCanvas* viewing, TTQWidget* parent=0, const char* name=0, WFlags f=0);
- ~TTQCanvasView();
+ TQCanvasView(TQWidget* parent=0, const char* name=0, WFlags f=0);
+ TQCanvasView(TQCanvas* viewing, TQWidget* parent=0, const char* name=0, WFlags f=0);
+ ~TQCanvasView();
- TTQCanvas* canvas() const
+ TQCanvas* canvas() const
{ return viewing; }
- void setCanvas(TTQCanvas* v);
+ void setCanvas(TQCanvas* v);
- const TTQWMatrix &worldMatrix() const;
- const TTQWMatrix &inverseWorldMatrix() const;
- bool setWorldMatrix( const TTQWMatrix & );
+ const TQWMatrix &worldMatrix() const;
+ const TQWMatrix &inverseWorldMatrix() const;
+ bool setWorldMatrix( const TQWMatrix & );
protected:
- void drawContents( TTQPainter*, int cx, int cy, int cw, int ch );
- TTQSize sizeHint() const;
+ void drawContents( TQPainter*, int cx, int cy, int cw, int ch );
+ TQSize sizeHint() const;
private:
- void drawContents( TTQPainter* );
- TTQCanvas* viewing;
- TTQCanvasViewData* d;
- friend void qt_unview(TTQCanvas* c);
+ void drawContents( TQPainter* );
+ TQCanvas* viewing;
+ TQCanvasViewData* d;
+ friend void qt_unview(TQCanvas* c);
private slots:
void cMoving(int,int);
@@ -385,21 +385,21 @@ private slots:
private:
#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
- TTQCanvasView( const TTQCanvasView & );
- TTQCanvasView &operator=( const TTQCanvasView & );
+ TQCanvasView( const TQCanvasView & );
+ TQCanvasView &operator=( const TQCanvasView & );
#endif
};
-class TQM_EXPORT_CANVAS TTQCanvasPixmap : public TQPixmap
+class TQM_EXPORT_CANVAS TQCanvasPixmap : public TQPixmap
{
public:
#ifndef QT_NO_IMAGEIO
- TTQCanvasPixmap(const TTQString& datafilename);
+ TQCanvasPixmap(const TQString& datafilename);
#endif
- TTQCanvasPixmap(const TTQImage& image);
- TTQCanvasPixmap(const TTQPixmap&, const TTQPoint& hotspot);
- ~TTQCanvasPixmap();
+ TQCanvasPixmap(const TQImage& image);
+ TQCanvasPixmap(const TQPixmap&, const TQPoint& hotspot);
+ ~TQCanvasPixmap();
int offsetX() const
{ return hotx; }
@@ -409,73 +409,73 @@ public:
private:
#if defined(Q_DISABLE_COPY)
- TTQCanvasPixmap( const TTQCanvasPixmap & );
- TTQCanvasPixmap &operator=( const TTQCanvasPixmap & );
+ TQCanvasPixmap( const TQCanvasPixmap & );
+ TQCanvasPixmap &operator=( const TQCanvasPixmap & );
#endif
- void init(const TTQImage&);
- void init(const TTQPixmap& pixmap, int hx, int hy);
+ void init(const TQImage&);
+ void init(const TQPixmap& pixmap, int hx, int hy);
- friend class TTQCanvasSprite;
- friend class TTQCanvasPixmapArray;
- friend bool qt_testCollision(const TTQCanvasSprite* s1, const TTQCanvasSprite* s2);
+ friend class TQCanvasSprite;
+ friend class TQCanvasPixmapArray;
+ friend bool qt_testCollision(const TQCanvasSprite* s1, const TQCanvasSprite* s2);
int hotx,hoty;
- TTQImage* collision_mask;
+ TQImage* collision_mask;
};
class TQM_EXPORT_CANVAS TQCanvasPixmapArray
{
public:
- TTQCanvasPixmapArray();
+ TQCanvasPixmapArray();
#ifndef QT_NO_IMAGEIO
- TTQCanvasPixmapArray(const TTQString& datafilenamepattern, int framecount=0);
+ TQCanvasPixmapArray(const TQString& datafilenamepattern, int framecount=0);
#endif
// this form is deprecated
- TTQCanvasPixmapArray(TTQPtrList<TTQPixmap>, TTQPtrList<TTQPoint> hotspots);
+ TQCanvasPixmapArray(TQPtrList<TQPixmap>, TQPtrList<TQPoint> hotspots);
- TTQCanvasPixmapArray(TTQValueList<TTQPixmap>, TTQPointArray hotspots = TTQPointArray() );
- ~TTQCanvasPixmapArray();
+ TQCanvasPixmapArray(TQValueList<TQPixmap>, TQPointArray hotspots = TQPointArray() );
+ ~TQCanvasPixmapArray();
#ifndef QT_NO_IMAGEIO
- bool readPixmaps(const TTQString& datafilenamepattern, int framecount=0);
- bool readCollisionMasks(const TTQString& filenamepattern);
+ bool readPixmaps(const TQString& datafilenamepattern, int framecount=0);
+ bool readCollisionMasks(const TQString& filenamepattern);
#endif
// deprecated
bool operator!(); // Failure check.
bool isValid() const;
- TTQCanvasPixmap* image(int i) const
+ TQCanvasPixmap* image(int i) const
{ return img ? img[i] : 0; }
- void setImage(int i, TTQCanvasPixmap* p);
+ void setImage(int i, TQCanvasPixmap* p);
uint count() const
{ return (uint)framecount; }
private:
#if defined(Q_DISABLE_COPY)
- TTQCanvasPixmapArray( const TTQCanvasPixmapArray & );
- TTQCanvasPixmapArray &operator=( const TTQCanvasPixmapArray & );
+ TQCanvasPixmapArray( const TQCanvasPixmapArray & );
+ TQCanvasPixmapArray &operator=( const TQCanvasPixmapArray & );
#endif
#ifndef QT_NO_IMAGEIO
- bool readPixmaps(const TTQString& datafilenamepattern, int framecount, bool maskonly);
+ bool readPixmaps(const TQString& datafilenamepattern, int framecount, bool maskonly);
#endif
void reset();
int framecount;
- TTQCanvasPixmap** img;
+ TQCanvasPixmap** img;
};
-class TQM_EXPORT_CANVAS TTQCanvasSprite : public TQCanvasItem
+class TQM_EXPORT_CANVAS TQCanvasSprite : public TQCanvasItem
{
public:
- TTQCanvasSprite(TTQCanvasPixmapArray* array, TTQCanvas* canvas);
+ TQCanvasSprite(TQCanvasPixmapArray* array, TQCanvas* canvas);
- void setSequence(TTQCanvasPixmapArray* seq);
+ void setSequence(TQCanvasPixmapArray* seq);
- virtual ~TTQCanvasSprite();
+ virtual ~TQCanvasSprite();
void move(double x, double y);
virtual void move(double x, double y, int frame);
@@ -490,9 +490,9 @@ public:
int rtti() const;
static int RTTI;
- bool collidesWith( const TTQCanvasItem* ) const;
+ bool collidesWith( const TQCanvasItem* ) const;
- TTQRect boundingRect() const;
+ TQRect boundingRect() const;
// is there a reason for these to be protected? Lars
//protected:
@@ -509,20 +509,20 @@ public:
int topEdge(int ny) const;
int rightEdge(int nx) const;
int bottomEdge(int ny) const;
- TTQCanvasPixmap* image() const
+ TQCanvasPixmap* image() const
{ return images->image(frm); }
- virtual TTQCanvasPixmap* imageAdvanced() const;
- TTQCanvasPixmap* image(int f) const
+ virtual TQCanvasPixmap* imageAdvanced() const;
+ TQCanvasPixmap* image(int f) const
{ return images->image(f); }
virtual void advance(int stage);
public:
- void draw(TTQPainter& painter);
+ void draw(TQPainter& painter);
private:
#if defined(Q_DISABLE_COPY)
- TTQCanvasSprite( const TTQCanvasSprite & );
- TTQCanvasSprite &operator=( const TTQCanvasSprite & );
+ TQCanvasSprite( const TQCanvasSprite & );
+ TQCanvasSprite &operator=( const TQCanvasSprite & );
#endif
void addToChunks();
void removeFromChunks();
@@ -532,46 +532,46 @@ private:
ushort anim_val;
uint anim_state:2;
uint anim_type:14;
- bool collidesWith( const TTQCanvasSprite*,
- const TTQCanvasPolygonalItem*,
- const TTQCanvasRectangle*,
- const TTQCanvasEllipse*,
- const TTQCanvasText* ) const;
+ bool collidesWith( const TQCanvasSprite*,
+ const TQCanvasPolygonalItem*,
+ const TQCanvasRectangle*,
+ const TQCanvasEllipse*,
+ const TQCanvasText* ) const;
- friend bool qt_testCollision( const TTQCanvasSprite* s1,
- const TTQCanvasSprite* s2 );
+ friend bool qt_testCollision( const TQCanvasSprite* s1,
+ const TQCanvasSprite* s2 );
- TTQCanvasPixmapArray* images;
+ TQCanvasPixmapArray* images;
};
-class TTQPolygonalProcessor;
+class TQPolygonalProcessor;
-class TQM_EXPORT_CANVAS TTQCanvasPolygonalItem : public TQCanvasItem
+class TQM_EXPORT_CANVAS TQCanvasPolygonalItem : public TQCanvasItem
{
public:
- TTQCanvasPolygonalItem(TTQCanvas* canvas);
- virtual ~TTQCanvasPolygonalItem();
+ TQCanvasPolygonalItem(TQCanvas* canvas);
+ virtual ~TQCanvasPolygonalItem();
- bool collidesWith( const TTQCanvasItem* ) const;
+ bool collidesWith( const TQCanvasItem* ) const;
- virtual void setPen(TTQPen p);
- virtual void setBrush(TTQBrush b);
+ virtual void setPen(TQPen p);
+ virtual void setBrush(TQBrush b);
- TTQPen pen() const
+ TQPen pen() const
{ return pn; }
- TTQBrush brush() const
+ TQBrush brush() const
{ return br; }
- virtual TTQPointArray areaPoints() const=0;
- virtual TTQPointArray areaPointsAdvanced() const;
- TTQRect boundingRect() const;
+ virtual TQPointArray areaPoints() const=0;
+ virtual TQPointArray areaPointsAdvanced() const;
+ TQRect boundingRect() const;
int rtti() const;
static int RTTI;
protected:
- void draw(TTQPainter &);
- virtual void drawShape(TTQPainter &) = 0;
+ void draw(TQPainter &);
+ virtual void drawShape(TQPainter &) = 0;
bool winding() const;
void setWinding(bool);
@@ -581,88 +581,88 @@ protected:
{ return (bool)val; }
private:
- void scanPolygon( const TTQPointArray& pa, int winding,
- TTQPolygonalProcessor& process ) const;
- TTQPointArray chunks() const;
-
- bool collidesWith( const TTQCanvasSprite*,
- const TTQCanvasPolygonalItem*,
- const TTQCanvasRectangle*,
- const TTQCanvasEllipse*,
- const TTQCanvasText* ) const;
-
- TTQBrush br;
- TTQPen pn;
+ void scanPolygon( const TQPointArray& pa, int winding,
+ TQPolygonalProcessor& process ) const;
+ TQPointArray chunks() const;
+
+ bool collidesWith( const TQCanvasSprite*,
+ const TQCanvasPolygonalItem*,
+ const TQCanvasRectangle*,
+ const TQCanvasEllipse*,
+ const TQCanvasText* ) const;
+
+ TQBrush br;
+ TQPen pn;
uint wind:1;
};
-class TQM_EXPORT_CANVAS TTQCanvasRectangle : public TQCanvasPolygonalItem
+class TQM_EXPORT_CANVAS TQCanvasRectangle : public TQCanvasPolygonalItem
{
public:
- TTQCanvasRectangle(TTQCanvas* canvas);
- TTQCanvasRectangle(const TTQRect&, TTQCanvas* canvas);
- TTQCanvasRectangle(int x, int y, int width, int height, TTQCanvas* canvas);
+ TQCanvasRectangle(TQCanvas* canvas);
+ TQCanvasRectangle(const TQRect&, TQCanvas* canvas);
+ TQCanvasRectangle(int x, int y, int width, int height, TQCanvas* canvas);
- ~TTQCanvasRectangle();
+ ~TQCanvasRectangle();
int width() const;
int height() const;
void setSize(int w, int h);
- TTQSize size() const
- { return TTQSize(w,h); }
- TTQPointArray areaPoints() const;
- TTQRect rect() const
- { return TTQRect(int(x()),int(y()),w,h); }
+ TQSize size() const
+ { return TQSize(w,h); }
+ TQPointArray areaPoints() const;
+ TQRect rect() const
+ { return TQRect(int(x()),int(y()),w,h); }
- bool collidesWith( const TTQCanvasItem* ) const;
+ bool collidesWith( const TQCanvasItem* ) const;
int rtti() const;
static int RTTI;
protected:
- void drawShape(TTQPainter &);
- TTQPointArray chunks() const;
+ void drawShape(TQPainter &);
+ TQPointArray chunks() const;
private:
- bool collidesWith( const TTQCanvasSprite*,
- const TTQCanvasPolygonalItem*,
- const TTQCanvasRectangle*,
- const TTQCanvasEllipse*,
- const TTQCanvasText* ) const;
+ bool collidesWith( const TQCanvasSprite*,
+ const TQCanvasPolygonalItem*,
+ const TQCanvasRectangle*,
+ const TQCanvasEllipse*,
+ const TQCanvasText* ) const;
int w, h;
};
-class TQM_EXPORT_CANVAS TTQCanvasPolygon : public TQCanvasPolygonalItem
+class TQM_EXPORT_CANVAS TQCanvasPolygon : public TQCanvasPolygonalItem
{
public:
- TTQCanvasPolygon(TTQCanvas* canvas);
- ~TTQCanvasPolygon();
- void setPoints(TTQPointArray);
- TTQPointArray points() const;
+ TQCanvasPolygon(TQCanvas* canvas);
+ ~TQCanvasPolygon();
+ void setPoints(TQPointArray);
+ TQPointArray points() const;
void moveBy(double dx, double dy);
- TTQPointArray areaPoints() const;
+ TQPointArray areaPoints() const;
int rtti() const;
static int RTTI;
protected:
- void drawShape(TTQPainter &);
- TTQPointArray poly;
+ void drawShape(TQPainter &);
+ TQPointArray poly;
};
-class TQM_EXPORT_CANVAS TTQCanvasSpline : public TQCanvasPolygon
+class TQM_EXPORT_CANVAS TQCanvasSpline : public TQCanvasPolygon
{
public:
- TTQCanvasSpline(TTQCanvas* canvas);
- ~TTQCanvasSpline();
+ TQCanvasSpline(TQCanvas* canvas);
+ ~TQCanvasSpline();
- void setControlPoints(TTQPointArray, bool closed=TRUE);
- TTQPointArray controlPoints() const;
+ void setControlPoints(TQPointArray, bool closed=TRUE);
+ TQPointArray controlPoints() const;
bool closed() const;
int rtti() const;
@@ -670,47 +670,47 @@ public:
private:
void recalcPoly();
- TTQPointArray bez;
+ TQPointArray bez;
bool cl;
};
-class TQM_EXPORT_CANVAS TTQCanvasLine : public TQCanvasPolygonalItem
+class TQM_EXPORT_CANVAS TQCanvasLine : public TQCanvasPolygonalItem
{
public:
- TTQCanvasLine(TTQCanvas* canvas);
- ~TTQCanvasLine();
+ TQCanvasLine(TQCanvas* canvas);
+ ~TQCanvasLine();
void setPoints(int x1, int y1, int x2, int y2);
- TTQPoint startPoint() const
- { return TTQPoint(x1,y1); }
- TTQPoint endPoint() const
- { return TTQPoint(x2,y2); }
+ TQPoint startPoint() const
+ { return TQPoint(x1,y1); }
+ TQPoint endPoint() const
+ { return TQPoint(x2,y2); }
int rtti() const;
static int RTTI;
- void setPen(TTQPen p);
+ void setPen(TQPen p);
protected:
- void drawShape(TTQPainter &);
- TTQPointArray areaPoints() const;
+ void drawShape(TQPainter &);
+ TQPointArray areaPoints() const;
private:
int x1,y1,x2,y2;
};
-class TQM_EXPORT_CANVAS TTQCanvasEllipse : public TQCanvasPolygonalItem
+class TQM_EXPORT_CANVAS TQCanvasEllipse : public TQCanvasPolygonalItem
{
public:
- TTQCanvasEllipse( TTQCanvas* canvas );
- TTQCanvasEllipse( int width, int height, TTQCanvas* canvas );
- TTQCanvasEllipse( int width, int height, int startangle, int angle,
- TTQCanvas* canvas );
+ TQCanvasEllipse( TQCanvas* canvas );
+ TQCanvasEllipse( int width, int height, TQCanvas* canvas );
+ TQCanvasEllipse( int width, int height, int startangle, int angle,
+ TQCanvas* canvas );
- ~TTQCanvasEllipse();
+ ~TQCanvasEllipse();
int width() const;
int height() const;
@@ -720,44 +720,44 @@ public:
{ return a1; }
int angleLength() const
{ return a2; }
- TTQPointArray areaPoints() const;
+ TQPointArray areaPoints() const;
- bool collidesWith( const TTQCanvasItem* ) const;
+ bool collidesWith( const TQCanvasItem* ) const;
int rtti() const;
static int RTTI;
protected:
- void drawShape(TTQPainter &);
+ void drawShape(TQPainter &);
private:
- bool collidesWith( const TTQCanvasSprite*,
- const TTQCanvasPolygonalItem*,
- const TTQCanvasRectangle*,
- const TTQCanvasEllipse*,
- const TTQCanvasText* ) const;
+ bool collidesWith( const TQCanvasSprite*,
+ const TQCanvasPolygonalItem*,
+ const TQCanvasRectangle*,
+ const TQCanvasEllipse*,
+ const TQCanvasText* ) const;
int w, h;
int a1, a2;
};
-class TTQCanvasTextExtra;
+class TQCanvasTextExtra;
-class TQM_EXPORT_CANVAS TTQCanvasText : public TQCanvasItem
+class TQM_EXPORT_CANVAS TQCanvasText : public TQCanvasItem
{
public:
- TTQCanvasText(TTQCanvas* canvas);
- TTQCanvasText(const TTQString&, TTQCanvas* canvas);
- TTQCanvasText(const TTQString&, TTQFont, TTQCanvas* canvas);
+ TQCanvasText(TQCanvas* canvas);
+ TQCanvasText(const TQString&, TQCanvas* canvas);
+ TQCanvasText(const TQString&, TQFont, TQCanvas* canvas);
- virtual ~TTQCanvasText();
+ virtual ~TQCanvasText();
- void setText( const TTQString& );
- void setFont( const TTQFont& );
- void setColor( const TTQColor& );
- TTQString text() const;
- TTQFont font() const;
- TTQColor color() const;
+ void setText( const TQString& );
+ void setFont( const TQFont& );
+ void setColor( const TQColor& );
+ TQString text() const;
+ TQFont font() const;
+ TQColor color() const;
void moveBy(double dx, double dy);
@@ -765,38 +765,38 @@ public:
{ return flags; }
void setTextFlags(int);
- TTQRect boundingRect() const;
+ TQRect boundingRect() const;
- bool collidesWith( const TTQCanvasItem* ) const;
+ bool collidesWith( const TQCanvasItem* ) const;
int rtti() const;
static int RTTI;
protected:
- virtual void draw(TTQPainter&);
+ virtual void draw(TQPainter&);
private:
#if defined(Q_DISABLE_COPY)
- TTQCanvasText( const TTQCanvasText & );
- TTQCanvasText &operator=( const TTQCanvasText & );
+ TQCanvasText( const TQCanvasText & );
+ TQCanvasText &operator=( const TQCanvasText & );
#endif
void addToChunks();
void removeFromChunks();
void changeChunks();
void setRect();
- TTQRect brect;
- TTQString txt;
+ TQRect brect;
+ TQString txt;
int flags;
- TTQFont fnt;
- TTQColor col;
- TTQCanvasTextExtra* extra;
-
- bool collidesWith( const TTQCanvasSprite*,
- const TTQCanvasPolygonalItem*,
- const TTQCanvasRectangle*,
- const TTQCanvasEllipse*,
- const TTQCanvasText* ) const;
+ TQFont fnt;
+ TQColor col;
+ TQCanvasTextExtra* extra;
+
+ bool collidesWith( const TQCanvasSprite*,
+ const TQCanvasPolygonalItem*,
+ const TQCanvasRectangle*,
+ const TQCanvasEllipse*,
+ const TQCanvasText* ) const;
};
#define Q_DEFINED_QCANVAS
diff --git a/kjsembed/tools/headers/qdir.h b/kjsembed/tools/headers/qdir.h
index 4db56e03..34d064b1 100644
--- a/kjsembed/tools/headers/qdir.h
+++ b/kjsembed/tools/headers/qdir.h
@@ -1,7 +1,7 @@
/****************************************************************************
**
**
-** Definition of TTQDir class
+** Definition of TQDir class
**
** Created : 950427
**
@@ -46,10 +46,10 @@
#ifndef QT_NO_DIR
-typedef TTQPtrList<TTQFileInfo> TQFileInfoList;
-typedef TTQPtrListIterator<TTQFileInfo> TQFileInfoListIterator;
-class TTQStringList;
-template <class T> class TTQDeepCopy;
+typedef TQPtrList<TQFileInfo> TQFileInfoList;
+typedef TQPtrListIterator<TQFileInfo> TQFileInfoListIterator;
+class TQStringList;
+template <class T> class TQDeepCopy;
class Q_EXPORT TQDir
@@ -85,34 +85,34 @@ public:
IgnoreCase = 0x10,
DefaultSort = -1 };
- TTQDir();
- TTQDir( const TTQString &path, const TTQString &nameFilter = TTQString::null,
+ TQDir();
+ TQDir( const TQString &path, const TQString &nameFilter = TQString::null,
int sortSpec = Name | IgnoreCase, int filterSpec = All );
- TTQDir( const TTQDir & );
+ TQDir( const TQDir & );
- virtual ~TTQDir();
+ virtual ~TQDir();
- TTQDir &operator=( const TTQDir & );
- TTQDir &operator=( const TTQString &path );
+ TQDir &operator=( const TQDir & );
+ TQDir &operator=( const TQString &path );
- virtual void setPath( const TTQString &path );
- virtual TTQString path() const;
- virtual TTQString absPath() const;
- virtual TTQString canonicalPath() const;
+ virtual void setPath( const TQString &path );
+ virtual TQString path() const;
+ virtual TQString absPath() const;
+ virtual TQString canonicalPath() const;
- virtual TTQString dirName() const;
- virtual TTQString filePath( const TTQString &fileName,
+ virtual TQString dirName() const;
+ virtual TQString filePath( const TQString &fileName,
bool acceptAbsPath = TRUE ) const;
- virtual TTQString absFilePath( const TTQString &fileName,
+ virtual TQString absFilePath( const TQString &fileName,
bool acceptAbsPath = TRUE ) const;
- static TTQString convertSeparators( const TTQString &pathName );
+ static TQString convertSeparators( const TQString &pathName );
- virtual bool cd( const TTQString &dirName, bool acceptAbsPath = TRUE );
+ virtual bool cd( const TQString &dirName, bool acceptAbsPath = TRUE );
virtual bool cdUp();
TQString nameFilter() const;
- virtual void setNameFilter( const TTQString &nameFilter );
+ virtual void setNameFilter( const TQString &nameFilter );
FilterSpec filter() const;
virtual void setFilter( int filterSpec );
SortSpec sorting() const;
@@ -124,28 +124,28 @@ public:
uint count() const;
TQString operator[]( int ) const;
- virtual TTQStrList encodedEntryList( int filterSpec = DefaultFilter,
+ virtual TQStrList encodedEntryList( int filterSpec = DefaultFilter,
int sortSpec = DefaultSort ) const;
- virtual TTQStrList encodedEntryList( const TTQString &nameFilter,
+ virtual TQStrList encodedEntryList( const TQString &nameFilter,
int filterSpec = DefaultFilter,
int sortSpec = DefaultSort ) const;
- virtual TTQStringList entryList( int filterSpec = DefaultFilter,
+ virtual TQStringList entryList( int filterSpec = DefaultFilter,
int sortSpec = DefaultSort ) const;
- virtual TTQStringList entryList( const TTQString &nameFilter,
+ virtual TQStringList entryList( const TQString &nameFilter,
int filterSpec = DefaultFilter,
int sortSpec = DefaultSort ) const;
virtual const TQFileInfoList *entryInfoList( int filterSpec = DefaultFilter,
int sortSpec = DefaultSort ) const;
- virtual const TQFileInfoList *entryInfoList( const TTQString &nameFilter,
+ virtual const TQFileInfoList *entryInfoList( const TQString &nameFilter,
int filterSpec = DefaultFilter,
int sortSpec = DefaultSort ) const;
static const TQFileInfoList *drives();
- virtual bool mkdir( const TTQString &dirName,
+ virtual bool mkdir( const TQString &dirName,
bool acceptAbsPath = TRUE ) const;
- virtual bool rmdir( const TTQString &dirName,
+ virtual bool rmdir( const TQString &dirName,
bool acceptAbsPath = TRUE ) const;
virtual bool isReadable() const;
@@ -155,45 +155,45 @@ public:
virtual bool isRelative() const;
virtual void convertToAbs();
- virtual bool operator==( const TTQDir & ) const;
- virtual bool operator!=( const TTQDir & ) const;
+ virtual bool operator==( const TQDir & ) const;
+ virtual bool operator!=( const TQDir & ) const;
- virtual bool remove( const TTQString &fileName,
+ virtual bool remove( const TQString &fileName,
bool acceptAbsPath = TRUE );
- virtual bool rename( const TTQString &name, const TTQString &newName,
+ virtual bool rename( const TQString &name, const TQString &newName,
bool acceptAbsPaths = TRUE );
- virtual bool exists( const TTQString &name,
+ virtual bool exists( const TQString &name,
bool acceptAbsPath = TRUE );
static char separator();
- static bool setCurrent( const TTQString &path );
- static TTQDir current();
- static TTQDir home();
- static TTQDir root();
- static TTQString currentDirPath();
- static TTQString homeDirPath();
- static TTQString rootDirPath();
-
- static bool match( const TTQStringList &filters, const TTQString &fileName );
- static bool match( const TTQString &filter, const TTQString &fileName );
- static TTQString cleanDirPath( const TTQString &dirPath );
- static bool isRelativePath( const TTQString &path );
+ static bool setCurrent( const TQString &path );
+ static TQDir current();
+ static TQDir home();
+ static TQDir root();
+ static TQString currentDirPath();
+ static TQString homeDirPath();
+ static TQString rootDirPath();
+
+ static bool match( const TQStringList &filters, const TQString &fileName );
+ static bool match( const TQString &filter, const TQString &fileName );
+ static TQString cleanDirPath( const TQString &dirPath );
+ static bool isRelativePath( const TQString &path );
void refresh() const;
private:
#ifdef Q_OS_MAC
typedef struct FSSpec FSSpec;
- static FSSpec *make_spec(const TTQString &);
+ static FSSpec *make_spec(const TQString &);
#endif
void init();
- virtual bool readDirEntries( const TTQString &nameFilter,
+ virtual bool readDirEntries( const TQString &nameFilter,
int FilterSpec, int SortSpec );
- static void slashify( TTQString & );
+ static void slashify( TQString & );
TQString dPath;
- TTQStringList *fList;
+ TQStringList *fList;
TQFileInfoList *fiList;
TQString nameFilt;
FilterSpec filtS;
@@ -202,44 +202,44 @@ private:
uint allDirs : 1;
void detach();
- friend class TTQDeepCopy< TTQDir >;
+ friend class TQDeepCopy< TQDir >;
};
-inline TTQString TTQDir::path() const
+inline TQString TQDir::path() const
{
return dPath;
}
-inline TTQString TTQDir::nameFilter() const
+inline TQString TQDir::nameFilter() const
{
return nameFilt;
}
-inline TTQDir::FilterSpec TTQDir::filter() const
+inline TQDir::FilterSpec TQDir::filter() const
{
return filtS;
}
-inline TTQDir::SortSpec TTQDir::sorting() const
+inline TQDir::SortSpec TQDir::sorting() const
{
return sortS;
}
-inline bool TTQDir::matchAllDirs() const
+inline bool TQDir::matchAllDirs() const
{
return allDirs;
}
-inline bool TTQDir::operator!=( const TTQDir &d ) const
+inline bool TQDir::operator!=( const TQDir &d ) const
{
return !(*this == d);
}
struct TQDirSortItem {
- TTQString filename_cache;
- TTQFileInfo* item;
+ TQString filename_cache;
+ TQFileInfo* item;
};
#endif // QT_NO_DIR
diff --git a/kjsembed/tools/headers/qpen.h b/kjsembed/tools/headers/qpen.h
index e1a5c582..ef631a87 100644
--- a/kjsembed/tools/headers/qpen.h
+++ b/kjsembed/tools/headers/qpen.h
@@ -1,7 +1,7 @@
/****************************************************************************
**
**
-** Definition of TTQPen class
+** Definition of TQPen class
**
** Created : 940112
**
@@ -44,41 +44,41 @@
#endif // QT_H
-class Q_EXPORT TTQPen: public Qt
+class Q_EXPORT TQPen: public Qt
{
public:
- TTQPen();
- TTQPen( PenStyle );
- TTQPen( const TTQColor &color, uint width=0, PenStyle style=SolidLine );
- TTQPen( const TTQColor &cl, uint w, PenStyle s, PenCapStyle c, PenJoinStyle j);
- TTQPen( const TTQPen & );
- ~TTQPen();
- TTQPen &operator=( const TTQPen & );
+ TQPen();
+ TQPen( PenStyle );
+ TQPen( const TQColor &color, uint width=0, PenStyle style=SolidLine );
+ TQPen( const TQColor &cl, uint w, PenStyle s, PenCapStyle c, PenJoinStyle j);
+ TQPen( const TQPen & );
+ ~TQPen();
+ TQPen &operator=( const TQPen & );
PenStyle style() const { return data->style; }
void setStyle( PenStyle );
uint width() const { return data->width; }
void setWidth( uint );
- const TTQColor &color() const { return data->color; }
- void setColor( const TTQColor & );
+ const TQColor &color() const { return data->color; }
+ void setColor( const TQColor & );
PenCapStyle capStyle() const;
void setCapStyle( PenCapStyle );
PenJoinStyle joinStyle() const;
void setJoinStyle( PenJoinStyle );
- bool operator==( const TTQPen &p ) const;
- bool operator!=( const TTQPen &p ) const
+ bool operator==( const TQPen &p ) const;
+ bool operator!=( const TQPen &p ) const
{ return !(operator==(p)); }
private:
- friend class TTQPainter;
+ friend class TQPainter;
#ifdef Q_WS_WIN
friend class TQFontEngineWin;
#endif
TQPen copy() const;
void detach();
- void init( const TTQColor &, uint, uint );
+ void init( const TQColor &, uint, uint );
struct TQPenData : public TQShared { // pen data
PenStyle style;
uint width;
@@ -89,11 +89,11 @@ private:
/*****************************************************************************
- TTQPen stream functions
+ TQPen stream functions
*****************************************************************************/
#ifndef QT_NO_DATASTREAM
-Q_EXPORT TTQDataStream &operator<<( TTQDataStream &, const TTQPen & );
-Q_EXPORT TTQDataStream &operator>>( TTQDataStream &, TTQPen & );
+Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQPen & );
+Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQPen & );
#endif
#endif // TQPEN_H
diff --git a/kjsembed/tools/headers/qtimer.h b/kjsembed/tools/headers/qtimer.h
index e61b4124..20bfe9da 100644
--- a/kjsembed/tools/headers/qtimer.h
+++ b/kjsembed/tools/headers/qtimer.h
@@ -1,7 +1,7 @@
/****************************************************************************
**
**
-** Definition of TTQTimer class
+** Definition of TQTimer class
**
** Created : 931111
**
@@ -43,12 +43,12 @@
#endif // QT_H
-class Q_EXPORT TTQTimer : public TQObject
+class Q_EXPORT TQTimer : public TQObject
{
Q_OBJECT
public:
- TTQTimer( TTQObject *parent=0, const char *name=0 );
- ~TTQTimer();
+ TQTimer( TQObject *parent=0, const char *name=0 );
+ ~TQTimer();
bool isActive() const;
@@ -56,7 +56,7 @@ public:
void changeInterval( int msec );
void stop();
- static void singleShot( int msec, TTQObject *receiver, const char *member );
+ static void singleShot( int msec, TQObject *receiver, const char *member );
int timerId() const { return id; }
@@ -64,7 +64,7 @@ signals:
void timeout();
protected:
- bool event( TTQEvent * );
+ bool event( TQEvent * );
private:
int id;
@@ -73,13 +73,13 @@ private:
private: // Disabled copy constructor and operator=
#if defined(Q_DISABLE_COPY)
- TTQTimer( const TTQTimer & );
- TTQTimer &operator=( const TTQTimer & );
+ TQTimer( const TQTimer & );
+ TQTimer &operator=( const TQTimer & );
#endif
};
-inline bool TTQTimer::isActive() const
+inline bool TQTimer::isActive() const
{
return id >= 0;
}