Inheritance diagram for Dialog:
Public Member Functions | |
Response | run () |
Make the dialog modal and show it. | |
this () | |
Creates a new dialog. | |
this (char[] title) | |
Creates a new dialog with a title. | |
VBox | getVBox () |
Gets the Dialog VBox, it's main container. | |
this (String title, Window parent, DialogFlags flags, String[] buttonsText, Response[] responses) | |
Creates a new dialog with a set of buttons. | |
this (String title, Window parent, DialogFlags flags, Stock[] buttons, Response[] responses) | |
Creates a new dialog with a set of buttons from the stock. | |
void | addActionWidget (Widget child, Response response) |
Adds an activatable widget to the action area of a GtkDialog. | |
Button | addButton (String buttonText, Response responseID) |
Adds a button to this dialog. | |
Button | addButton (Stock stockID, Response responseID) |
Adds a button to this dialog. | |
void | addButtons (String[] buttonsText, Response[] responses) |
Add buttons to the dialog. | |
void | addButtons (Stock[] stockID, Response[] responses) |
Add stock buttons to the dialog. | |
void | setReponseSensitive (Response response, bit setting) |
Calls gtk_widget_set_sensitive (widget, setting) for each widget in the dialog's action area with the given response_id. | |
void | setDefaultResponse (Response response) |
Sets the default response for this dialog. | |
void | setHasSeparator (bit setting) |
Setst if this dialog should have a separator ??? | |
bit | getHasSeparator () |
Cheks if this dialog has a separator ??? | |
Static Public Member Functions | |
GType | getType () |
gets this class Type |
|
Adds an activatable widget to the action area of a GtkDialog. connecting a signal handler that will emit the "response" signal on the dialog when the widget is activated. The widget is appended to the end of the dialog's action area. If you want to add a non-activatable widget, simply pack it into the action_area field of the GtkDialog struct.
|
|
Adds a button to this dialog.
|
|
Adds a button to this dialog.
|
|
Add stock buttons to the dialog.
|
|
Add buttons to the dialog.
|
|
Cheks if this dialog has a separator ???
|
|
gets this class Type
Reimplemented in FileSelection, FontSelectionDialog, InputDialog, and MessageDialog. |
|
Gets the Dialog VBox, it's main container.
|
|
Make the dialog modal and show it.
|
|
Sets the default response for this dialog.
|
|
Setst if this dialog should have a separator ???
|
|
Calls gtk_widget_set_sensitive (widget, setting) for each widget in the dialog's action area with the given response_id. A convenient way to sensitize/desensitize dialog buttons.
|
|
Creates a new dialog with a set of buttons from the stock.
|
|
Creates a new dialog with a set of buttons.
|
|
Creates a new dialog with a title.
Reimplemented in ColorSelectionDialog, and FileSelection. |
|
Creates a new dialog.
Reimplemented in InputDialog. |