Q3ButtonGroup Class

The Q3ButtonGroup widget organizes QAbstractButton widgets in a group. 更多...

头: #include <Q3ButtonGroup>
继承: Q3GroupBox
继承者: Q3HButtonGroup and Q3VButtonGroup

特性

公共函数

Q3ButtonGroup (QWidget * parent = 0, const char * name = 0)
Q3ButtonGroup (const QString & title , QWidget * parent = 0, const char * name = 0)
Q3ButtonGroup (int strips , Qt::Orientation orientation , QWidget * parent = 0, const char * name = 0)
Q3ButtonGroup (int strips , Qt::Orientation orientation , const QString & title , QWidget * parent = 0, const char * name = 0)
~Q3ButtonGroup ()
int count () const
QAbstractButton * find (int id ) const
int id (QAbstractButton * button ) const
int insert (QAbstractButton * button , int id = -1)
bool isExclusive () const
bool isRadioButtonExclusive () const
void remove (QAbstractButton * button )
QAbstractButton * selected () const
int selectedId () const
void setButton (int id )
void setExclusive (bool)
void setRadioButtonExclusive (bool)

信号

void clicked (int id )
void pressed (int id )
void released (int id )

重实现保护函数

virtual bool event (QEvent * e )

额外继承成员

详细描述

The Q3ButtonGroup widget organizes QAbstractButton widgets in a group.

A button group widget makes it easier to deal with groups of buttons. Each button in a button group has a unique identifier. The button group emits a clicked () signal with this identifier when a button in the group is clicked. This makes a button group particularly useful when you have several similar buttons and want to connect all their clicked () signals to a single slot.

An exclusive button group switches off all toggle buttons except the one that was clicked. A button group is, by default, non-exclusive. Note that all radio buttons that are inserted into a button group are mutually exclusive even if the button group is non-exclusive. (See setRadioButtonExclusive ().)

There are two ways of using a button group:

  • The button group is the parent widget of a number of buttons, i.e. the button group is the parent argument in the button constructor. The buttons are assigned identifiers 0, 1, 2, etc., in the order they are created. A Q3ButtonGroup can display a frame and a title because it inherits Q3GroupBox .
  • The button group is an invisible widget and the contained buttons have some other parent widget. In this usage, each button must be manually inserted, using insert (), into the button group and given an identifier.

A button can be removed from the group with remove (). A pointer to a button with a given id can be obtained using find (). The id of a button is available using id (). A button can be set on with setButton (). The number of buttons in the group is returned by count ().

另请参阅 QPushButton , QCheckBox ,和 QRadioButton .

特性文档编制

exclusive : bool

This property holds whether the button group is exclusive.

If this property is true, then the buttons in the group are toggled, and to untoggle a button you must click on another button in the group. The default value is false.

访问函数:

bool isExclusive () const
void setExclusive (bool)

radioButtonExclusive : bool

This property holds whether the radio buttons in the group are exclusive.

If this property is true (the default), the radio buttons in the group are treated exclusively.

访问函数:

bool isRadioButtonExclusive () const
void setRadioButtonExclusive (bool)

selectedId : int

This property holds the id of the selected toggle button.

If no toggle button is selected, id () returns -1.

If setButton() is called on an exclusive group, the button with the given id will be set to on and all the others will be set to off.

访问函数:

int selectedId () const
void setButton (int id )

另请参阅 selected ().

成员函数文档编制

Q3ButtonGroup:: Q3ButtonGroup ( QWidget * parent = 0, const char * name = 0)

Constructs a button group with no title.

The parent and name 自变量被传递给 QWidget 构造函数。

Q3ButtonGroup:: Q3ButtonGroup (const QString & title , QWidget * parent = 0, const char * name = 0)

Constructs a button group with the title title .

The parent and name 自变量被传递给 QWidget 构造函数。

Q3ButtonGroup:: Q3ButtonGroup ( int strips , Qt::Orientation orientation , QWidget * parent = 0, const char * name = 0)

Constructs a button group with no title. Child widgets will be arranged in strips rows or columns (depending on orientation ).

The parent and name 自变量被传递给 QWidget 构造函数。

Q3ButtonGroup:: Q3ButtonGroup ( int strips , Qt::Orientation orientation , const QString & title , QWidget * parent = 0, const char * name = 0)

Constructs a button group with title title . Child widgets will be arranged in strips rows or columns (depending on orientation ).

The parent and name 自变量被传递给 QWidget 构造函数。

Q3ButtonGroup:: ~Q3ButtonGroup ()

析构函数。

[signal] void Q3ButtonGroup:: clicked ( int id )

This signal is emitted when a button in the group is clicked id argument is the button's identifier.

另请参阅 insert ().

int Q3ButtonGroup:: count () const

Returns the number of buttons in the group.

[virtual protected] bool Q3ButtonGroup:: event ( QEvent * e )

重实现自 QObject::event ().

QAbstractButton * Q3ButtonGroup:: find ( int id ) const

Returns the button with the specified identifier id , or 0 if the button was not found.

int Q3ButtonGroup:: id ( QAbstractButton * button ) const

Returns the id of button ,或 -1 若 button is not a member of this group.

另请参阅 selectedId ().

int Q3ButtonGroup:: insert ( QAbstractButton * button , int id = -1)

插入 button with the identifier id into the button group. Returns the button identifier.

Buttons are normally inserted into a button group automatically by passing the button group as the parent when the button is constructed. So it is not necessary to manually insert buttons that have this button group as their parent widget. An exception is when you want custom identifiers instead of the default 0, 1, 2, etc., or if you want the buttons to have some other parent.

The button is assigned the identifier id or an automatically generated identifier. It works as follows: If id >= 0, this identifier is assigned. If id == -1 (default), the identifier is equal to the number of buttons in the group. If id is any other negative integer, for instance -2, a unique identifier (negative integer <= -2) is generated. No button has an id of -1.

另请参阅 find (), remove (),和 setExclusive ().

[signal] void Q3ButtonGroup:: pressed ( int id )

This signal is emitted when a button in the group is pressed id argument is the button's identifier.

另请参阅 insert ().

[signal] void Q3ButtonGroup:: released ( int id )

This signal is emitted when a button in the group is released id argument is the button's identifier.

另请参阅 insert ().

void Q3ButtonGroup:: remove ( QAbstractButton * button )

移除 button 从按钮组。

另请参阅 insert ().

QAbstractButton * Q3ButtonGroup:: selected () const

Returns the selected toggle button if exactly one is selected; otherwise returns 0.

另请参阅 selectedId ().