diff options
Diffstat (limited to 'ksokoban/ImageData.h')
-rw-r--r-- | ksokoban/ImageData.h | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/ksokoban/ImageData.h b/ksokoban/ImageData.h index 4e57bc7d..ae2f2a42 100644 --- a/ksokoban/ImageData.h +++ b/ksokoban/ImageData.h @@ -20,9 +20,9 @@ #ifndef IMAGEDATA_H #define IMAGEDATA_H -#include <qimage.h> -#include <qpixmap.h> -#include <qcstring.h> +#include <tqimage.h> +#include <tqpixmap.h> +#include <tqcstring.h> #include <krandomsequence.h> @@ -41,44 +41,44 @@ public: int resize(int size); int size() { return size_; } - void wall(QPainter &p, int x, int y, int index, bool left, bool right); - void floor(QPainter &p, int x, int y); - void goal(QPainter &p, int x, int y); - void man(QPainter &p, int x, int y); - void object(QPainter &p, int x, int y); - void saveman(QPainter &p, int x, int y); - void treasure(QPainter &p, int x, int y); - void brightObject(QPainter &p, int x, int y); - void brightTreasure(QPainter &p, int x, int y); + void wall(TQPainter &p, int x, int y, int index, bool left, bool right); + void floor(TQPainter &p, int x, int y); + void goal(TQPainter &p, int x, int y); + void man(TQPainter &p, int x, int y); + void object(TQPainter &p, int x, int y); + void saveman(TQPainter &p, int x, int y); + void treasure(TQPainter &p, int x, int y); + void brightObject(TQPainter &p, int x, int y); + void brightTreasure(TQPainter &p, int x, int y); - const QPixmap &background() { return background_; } - const QImage& objectImg() const { return objectImg_; } + const TQPixmap &background() { return background_; } + const TQImage& objectImg() const { return objectImg_; } protected: ImageData(); void expandIndex(int size); - void image2pixmap(QImage img, QPixmap& xpm, bool diffuse=true); - void brighten(QImage& img); + void image2pixmap(TQImage img, TQPixmap& xpm, bool diffuse=true); + void brighten(TQImage& img); - const QPixmap &upperLarge(int index); - const QPixmap &lowerLarge(int index); - const QPixmap &leftSmall(int index); - const QPixmap &rightSmall(int index); + const TQPixmap &upperLarge(int index); + const TQPixmap &lowerLarge(int index); + const TQPixmap &leftSmall(int index); + const TQPixmap &rightSmall(int index); - QImage images_[NO_OF_IMAGES]; + TQImage images_[NO_OF_IMAGES]; - QPixmap smallStone_xpm_[SMALL_STONES]; - QPixmap largeStone_xpm_[LARGE_STONES]; - QPixmap otherPixmaps_[OTHER_IMAGES]; - QPixmap background_, brightObject_, brightTreasure_; - QImage objectImg_; + TQPixmap smallStone_xpm_[SMALL_STONES]; + TQPixmap largeStone_xpm_[LARGE_STONES]; + TQPixmap otherPixmaps_[OTHER_IMAGES]; + TQPixmap background_, brightObject_, brightTreasure_; + TQImage objectImg_; int indexSize_; - QByteArray upperLargeIndex_; - QByteArray lowerLargeIndex_; - QByteArray leftSmallIndex_; - QByteArray rightSmallIndex_; + TQByteArray upperLargeIndex_; + TQByteArray lowerLargeIndex_; + TQByteArray leftSmallIndex_; + TQByteArray rightSmallIndex_; int size_, halfSize_; KRandomSequence random; |