summaryrefslogtreecommitdiffstats
path: root/kolf/scoreboard.h
blob: dfb56ef6676bfe5a45ad02046d2b7c19167111c5 (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
#ifndef SCOREBOARD_H
#define SCOREBOARD_H

#include <tqtable.h>

class TQWidget;
class TQHeader;

class ScoreBoard : public TQTable
{
	TQ_OBJECT
  

public:
	ScoreBoard(TQWidget *parent = 0, const char *name = 0);
	int total(int id, TQString &name);

public slots:
	void newHole(int);
	void newPlayer(const TQString &name);
	void setScore(int id, int hole, int score);
	void parChanged(int hole, int par);

private:
	TQTable *table;
	TQHeader *vh;
	TQHeader *hh;
};

#endif