Interface

MetaCloseDialog

since: 13

Description

interface Meta.CloseDialog : GObject.Object
No description available.

Available since: 13

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.

since: 13

meta_close_dialog_hide

Hides the close dialog.

since: 13

meta_close_dialog_is_visible

Returns whether dialog is currently visible.

since: 13

meta_close_dialog_response

Responds and closes the dialog. To be called by MetaCloseDialog implementations.

since: 13

meta_close_dialog_show

Shows the close dialog.

since: 13

Properties

Meta.CloseDialog:window
No description available.

since: 13

Signals

Meta.CloseDialog::response
No description available.

since: 13

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
GTypeInterface
 No description available.
show
void (* show) (
    MetaCloseDialog* dialog
  )
 No description available.
hide
void (* hide) (
    MetaCloseDialog* dialog
  )
 No description available.
focus
void (* focus) (
    MetaCloseDialog* dialog
  )
 No description available.

Virtual methods

Meta.CloseDialog.focus

Call whenever dialog should receive keyboard focus, usually when the window would.

since: 13

Meta.CloseDialog.hide

Hides the close dialog.

since: 13

Meta.CloseDialog.show

Shows the close dialog.

since: 13