Go to the
documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef QBUTTONGROUP_H
00043 #define QBUTTONGROUP_H
00044
00045 #include <QtCore/qobject.h>
00046
00047 QT_BEGIN_HEADER
00048
00049 QT_BEGIN_NAMESPACE
00050
00051 QT_MODULE(Gui)
00052
00053 #ifndef QT_NO_BUTTONGROUP
00054
00055 class QAbstractButton;
00056 class QAbstractButtonPrivate;
00057 class QButtonGroupPrivate;
00058
00059 class Q_GUI_EXPORT QButtonGroup : public QObject
00060 {
00061 Q_OBJECT
00062
00063 Q_PROPERTY(bool exclusive READ exclusive WRITE setExclusive)
00064 public:
00065 explicit QButtonGroup(QObject *parent = 0);
00066 ~QButtonGroup();
00067
00068 void setExclusive(bool);
00069 bool exclusive() const;
00070
00071 void addButton(QAbstractButton *);
00072 void addButton(QAbstractButton *, int id);
00073 void removeButton(QAbstractButton *);
00074
00075 QList<QAbstractButton*> buttons() const;
00076
00077 QAbstractButton * checkedButton() const;
00078
00079
00080 QAbstractButton *button(int id) const;
00081 void setId(QAbstractButton *button, int id);
00082 int id(QAbstractButton *button) const;
00083 int checkedId() const;
00084
00085 Q_SIGNALS:
00086 void buttonClicked(QAbstractButton *);
00087 void buttonClicked(int);
00088 void buttonPressed(QAbstractButton *);
00089 void buttonPressed(int);
00090 void buttonReleased(QAbstractButton *);
00091 void buttonReleased(int);
00092
00093 #ifdef QT3_SUPPORT
00094 public:
00095 inline QT3_SUPPORT void insert(QAbstractButton *b) { addButton(b); }
00096 inline QT3_SUPPORT void remove(QAbstractButton *b) { removeButton(b); }
00097 #endif
00098
00099 private:
00100 Q_DISABLE_COPY(QButtonGroup)
00101 Q_DECLARE_PRIVATE(QButtonGroup)
00102 friend class QAbstractButton;
00103 friend class QAbstractButtonPrivate;
00104 };
00105
00106 #endif // QT_NO_BUTTONGROUP
00107
00108 QT_END_NAMESPACE
00109
00110 QT_END_HEADER
00111
00112 #endif // QBUTTONGROUP_H