Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The QButton class is the abstract base class of button widgets, providing functionality common to buttons. More...
#include <qbutton.h>
Inherits QWidget.
Inherited by QCheckBox, QPushButton, QRadioButton and QToolButton.
The QButton class is the abstract base class of button widgets, providing functionality common to buttons.
If you want to create a button use QPushButton.
The QButton class implements an abstract button, and lets subclasses specify how to reply to user actions and how to draw the button.
QButton provides both push and toggle buttons. The QRadioButton and QCheckBox classes provide only toggle buttons; QPushButton and QToolButton provide both toggle and push buttons.
Any button can have either a text or pixmap label. setText() sets the button to be a text button and setPixmap() sets it to be a pixmap button. The text/pixmap is manipulated as necessary to create the "disabled" appearance when the button is disabled.
QButton provides most of the states used for buttons:
The difference between isDown() and isOn() is as follows: When the user clicks a toggle button to toggle it on, the button is first pressed and then released into on state. When the user clicks it again (to toggle it off), the button moves first to the pressed state, then to the off state (isOn() and isDown() are both FALSE).
Default buttons (as used in many dialogs) are provided by QPushButton::setDefault() and QPushButton::setAutoDefault().
QButton provides five signals:
If the button is a text button with "&" in its text, QButton creates an automatic accelerator key. This code creates a push button labelled "Rock & Roll" (where the c is underscored). The button gets an automatic accelerator key, Alt+C:
QPushButton *p = new QPushButton( "Ro&ck && Roll", this );
In this example, when the user presses Alt+C the button will call animateClick().
You can also set a custom accelerator using the setAccel() function. This is useful mostly for pixmap buttons because they have no automatic accelerator.
QPushButton *p; p->setPixmap( QPixmap("print.png") ); p->setAccel( ALT+Key_F7 );
All of the buttons provided by Qt (QPushButton, QToolButton, QCheckBox and QRadioButton) can display both text and pixmaps.
To subclass QButton, you have to reimplement at least drawButton() (to draw the button's outline) and drawButtonLabel() (to draw its text or pixmap). It is generally advisable to reimplement sizeHint() as well, and sometimes hitButton() (to determine whether a button press is within the button).
To reduce flickering, QButton::paintEvent() sets up a pixmap that the drawButton() function draws in. You should not reimplement paintEvent() for a subclass of QButton unless you want to take over all drawing.
See also QButtonGroup and Abstract Widget Classes.
This enum defines the state of a toggle button at any moment. The possible values are as follows:
This enum type defines what a button can do in response to a mouse/keyboard press:
If parent is a QButtonGroup, this constructor calls QButtonGroup::insert().
Returns the accelerator associated with the button. See the "accel" property for details.
The pressed(), released(), clicked(), toggled(), and stateChanged() signals are emitted as appropriate.
This function does nothing if the button is disabled.
See also accel.
Returns TRUE if autoRepeat is enabled; otherwise returns FALSE. See the "autoRepeat" property for details.
Returns TRUE if autoResize is enabled; otherwise returns FALSE. See the "autoResize" property for details.
This signal is emitted when the button is activated (i.e. first pressed down and then released when the mouse cursor is inside the button), when the accelerator key is typed or when animateClick() is called.
The QButtonGroup::clicked() signal does the same job, if you want to connect several buttons to the same slot.
See also pressed(), released() and toggled().
Examples: fonts/simple-qfont-demo/viewer.cpp, listbox/listbox.cpp, network/clientserver/client/client.cpp, network/ftpclient/ftpmainwindow.cpp, richtext/richtext.cpp, t2/main.cpp and t4/main.cpp.
This virtual function is reimplemented by subclasses to draw real buttons. At some point in time, these reimplementations are supposed to call drawButtonLabel().
See also drawButtonLabel() and paintEvent().
This virtual function is reimplemented by subclasses to draw real buttons. It's invoked by drawButton().
See also drawButton() and paintEvent().
Example: tictac/tictac.cpp.
If the button is not a member of any QButtonGroup, this function returns 0.
See also QButtonGroup.
By default, the clickable area is the entire widget. Subclasses may reimplement it, though.
Returns TRUE if the button is pressed; otherwise returns FALSE. See the "down" property for details.
Returns TRUE if the button is an exclusive toggle; otherwise returns FALSE. See the "exclusiveToggle" property for details.
Returns TRUE if the button is toggled; otherwise returns FALSE. See the "on" property for details.
Returns TRUE if the button is a toggle button; otherwise returns FALSE. See the "toggleButton" property for details.
See also drawButton() and drawButtonLabel().
Reimplemented from QWidget.
Returns the pixmap shown on the button. See the "pixmap" property for details.
See also released() and clicked().
Examples: network/httpd/httpd.cpp and popup/popup.cpp.
See also pressed(), clicked() and toggled().
Sets the accelerator associated with the button. See the "accel" property for details.
Sets whether autoRepeat is enabled. See the "autoRepeat" property for details.
Sets whether autoResize is enabled. See the "autoResize" property for details.
Sets whether the button is pressed. See the "down" property for details.
Sets the state of this button to On when on is TRUE, otherwise to Off.
See also toggleState.
Sets the pixmap shown on the button. See the "pixmap" property for details.
Sets the toggle state of the button to s. s can be Off, NoChange or On.
Sets the text shown on the button. See the "text" property for details.
See also toggleButton.
type can be set to SingleShot, Toggle and TriState.
Returns TRUE if the button is toggled; otherwise returns FALSE. See the "toggleState" property for details.
This may be the result of a user action, toggle() slot activation, setState(), or because setOn() was called.
See also clicked().
Returns the text shown on the button. See the "text" property for details.
See also on, setOn(), toggled() and toggleButton.
Returns the type of toggle on the button. See the "toggleType" property for details.
This may be the result of a user action, toggle() slot activation, or because setOn() was called.
See also clicked().
Example: listbox/listbox.cpp.
This property holds the accelerator associated with the button.
This property is 0 if there is no accelerator set. If you set this property to 0 then any current accelerator is removed.
Set this property's value with setAccel() and get this property's value with accel().
This property holds whether autoRepeat is enabled.
If autoRepeat is enabled then the clicked() signal is emitted at regular intervals if the button is down. This property has no effect on toggle buttons. autoRepeat is off by default.
Set this property's value with setAutoRepeat() and get this property's value with autoRepeat().
This property holds whether autoResize is enabled.
This property is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.
If autoResize is enabled then the button will resize itself whenever the contents are changed.
Set this property's value with setAutoResize() and get this property's value with autoResize().
This property holds whether the button is pressed.
If this property is TRUE, the button is set to be pressed down. The signals pressed() and clicked() are not emitted if you set this property to TRUE. The default is FALSE.
Set this property's value with setDown() and get this property's value with isDown().
This property holds whether the button is an exclusive toggle.
If this property is TRUE and the button is in a QButtonGroup, the button can only be toggled off by another one being toggled on. The default is FALSE.
Get this property's value with isExclusiveToggle().
This property holds whether the button is toggled.
This property should only be set for toggle buttons.
Get this property's value with isOn().
This property holds the pixmap shown on the button.
If the pixmap is monochrome (i.e., it is a QBitmap or its depth is 1) and it does not have a mask, this property will set the pixmap to be its own mask. The purpose of this is to draw transparent bitmaps which are important for toggle buttons, for example.
pixmap() returns 0 if no pixmap was set.
Set this property's value with setPixmap() and get this property's value with pixmap().
This property holds the text shown on the button.
This property will return a null string if the button has no text. If the text has an ampersand ('&') in it, then an accelerator is automatically created for it using the character after the '&' as the accelerator key.
There is no default text.
Set this property's value with setText() and get this property's value with text().
This property holds whether the button is a toggle button.
The default value is FALSE.
Get this property's value with isToggleButton().
This property holds whether the button is toggled.
If this is property is changed then it does not cause the button to be repainted.
Get this property's value with state().
This property holds the type of toggle on the button.
The default toggle type is SingleShot.
Get this property's value with toggleType().
This file is part of the Qt toolkit. Copyright © 1995-2002 Trolltech. All Rights Reserved.
Copyright © 2002 Trolltech | Trademarks | Qt version 3.0.4
|