class Gio::DBusActionGroup
- Gio::DBusActionGroup
- GObject::Object
- Reference
- Object
Overview
#GDBusActionGroup is an implementation of the #GActionGroup interface that can be used as a proxy for an action group that is exported over D-Bus with g_dbus_connection_export_action_group().
Included Modules
Defined in:
lib/gi-crystal/src/auto/gio-2.0/d_bus_action_group.crConstructors
-
.new
Initialize a new
DBusActionGroup
.
Class Method Summary
-
.g_type : UInt64
Returns the type id (GType) registered in GLib type system.
-
.get(connection : Gio::DBusConnection, bus_name : String?, object_path : String) : Gio::DBusActionGroup
Obtains a #GDBusActionGroup for the action group which is exported at the given @bus_name and @object_path.
Instance methods inherited from module Gio::RemoteActionGroup
activate_action_full(action_name : String, parameter : _?, platform_data : _) : Nil
activate_action_full,
change_action_state_full(action_name : String, value : _, platform_data : _) : Nil
change_action_state_full,
to_unsafe
to_unsafe
Class methods inherited from module Gio::RemoteActionGroup
g_type : UInt64
g_type
Instance methods inherited from module Gio::ActionGroup
action_added(action_name : String) : Nil
action_added,
action_added_signal
action_added_signal,
action_enabled(action_name : String) : Bool
action_enabled,
action_enabled_changed(action_name : String, enabled : Bool) : Nil
action_enabled_changed,
action_enabled_changed_signal
action_enabled_changed_signal,
action_parameter_type(action_name : String) : GLib::VariantType?
action_parameter_type,
action_removed(action_name : String) : Nil
action_removed,
action_removed_signal
action_removed_signal,
action_state(action_name : String) : GLib::Variant?
action_state,
action_state_changed(action_name : String, state : _) : Nil
action_state_changed,
action_state_changed_signal
action_state_changed_signal,
action_state_hint(action_name : String) : GLib::Variant?
action_state_hint,
action_state_type(action_name : String) : GLib::VariantType?
action_state_type,
activate_action(action_name : String, parameter : _?) : Nil
activate_action,
change_action_state(action_name : String, value : _) : Nil
change_action_state,
has_action(action_name : String) : Bool
has_action,
list_actions : Enumerable(String)
list_actions,
query_action(action_name : String, enabled : Bool) : Bool
query_action,
to_unsafe
to_unsafe
Class methods inherited from module Gio::ActionGroup
g_type : UInt64
g_type
Instance methods inherited from class GObject::Object
bind_property(source_property : String, target : GObject::Object, target_property : String, flags : GObject::BindingFlags) : GObject::Binding
bind_property,
bind_property_full(source_property : String, target : GObject::Object, target_property : String, flags : GObject::BindingFlags, transform_to : GObject::Closure, transform_from : GObject::Closure) : GObject::Binding
bind_property_full,
data(key : String) : Pointer(Void)?
data,
finalize
finalize,
freeze_notify : Nil
freeze_notify,
getv(names : Enumerable(String), values : Enumerable(_)) : Nil
getv,
notify(property_name : String) : Nil
notify,
notify_by_pspec(pspec : GObject::ParamSpec) : Nil
notify_by_pspec,
notify_signal
notify_signal,
property(property_name : String, value : _) : Nil
property,
qdata(quark : UInt32) : Pointer(Void)?
qdata,
ref_count : UInt32
ref_count,
run_dispose : Nil
run_dispose,
set_data(key : String, data : Pointer(Void)?) : Nil
set_data,
set_property(property_name : String, value : _) : Nil
set_property,
steal_data(key : String) : Pointer(Void)?
steal_data,
steal_qdata(quark : UInt32) : Pointer(Void)?
steal_qdata,
thaw_notify : Nil
thaw_notify,
to_unsafe : Pointer(Void)
to_unsafe,
watch_closure(closure : GObject::Closure) : Nil
watch_closure
Constructor methods inherited from class GObject::Object
cast(obj : GObject::Object) : self
cast,
cast?(obj : GObject::Object) : self?
cast?,
new(pointer : Pointer(Void), transfer : GICrystal::Transfer)new new, newv(object_type : UInt64, parameters : Enumerable(GObject::Parameter)) : self newv
Class methods inherited from class GObject::Object
compat_control(what : UInt64, data : Pointer(Void)?) : UInt64
compat_control,
g_type : UInt64
g_type,
interface_find_property(g_iface : GObject::TypeInterface, property_name : String) : GObject::ParamSpec
interface_find_property,
interface_list_properties(g_iface : GObject::TypeInterface) : Enumerable(GObject::ParamSpec)
interface_list_properties
Constructor Detail
Class Method Detail
Obtains a #GDBusActionGroup for the action group which is exported at the given @bus_name and @object_path.
The thread default main context is taken at the time of this call. All signals on the menu model (and any linked models) are reported with respect to this context. All calls on the returned menu model (and linked models) must also originate from this same context, with the thread default main context unchanged.
This call is non-blocking. The returned action group may or may not already be filled in. The correct thing to do is connect the signals for the action group to monitor for changes and then to call g_action_group_list_actions() to get the initial list.