blob: 5db3681932bedccb79776516f9d483bc4cc64cbf (
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
75
76
77
|
#ifndef HighScore_included
#define HighScore_included
#include <qdialog.h>
class QLineEdit;
class QComboBox;
class QLabel;
const int numScores = 10;
typedef struct HiScoreEntry {
QString name;
long board;
long score;
long elapsed;
};
typedef struct TableInstance {
QString name;
HiScoreEntry entries[numScores];
TableInstance *next;
};
class HighScore : public QDialog
{
Q_OBJECT
public:
HighScore
(
QWidget* parent = NULL,
const char* name = NULL
);
virtual ~HighScore();
int exec(QString &layout);
void checkHighScore(int score, int elapsed, long game, QString &board);
public slots:
void selectionChanged(int);
protected slots:
void nameChanged(const QString &s);
void reset();
private:
void addRow(int num); // generate one table row
void loadTables(); // initialise from saved
void saveTables(); // save to disc.
void getBoardName(QString in, QString &out);
void selectTable(const QString &name);
void setComboTo(const QString &to);
void copyTableToScreen(const QString &name);
QString &highScoreFile();
int selectedLine;
QLineEdit *lineEdit;
QLabel* numbersWidgets[numScores];
QLabel* boardWidgets[numScores];
QLabel* namesWidgets[numScores];
QLabel* scoresWidgets[numScores];
QLabel* elapsedWidgets[numScores];
QComboBox* combo;
QString filename;
TableInstance *tables;
TableInstance *currTable;
};
#endif // HighScore_included
|