diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | c90c389a8a8d9d8661e9772ec4144c5cf2039f23 (patch) | |
tree | 6d8391395bce9eaea4ad78958617edb20c6a7573 /kolf/newgame.h | |
download | tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.tar.gz tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kolf/newgame.h')
-rw-r--r-- | kolf/newgame.h | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/kolf/newgame.h b/kolf/newgame.h new file mode 100644 index 00000000..b9770a80 --- /dev/null +++ b/kolf/newgame.h @@ -0,0 +1,106 @@ +#ifndef NEWGAME_H +#define NEWGAME_H + +#include <kdialogbase.h> +#include <klineedit.h> +#include <kcolorbutton.h> + +#include <qcheckbox.h> +#include <qcolor.h> +#include <qptrlist.h> +#include <qstring.h> +#include <kpushbutton.h> +#include <qstringlist.h> +#include <qvaluelist.h> +#include <qwidget.h> + +#include "game.h" + +class KLineEdit; +class QFrame; +class QVBoxLayout; +class QVBox; +class QPainter; +class KListBox; +class QEvent; + +class PlayerEditor : public QWidget +{ + Q_OBJECT + +public: + PlayerEditor(QString name = QString::null, QColor = red, QWidget *parent = 0, const char *_name = 0); + QColor color() { return colorButton->color(); } + QString name() { return editor->text(); } + void setColor(QColor col) { colorButton->setColor(col); } + void setName(const QString &newname) { editor->setText(newname); } + +signals: + void deleteEditor(PlayerEditor *editor); + +private slots: + void removeMe(); + +private: + KLineEdit *editor; + KColorButton *colorButton; + QPixmap grass; +}; + +class NewGameDialog : public KDialogBase +{ + Q_OBJECT + +public: + NewGameDialog(bool enableCourses, QWidget *parent, const char *_name = 0); + QPtrList<PlayerEditor> *players() { return &editors; } + bool competition() { return mode->isChecked(); } + QString 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: + QVBox *layout; + KPushButton *addButton; + QFrame *playerPage; + QScrollView *scroller; + QFrame *coursePage; + QFrame *optionsPage; + QValueList<QColor> startColors; + QPtrList<PlayerEditor> editors; + KPushButton *remove; + QCheckBox *mode; + + QPixmap grass; + + QStringList names; + QStringList externCourses; + QMap<QString, CourseInfo> info; + + QStringList extraCourses; + + KListBox *courseList; + QLabel *name; + QLabel *author; + QLabel *par; + QLabel *holes; + + QString currentCourse; + + void enableButtons(); + bool enableCourses; +}; + +#endif |