summaryrefslogtreecommitdiffstats
path: root/kspaceduel/playerinfo.h
blob: e172c9826df31e7aacffe30072753c3bf6645c3b (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
#ifndef __PLAYER_INFO_H
#define __PLAYER_INFO_H

#include <qframe.h>
#include <qlabel.h>
class QPixmap;
#include <qlcdnumber.h>
#include <qcolor.h>

class PlayerInfo:public QFrame
{
   Q_OBJECT
public:
   PlayerInfo(int pnr,QWidget *parent=0,const char *name=0);
public slots:
   void setHitpoints(int h);
   void setEnergy(int e);
   void setWins(int w);
private:
   QPixmap* pix[4];
   int currentPixmap;
   QLabel lplayer,lenergy,lwins;
   QLCDNumber hitpoints,energy,wins;
};

#endif