Panel.Statusbar¶
- Subclasses:
 None
Methods¶
- Inherited:
 Gtk.Widget (183), GObject.Object (37), Gtk.Accessible (17), Gtk.Buildable (1)
- Structs:
 
class  | 
  | 
  | 
|
  | 
|
  | 
Virtual Methods¶
- Inherited:
 Gtk.Widget (25), GObject.Object (7), Gtk.Accessible (6), Gtk.Buildable (9)
Properties¶
- Inherited:
 
Signals¶
- Inherited:
 
Fields¶
- Inherited:
 
Class Details¶
- class Panel.Statusbar(**kwargs)¶
 - Bases:
 - Abstract:
 No
- Structure:
 
A panel status bar is meant to be displayed at the bottom of the window. It can contain widgets in the prefix and in the suffix.
- classmethod new()¶
 - Returns:
 a newly created #PanelStatusBar.
- Return type:
 
Create a new
Panel.Statusbar.
- add_prefix(priority, widget)¶
 - Parameters:
 priority (
int) – the prioritywidget (
Gtk.Widget) – aGtk.Widgetto add.
Adds a widget into the prefix with priority. The higher the priority the closer to the start the widget will be added.
- add_suffix(priority, widget)¶
 - Parameters:
 priority (
int) – the prioritywidget (
Gtk.Widget) – aGtk.Widgetto add.
Adds a widget into the suffix with priority. The higher the priority the closer to the start the widget will be added.
- remove(widget)¶
 - Parameters:
 widget (
Gtk.Widget) – aGtk.Widgetto remove.
Removes widget from the
Panel.Statusbar.