Gio.PropertyAction¶
| Subclasses: | None |
|---|
Methods¶
| Inherited: | GObject.Object (37), Gio.Action (11) |
|---|---|
| Structs: | GObject.ObjectClass (5) |
| class | new (name, object, property_name) |
Virtual Methods¶
| Inherited: | GObject.Object (7), Gio.Action (8) |
|---|
Properties¶
| Inherited: | Gio.Action (5) |
|---|
| Name | Type | Flags | Short Description |
|---|---|---|---|
invert-boolean |
bool |
r/w/co | Whether to invert the value of a boolean property |
object |
GObject.Object |
w/co | The object with the property to wrap |
property-name |
str |
w/co | The name of the property to wrap |
Signals¶
| Inherited: | GObject.Object (1) |
|---|
Fields¶
| Inherited: | GObject.Object (1) |
|---|
Class Details¶
-
class
Gio.PropertyAction(**kwargs)¶ Bases: GObject.Object,Gio.ActionAbstract: No A
Gio.PropertyActionis a way to get aGio.Actionwith a state value reflecting and controlling the value of aGObject.Objectproperty.The state of the action will correspond to the value of the property. Changing it will change the property (assuming the requested value matches the requirements as specified in the
GObject.ParamSpec).Only the most common types are presently supported. Booleans are mapped to booleans, strings to strings, signed/unsigned integers to int32/uint32 and floats and doubles to doubles.
If the property is an enum then the state will be string-typed and conversion will automatically be performed between the enum value and “nick” string as per the
GObject.EnumValuetable.Flags types are not currently supported.
Properties of object types, boxed types and pointer types are not supported and probably never will be.
Properties of
GLib.Varianttypes are not currently supported.If the property is boolean-valued then the action will have a
Noneparameter type, and activating the action (with no parameter) will toggle the value of the property.In all other cases, the parameter type will correspond to the type of the property.
The general idea here is to reduce the number of locations where a particular piece of state is kept (and therefore has to be synchronised between).
Gio.PropertyActiondoes not have a separate state that is kept in sync with the property value – its state is the property value.For example, it might be useful to create a
Gio.Actioncorresponding to the “visible-child-name” property of a #GtkStack so that the current page can be switched from a menu. The active radio indication in the menu is then directly determined from the active page of the #GtkStack.An anti-example would be binding the “active-id” property on a #GtkComboBox. This is because the state of the combobox itself is probably uninteresting and is actually being used to control something else.
Another anti-example would be to bind to the “visible-child-name” property of a #GtkStack if this value is actually stored in
Gio.Settings. In that case, the real source of the value isGio.Settings. If you want aGio.Actionto control a setting stored inGio.Settings, seeGio.Settings.create_action() instead, and possibly combine its use withGio.Settings.bind().New in version 2.38.
-
classmethod
new(name, object, property_name)[source]¶ Parameters: - name (
str) – the name of the action to create - object (
GObject.Object) – the object that has the property to wrap - property_name (
str) – the name of the property
Returns: a new
Gio.PropertyActionReturn type: Creates a
Gio.Actioncorresponding to the value of property property_name on object.The property must be existent and readable and writable (and not construct-only).
This function takes a reference on object and doesn’t release it until the action is destroyed.
New in version 2.38.
- name (
-
classmethod
Property Details¶
-
Gio.PropertyAction.props.invert_boolean¶ Name: invert-booleanType: boolDefault Value: FalseFlags: READABLE,WRITABLE,CONSTRUCT_ONLYIf
True, the state of the action will be the negation of the property value, provided the property is boolean.New in version 2.46.
-
Gio.PropertyAction.props.object¶ Name: objectType: GObject.ObjectDefault Value: NoneFlags: WRITABLE,CONSTRUCT_ONLYThe object to wrap a property on.
The object must be a non-
NoneGObject.Objectwith properties.New in version 2.38.
-
Gio.PropertyAction.props.property_name¶ Name: property-nameType: strDefault Value: NoneFlags: WRITABLE,CONSTRUCT_ONLYThe name of the property to wrap on the object.
The property must exist on the passed-in object and it must be readable and writable (and not construct-only).
New in version 2.38.