⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qbuttongroup.3qt

📁 Linux下的基于X11的图形开发环境。
💻 3QT
字号:
'\" t.TH QButtonGroup 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQButtonGroup \- Organizes QButton widgets in a group.SH SYNOPSIS\fC#include <qbuttongroup.h>\fR.PPInherits QGroupBox..PPInherited by QHButtonGroup and QVButtonGroup..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQButtonGroup\fR ( QWidget * parent = 0, const char * name = 0 )".br.ti -1c.BI "\fBQButtonGroup\fR ( const QString & title, QWidget * parent = 0, const char * name = 0 )".br.ti -1c.BI "\fBQButtonGroup\fR ( int strips, Orientation orientation, QWidget * parent = 0, const char * name = 0 )".br.ti -1c.BI "\fBQButtonGroup\fR ( int strips, Orientation orientation, const QString & title, QWidget * parent = 0, const char * name = 0 )".br.ti -1c.BI "bool \fBisExclusive\fR () const".br.ti -1c.BI "bool \fBisRadioButtonExclusive\fR () const".br.ti -1c.BI "virtual void \fBsetExclusive\fR ( bool )".br.ti -1c.BI "virtual void \fBsetRadioButtonExclusive\fR ( bool )".br.ti -1c.BI "int \fBinsert\fR ( QButton * button, int id = -1 )".br.ti -1c.BI "void \fBremove\fR ( QButton * button )".br.ti -1c.BI "QButton * \fBfind\fR ( int id ) const".br.ti -1c.BI "int \fBid\fR ( QButton * button ) const".br.ti -1c.BI "int \fBcount\fR () const".br.ti -1c.BI "virtual void \fBsetButton\fR ( int id )".br.ti -1c.BI "virtual void \fBmoveFocus\fR ( int key )".br.ti -1c.BI "QButton * \fBselected\fR () const".br.in -1c.SS "Signals".in +1c.ti -1c.BI "void \fBpressed\fR ( int id )".br.ti -1c.BI "void \fBreleased\fR ( int id )".br.ti -1c.BI "void \fBclicked\fR ( int id )".br.in -1c.SS "Properties".in +1c.ti -1c.BI "bool \fBexclusive\fR - whether the button group is exclusive".br.ti -1c.BI "bool \fBradioButtonExclusive\fR - whether the radio buttons in the group are exclusive".br.in -1c.SH DESCRIPTIONThe QButtonGroup widget organizes QButton widgets in a group..PPA 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..PPAn 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().).PPThere are two ways of using a button group:.TPThe 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 QButtonGroup can display a frame and a title because it inherits QGroupBox..TPThe 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..PPA 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 \fIon\fR with setButton(). The number of buttons in the group is returned by count()..PP.ce 1.B "[Image Omitted]".PP.ce 1.B "[Image Omitted]".PPSee also QPushButton, QCheckBox, QRadioButton, Widget Appearance and Style, Layout Management, and Organizers..SH MEMBER FUNCTION DOCUMENTATION.SH "QButtonGroup::QButtonGroup ( QWidget * parent = 0, const char * name = 0 )"Constructs a button group with no title..PPThe \fIparent\fR and \fIname\fR arguments are passed to the QWidget constructor..SH "QButtonGroup::QButtonGroup ( const QString & title, QWidget * parent = 0, const char * name = 0 )"Constructs a button group with the title \fItitle\fR..PPThe \fIparent\fR and \fIname\fR arguments are passed to the QWidget constructor..SH "QButtonGroup::QButtonGroup ( int strips, Orientation orientation, QWidget * parent = 0, const char * name = 0 )"Constructs a button group with no title. Child widgets will be arranged in \fIstrips\fR rows or columns (depending on \fIorientation\fR)..PPThe \fIparent\fR and \fIname\fR arguments are passed to the QWidget constructor..SH "QButtonGroup::QButtonGroup ( int strips, Orientation orientation, const QString & title, QWidget * parent = 0, const char * name = 0 )"Constructs a button group with title \fItitle\fR. Child widgets will be arranged in \fIstrips\fR rows or columns (depending on \fIorientation\fR)..PPThe \fIparent\fR and \fIname\fR arguments are passed to the QWidget constructor..SH "void QButtonGroup::clicked ( int id )\fC [signal]\fR"This signal is emitted when a button in the group is clicked. The \fIid\fR argument is the button's identifier..PPSee also insert()..PPExamples:.)l drawdemo/drawdemo.cpp and xform/xform.cpp..SH "int QButtonGroup::count () const"Returns the number of buttons in the group..SH "QButton * QButtonGroup::find ( int id ) const"Returns the button with the specified identifier \fIid\fR, or 0 if the button was not found..SH "int QButtonGroup::id ( QButton * button ) const"Returns the id of \fIbutton\fR, or -1 if \fIbutton\fR is not a member of this group..SH "int QButtonGroup::insert ( QButton * button, int id = -1 )"Inserts the \fIbutton\fR with the identifier \fIid\fR into the button group. Returns the button identifier..PPButtons 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..PPThe button is assigned the identifier \fIid\fR or an automatically generated identifier. It works as follows: If \fIid\fR >= 0, this identifier is assigned. If \fIid\fR == -1 (default), the identifier is equal to the number of buttons in the group. If \fIid\fR is any other negative integer, for instance -2, a unique identifier (negative integer <= -2) is generated. No button has an id of -1..PPSee also find(), remove(), and exclusive..PPExamples:.)l listbox/listbox.cpp and xform/xform.cpp..SH "bool QButtonGroup::isExclusive () const"Returns TRUE if the button group is exclusive; otherwise returns FALSE. See the "exclusive" property for details..SH "bool QButtonGroup::isRadioButtonExclusive () const"Returns TRUE if the radio buttons in the group are exclusive; otherwise returns FALSE. See the "radioButtonExclusive" property for details..SH "void QButtonGroup::moveFocus ( int key )\fC [virtual]\fR"Moves the keyboard focus according to \fIkey\fR, and if appropriate checks the new focus item..PPThis function does nothing unless the keyboard focus points to one of the button group members and \fIkey\fR is one of Key_Up, Key_Down, Key_Left and Key_Right..SH "void QButtonGroup::pressed ( int id )\fC [signal]\fR"This signal is emitted when a button in the group is pressed. The \fIid\fR argument is the button's identifier..PPSee also insert()..SH "void QButtonGroup::released ( int id )\fC [signal]\fR"This signal is emitted when a button in the group is released. The \fIid\fR argument is the button's identifier..PPSee also insert()..SH "void QButtonGroup::remove ( QButton * button )"Removes the \fIbutton\fR from the button group..PPSee also insert()..SH "QButton * QButtonGroup::selected () const"Returns the selected toggle button if exactly one is selected; otherwise returns 0..SH "void QButtonGroup::setButton ( int id )\fC [virtual]\fR"Sets the button with id \fIid\fR to be on; if this is an exclusive group, all the other buttons in the group will be set to off..SH "void QButtonGroup::setExclusive ( bool )\fC [virtual]\fR"Sets whether the button group is exclusive. See the "exclusive" property for details..SH "void QButtonGroup::setRadioButtonExclusive ( bool )\fC [virtual]\fR"Sets whether the radio buttons in the group are exclusive. See the "radioButtonExclusive" property for details..SS "Property Documentation".SH "bool exclusive"This property holds whether the button group is exclusive..PPIf 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..PPSet this property's value with setExclusive() and get this property's value with isExclusive()..SH "bool radioButtonExclusive"This property holds whether the radio buttons in the group are exclusive..PPIf this property is TRUE (the default), the radiobuttons in the group are treated exclusively..PPSet this property's value with setRadioButtonExclusive() and get this property's value with isRadioButtonExclusive()..SH "SEE ALSO".BR http://doc.trolltech.com/qbuttongroup.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qbuttongroup.3qt) and the Qtversion (3.1.1).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -