known subclasses: kiwi.ui.delegates.Delegate, kiwi.ui.delegates.GladeDelegate
A view with a toplevel window.
Function | __init__ | Creates a new SlaveView. Sets up self.toplevel and self.widgets |
Function | get_glade_adaptor | Special init code that subclasses may want to override. |
Function | _attach_callbacks | Undocumented |
Function | _setup_keypress_handler | Undocumented |
Function | set_transient_for | Makes the view a transient for another view; this is commonly done |
Function | set_title | Sets the view's window title |
Function | get_focus_widget | Returns the currently focused widget in the window |
Function | check_focus | Tests the focus in the window and prints a warning if no |
Function | hide | Hide the view's window |
Function | show_all | Shows all widgets attached to the toplevel widget |
Function | show | Show the view's window. |
Function | quit_if_last | Undocumented |
Function | hide_and_quit | Hides the current window and breaks the GTK+ event loop if this |
Creates a new SlaveView. Sets up self.toplevel and self.widgets and checks for reserved names.
Special init code that subclasses may want to override.
Makes the view a transient for another view; this is commonly done for dialogs, so the dialog window is managed differently than a top-level one.
Sets the view's window title
Returns the currently focused widget in the window
Tests the focus in the window and prints a warning if no widget is focused.
Hide the view's window
Shows all widgets attached to the toplevel widget
Show the view's window. If the parent argument is supplied and is a valid view, this view is set as a transient for the parent view.
Hides the current window and breaks the GTK+ event loop if this is the last window. Its method signature allows it to be used as a signal handler.