class KDialogButtonBox |
|
Container widget for buttons.
An extension of QDialogButtonBox which allow the use of KGuiItem and conveniance slot connection.
Author Mario Weilguni |
|
Create an empty container for buttons.
If _orientation is Vertical, the buttons inserted with addButton() are laid out from top to bottom, otherwise they are laid out from left to right. |
|
|
Creates a push button with the given text, adds it to the button box for the specified role, and returns the corresponding push button.
If role is invalid, no button is created, and zero is returned.
The clicked signal of the button is automatically connected to the slot text - the text of the button to add. role - the button role receiver - An object to connect to. slot - A Qt slot to connect the 'clicked()' signal to. Returns A pointer to the new button. |
|
Creates a push button with the given KUiItem, adds it to the button box for the specified role, and returns the corresponding push button.
If role is invalid, the button is created, but not added.
The clicked signal of the button is automatically connected to the slot guiitem - text and icon on the button role - the button role receiver - An object to connect to. slot - A Qt slot to connect the 'clicked()' signal to. Returns A pointer to the new button. |