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/libksirtet/lib/miscui.h

46 lines
873 B

#ifndef MISCUI_H
#define MISCUI_H
#include <tqcombobox.h>
#include <tqcheckbox.h>
//-----------------------------------------------------------------------------
class MeetingCheckBox : public TQWidget
{
TQ_OBJECT
public:
enum Type { Ready, NotReady, Excluded };
MeetingCheckBox(Type, bool owner, bool server, TQWidget *parent);
void setType(Type);
Type type() const;
signals:
void changed(int);
private slots:
void changedSlot();
private:
TQCheckBox *_ready, *_excluded;
};
//-----------------------------------------------------------------------------
class PlayerComboBox : public TQComboBox
{
TQ_OBJECT
public:
enum Type { Human = 0, AI, None };
PlayerComboBox(Type, bool canBeNone, bool acceptAI, TQWidget *parent);
Type type() const { return (Type)currentItem(); }
signals:
void changed(int);
};
#endif // MISCUI_H