diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-09-05 01:09:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-09-05 01:22:13 +0900 |
commit | 37aaa67152936f4fefff22d559c03e943a86ae69 (patch) | |
tree | ffffcd595eecef631bc1fc38922c63060aa175ea /kpacman/status.h | |
parent | ac81a3c3e8d1a61fc2ff39da89c7c2ea290d5e34 (diff) | |
download | tdepacman-37aaa67152936f4fefff22d559c03e943a86ae69.tar.gz tdepacman-37aaa67152936f4fefff22d559c03e943a86ae69.zip |
Renamed kpacman -> tdepacman.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpacman/status.h')
-rw-r--r-- | kpacman/status.h | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/kpacman/status.h b/kpacman/status.h deleted file mode 100644 index 6cbf759..0000000 --- a/kpacman/status.h +++ /dev/null @@ -1,74 +0,0 @@ -#ifndef STATUS_H -#define STATUS_H - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include <kapp.h> - -#include <tdeconfig.h> -#include <tqwidget.h> -#include <tqpixmap.h> -#include <tqstring.h> -#include <tqmemarray.h> -#include <tqptrlist.h> -#include <tqstrlist.h> -#include <tqregexp.h> - -class Status : public TQWidget -{ - Q_OBJECT -public: - Status(TQWidget *parent=0, const char *name=0, int scheme=-1, int mode=-1); - ~Status() {}; - -public slots: - void setScheme(int scheme, int mode); - void setLevel(int level); - void setLifes(int lifes); - -protected: - void paintEvent(TQPaintEvent *); - int minHeight(); - int minWidth(); - - TQString decodeHexOctString(TQString str); - - void fillArray(TQMemArray<int> &, TQString, int); - void fillStrList(TQStrList &, TQString, int); - void fillPixmapName(TQStrList &); - - void confScheme(); - void confLevels(bool defGroup=TRUE); - void confMisc(bool defGroup=TRUE); - - void initPixmaps(); - -private: - TQMemArray<int> levelPos; - int actualLifes; - int actualLevel; - - TQString pixmapDirectory; - - TQStrList lifesPixmapName; - TQStrList levelPixmapName; - - TQString lastLifesPixmapName; - TQString lastLevelPixmapName; - - TQPtrList<TQPixmap> *loadPixmap(TQWidget *parent, TQString pixmapName, - TQPtrList<TQPixmap> *pixmaps=0); - - TQPtrList<TQPixmap> *lifesPix; - TQPtrList<TQPixmap> *levelPix; - - int maxLevel; - int level; - - int scheme; - int mode; -}; - -#endif // STATUS_H |