Method
IdeActionMixininstall_property_action
Declaration
void
ide_action_mixin_install_property_action (
IdeActionMixin* mixin,
const char* action_name,
const char* property_name
)
Description
Installs an action called action_name
on mmixin
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.
This method is not directly available to language bindings.
Parameters
action_name
-
Type:
const char*
Name of the action.
The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. property_name
-
Type:
const char*
Name of the property in instances of
mixin
or any parent class.The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string.