summaryrefslogtreecommitdiffstats
path: root/kolf/newgame.h
blob: 96dfb95bfaf027ace4118efbbbf8452502dbf892 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#ifndef NEWGAME_H
#define NEWGAME_H

#include <kdialogbase.h>
#include <klineedit.h>
#include <kcolorbutton.h>

#include <tqcheckbox.h>
#include <tqcolor.h>
#include <tqptrlist.h>
#include <tqstring.h>
#include <kpushbutton.h>
#include <tqstringlist.h>
#include <tqvaluelist.h>
#include <tqwidget.h>

#include "game.h"

class KLineEdit;
class TQFrame;
class TQVBoxLayout;
class TQVBox;
class TQPainter;
class TDEListBox;
class TQEvent;

class PlayerEditor : public TQWidget
{
	Q_OBJECT
  
	
public:
	PlayerEditor(TQString name = TQString(), TQColor = red, TQWidget *parent = 0, const char *_name = 0);
	TQColor color() { return colorButton->color(); }
	TQString name() { return editor->text(); }
	void setColor(TQColor col) { colorButton->setColor(col); }
	void setName(const TQString &newname) { editor->setText(newname); }

signals:
	void deleteEditor(PlayerEditor *editor);

private slots:
	void removeMe();

private:
	KLineEdit *editor;
	KColorButton *colorButton;
	TQPixmap grass;
};

class NewGameDialog : public KDialogBase
{
	Q_OBJECT
  

public:
	NewGameDialog(bool enableCourses, TQWidget *parent, const char *_name = 0);
	TQPtrList<PlayerEditor> *players() { return &editors; }
	bool competition() { return mode->isChecked(); }
	TQString course() { return currentCourse; }

public slots:
	void deleteEditor(PlayerEditor *);

protected slots:
	void slotOk();

private slots:
	void addPlayer();
	void courseSelected(int);
	void addCourse();
	void removeCourse();
	void selectionChanged();
	void showHighscores();

private:
	TQVBox *layout;
	KPushButton *addButton;
	TQFrame *playerPage;
	TQScrollView *scroller;
	TQFrame *coursePage;
	TQFrame *optionsPage;
	TQValueList<TQColor> startColors;
	TQPtrList<PlayerEditor> editors;
	KPushButton *remove;
	TQCheckBox *mode;

	TQPixmap grass;

	TQStringList names;
	TQStringList externCourses;
	TQMap<TQString, CourseInfo> info;

	TQStringList extraCourses;

	TDEListBox *courseList;
	TQLabel *name;
	TQLabel *author;
	TQLabel *par;
	TQLabel *holes;

	TQString currentCourse;

	void enableButtons();
	bool enableCourses;
};

#endif