Gio.PropertyAction

g GObject.GInterface GObject.GInterface Gio.Action Gio.Action GObject.GInterface->Gio.Action GObject.Object GObject.Object Gio.PropertyAction Gio.PropertyAction GObject.Object->Gio.PropertyAction Gio.Action->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.Action

Abstract:

No

A Gio.PropertyAction is a way to get a Gio.Action with a state value reflecting and controlling the value of a GObject.Object property.

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.EnumValue table.

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.Variant types are not currently supported.

If the property is boolean-valued then the action will have a None parameter 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.PropertyAction does 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.Action corresponding 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 is Gio.Settings. If you want a Gio.Action to control a setting stored in Gio.Settings, see Gio.Settings.create_action() instead, and possibly combine its use with Gio.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.PropertyAction

Return type:

Gio.PropertyAction

Creates a Gio.Action corresponding 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.

Property Details

Gio.PropertyAction.props.invert_boolean
Name:

invert-boolean

Type:

bool

Default Value:

False

Flags:

READABLE, WRITABLE, CONSTRUCT_ONLY

If 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:

object

Type:

GObject.Object

Default Value:

None

Flags:

WRITABLE, CONSTRUCT_ONLY

The object to wrap a property on.

The object must be a non-None GObject.Object with properties.

New in version 2.38.

Gio.PropertyAction.props.property_name
Name:

property-name

Type:

str

Default Value:

None

Flags:

WRITABLE, CONSTRUCT_ONLY

The 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.