blob: c749f69e182c46efd1d2c09e45f4fc723b6e8862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#ifndef STATUS_H
#define STATUS_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <kapp.h>
#include <kconfig.h>
#include <qwidget.h>
#include <qpixmap.h>
#include <qstring.h>
#include <qarray.h>
#include <qlist.h>
#include <qstrlist.h>
#include <qregexp.h>
class Status : public QWidget
{
Q_OBJECT
public:
Status(QWidget *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(QPaintEvent *);
int minHeight();
int minWidth();
QString decodeHexOctString(QString str);
void fillArray(QArray<int> &, QString, int);
void fillStrList(QStrList &, QString, int);
void fillPixmapName(QStrList &);
void confScheme();
void confLevels(bool defGroup=TRUE);
void confMisc(bool defGroup=TRUE);
void initPixmaps();
private:
QArray<int> levelPos;
int actualLifes;
int actualLevel;
QString pixmapDirectory;
QStrList lifesPixmapName;
QStrList levelPixmapName;
QString lastLifesPixmapName;
QString lastLevelPixmapName;
QList<QPixmap> *loadPixmap(QWidget *parent, QString pixmapName,
QList<QPixmap> *pixmaps=0);
QList<QPixmap> *lifesPix;
QList<QPixmap> *levelPix;
int maxLevel;
int level;
int scheme;
int mode;
};
#endif // STATUS_H
|