blob: 7de5dfbcc4d47b79b538f56f0bb86b7a8f3c8e23 (
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
|
#ifndef MISCUI_H
#define MISCUI_H
#include <qcombobox.h>
#include <qcheckbox.h>
//-----------------------------------------------------------------------------
class MeetingCheckBox : public QWidget
{
Q_OBJECT
public:
enum Type { Ready, NotReady, Excluded };
MeetingCheckBox(Type, bool owner, bool server, QWidget *parent);
void setType(Type);
Type type() const;
signals:
void changed(int);
private slots:
void changedSlot();
private:
QCheckBox *_ready, *_excluded;
};
//-----------------------------------------------------------------------------
class PlayerComboBox : public QComboBox
{
Q_OBJECT
public:
enum Type { Human = 0, AI, None };
PlayerComboBox(Type, bool canBeNone, bool acceptAI, QWidget *parent);
Type type() const { return (Type)currentItem(); }
signals:
void changed(int);
};
#endif // MISCUI_H
|