diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
commit | cfc42a28c327b96c6a2afee92af3bac1a479eb8a (patch) | |
tree | e3219edf5f827eaa4db3feb509a17846a1a5a752 /kworldwatch/maploader.h | |
parent | a73fc4d7e66fe0824313aa4e9a650c4cddef6e9f (diff) | |
download | tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.tar.gz tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdetoys@1157650 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kworldwatch/maploader.h')
-rw-r--r-- | kworldwatch/maploader.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kworldwatch/maploader.h b/kworldwatch/maploader.h index efce45f..a1f7abb 100644 --- a/kworldwatch/maploader.h +++ b/kworldwatch/maploader.h @@ -28,9 +28,9 @@ #ifndef MAP_LOADER_H #define MAP_LOADER_H -#include <qpixmap.h> -#include <qbitmap.h> -#include <qptrlist.h> +#include <tqpixmap.h> +#include <tqbitmap.h> +#include <tqptrlist.h> class MapTheme @@ -38,10 +38,10 @@ class MapTheme public: MapTheme() : _name(""), _tag(""), _id(0) {}; - MapTheme(const QString &name, const QString &tag) : _name(name), _tag(tag), _id(0) {}; + MapTheme(const TQString &name, const TQString &tag) : _name(name), _tag(tag), _id(0) {}; - QString tag() { return _tag; }; - QString name() { return _name; }; + TQString tag() { return _tag; }; + TQString name() { return _name; }; void setID(int i) { _id = i; }; int ID() { return _id; }; @@ -49,7 +49,7 @@ public: private: - QString _name, _tag; + TQString _name, _tag; int _id; }; @@ -59,21 +59,21 @@ class MapLoader { public: - static QPtrList<MapTheme> themes(); + static TQPtrList<MapTheme> themes(); - void load(unsigned int width=400, const QString &theme = "earth", unsigned int height=0, float opacity=0.5); + void load(unsigned int width=400, const TQString &theme = "earth", unsigned int height=0, float opacity=0.5); - QPixmap lightMap() { return _light; }; - QPixmap darkMap() { return _dark; }; + TQPixmap lightMap() { return _light; }; + TQPixmap darkMap() { return _dark; }; - QBitmap darkMask(int width, int height); + TQBitmap darkMask(int width, int height); private: - QStringList maps(const QString &theme); + TQStringList maps(const TQString &theme); - QPixmap _light, _dark; + TQPixmap _light, _dark; }; |