summaryrefslogtreecommitdiffstats
path: root/kscreensaver/kdesavers/firesaver.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:27:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:27:15 +0000
commitb5d38fd2e94066885d4620b0c35c48a2faa5aa44 (patch)
tree7e7e611e0e3ef23dc2efd327a7455bcf4d7c9b7f /kscreensaver/kdesavers/firesaver.h
parent019ebb9a949a97c898e5d563f0699a3ff49e6588 (diff)
downloadtdeartwork-b5d38fd2e94066885d4620b0c35c48a2faa5aa44.tar.gz
tdeartwork-b5d38fd2e94066885d4620b0c35c48a2faa5aa44.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeartwork@1157637 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kscreensaver/kdesavers/firesaver.h')
-rw-r--r--kscreensaver/kdesavers/firesaver.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kscreensaver/kdesavers/firesaver.h b/kscreensaver/kdesavers/firesaver.h
index 3757b64b..dfc713b0 100644
--- a/kscreensaver/kdesavers/firesaver.h
+++ b/kscreensaver/kdesavers/firesaver.h
@@ -30,11 +30,11 @@
#define FIELDW_2 (FIELDWIDTH/2.0)
#define FIELDW_4 (FIELDWIDTH/4.0)
-#include <qgl.h>
-#include <qptrlist.h>
-#include <qimage.h>
-#include <qstring.h>
-#include <qcolor.h>
+#include <tqgl.h>
+#include <tqptrlist.h>
+#include <tqimage.h>
+#include <tqstring.h>
+#include <tqcolor.h>
#include <arts/kplayobject.h>
#include <arts/kartsserver.h>
@@ -46,14 +46,14 @@ class Writer;
class KFireSaver : public QGLWidget
{
public:
- KFireSaver( QWidget *parent=0, const char *name=0 );
+ KFireSaver( TQWidget *parent=0, const char *name=0 );
~KFireSaver();
protected:
void initializeGL();
void resizeGL( int, int );
void paintGL();
- void timerEvent( class QTimerEvent * );
+ void timerEvent( class TQTimerEvent * );
private:
enum enumFireworkType
@@ -72,19 +72,19 @@ class KFireSaver : public QGLWidget
inline enumFireworkType pickType();
inline int pickColour();
void explodeFirework(Particle* fireWorkLeaderParticle);
- void burnLogo(QImage * image);
- void playSound(QString file);
- bool loadTexture(QString file, unsigned int & textureID);
+ void burnLogo(TQImage * image);
+ void playSound(TQString file);
+ bool loadTexture(TQString file, unsigned int & textureID);
void freeTexture(unsigned int & textureID);
void readConfig();
//list of particles and stars
- QPtrList<Particle>
+ TQPtrList<Particle>
particleList,
starList;
//stuff for 'exploding' pixmaps (kde, tux, icons..)
- QPtrList<QImage>
+ TQPtrList<TQImage>
imageList;
//texture stuff
@@ -98,7 +98,7 @@ class KFireSaver : public QGLWidget
//sound stuff
KArtsDispatcher artsDispatcher;
KArtsServer artsServer;
- QPtrList<KPlayObject> playObjectList;
+ TQPtrList<KPlayObject> playObjectList;
QString sound_explosion,
sound_debris;