Interface
MetaCloseDialog
Prerequisite
In order to implement CloseDialog, your type must inherit fromGObject
.
Instance methods
meta_close_dialog_focus
Call whenever dialog
should receive keyboard focus,
usually when the window would.
meta_close_dialog_response
Responds and closes the dialog. To be called by MetaCloseDialog
implementations.
Interface structure
struct MetaCloseDialogInterface {
GTypeInterface parent_iface;
void (* show) (
MetaCloseDialog* dialog
);
void (* hide) (
MetaCloseDialog* dialog
);
void (* focus) (
MetaCloseDialog* dialog
);
}
No description available.
Interface members
parent_iface |
|
No description available. |
|
show |
|
No description available. |
|
hide |
|
No description available. |
|
focus |
|
No description available. |
Virtual methods
Meta.CloseDialog.focus
Call whenever dialog
should receive keyboard focus,
usually when the window would.