You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kolf/scoreboard.h

31 lines
473 B

#ifndef SCOREBOARD_H
#define SCOREBOARD_H
#include <tqtable.h>
class TQWidget;
class TQHeader;
class ScoreBoard : public TQTable
{
Q_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