Panel.Workspace¶
- Subclasses:
Methods¶
- Inherited:
Adw.ApplicationWindow (7), Gtk.ApplicationWindow (6), Gtk.Window (62), Gtk.Widget (181), GObject.Object (37), Gtk.Accessible (15), Gtk.Buildable (1), Gtk.Native (6), Gtk.Root (3), Gio.ActionGroup (14), Gio.ActionMap (5)
- Structs:
Panel.WorkspaceClass (2), Gtk.WidgetClass (18), GObject.ObjectClass (5)
class |
|
class |
|
class |
|
|
|
|
|
|
|
|
Virtual Methods¶
Properties¶
- Inherited:
Adw.ApplicationWindow (4), Gtk.ApplicationWindow (1), Gtk.Window (25), Gtk.Widget (34), Gtk.Accessible (1)
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r/w/en |
Signals¶
- Inherited:
Gtk.Window (5), Gtk.Widget (13), GObject.Object (1), Gio.ActionGroup (4)
Fields¶
- Inherited:
Gtk.Window (5), Gtk.Widget (13), GObject.Object (1), Gio.ActionGroup (4)
Name |
Type |
Access |
Description |
---|---|---|---|
parent_instance |
r |
Class Details¶
- class Panel.Workspace(*args, **kwargs)¶
- Bases:
- Abstract:
No
- Structure:
- classmethod find_from_widget(widget)¶
- Parameters:
widget (
Gtk.Widget
) – aGtk.Widget
- Returns:
a
Panel.Workspace
orNone
- Return type:
Finds the workspace that contains widget.
New in version 1.4.
- classmethod install_action(action_name, parameter_type, activate)¶
- Parameters:
action_name (
str
) – a prefixed action name, such as “project.open”activate (
Panel.ActionActivateFunc
) – callback to use when the action is activated
This should be called at class initialization time to specify actions to be added for all instances of this class.
Actions installed by this function are stateless. The only state they have is whether they are enabled or not.
- classmethod install_property_action(action_name, property_name)¶
- Parameters:
Installs an action called action_name on self and binds its state to the value of the property_name property.
This function will perform a few santity checks on the property selected via property_name. Namely, the property must exist, must be readable, writable and must not be construct-only. There are also restrictions on the type of the given property, it must be boolean, int, unsigned int, double or string. If any of these conditions are not met, a critical warning will be printed and no action will be added.
The state type of the action matches the property type.
If the property is boolean, the action will have no parameter and toggle the property value. Otherwise, the action will have a parameter of the same type as the property.
New in version 1.4.
- get_workbench()¶
- Returns:
a
Panel.Workbench
, orNone
- Return type:
Gets the
Panel.Workbench
self is a part of.New in version 1.4.
- inhibit(flags, reason)¶
- Parameters:
flags (
Gtk.ApplicationInhibitFlags
) – the inhibit flagsreason (
str
) – the reason for the inhibit
- Returns:
a
Panel.Inhibitor
orNone
- Return type:
Inhibits one or more particular actions in the session.
When the resulting
Panel.Inhibitor
releases it’s last reference the inhibitor will be dismissed. Alternatively, you may force the release of the inhibit usingPanel.Inhibitor.uninhibit
().New in version 1.4.