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

#include <tqframe.h>
#include <tqlabel.h>
class TQPixmap;
#include <tqlcdnumber.h>
#include <tqcolor.h>

class PlayerInfo:public TQFrame
{
   Q_OBJECT
  TQ_OBJECT
public:
   PlayerInfo(int pnr,TQWidget *tqparent=0,const char *name=0);
public slots:
   void setHitpoints(int h);
   void setEnergy(int e);
   void setWins(int w);
private:
   TQPixmap* pix[4];
   int currentPixmap;
   TQLabel lplayer,lenergy,lwins;
   TQLCDNumber hitpoints,energy,wins;
};

#endif