Top | ![]() |
![]() |
![]() |
![]() |
GInterface ╰── EDBusCalendarView GObject ├── GDBusInterfaceSkeleton │ ╰── EDBusCalendarViewSkeleton ╰── GDBusProxy ╰── EDBusCalendarViewProxy
EDBusCalendarViewProxy implements GDBusInterface, GInitable, GAsyncInitable and EDBusCalendarView.
EDBusCalendarViewSkeleton implements GDBusInterface and EDBusCalendarView.
EDBusCalendarView is implemented by EDBusCalendarViewProxy and EDBusCalendarViewSkeleton.
GDBusInterfaceInfo *
e_dbus_calendar_view_interface_info (void
);
Gets a machine-readable description of the org.gnome.evolution.dataserver.CalendarView D-Bus interface.
Since: 3.32
guint e_dbus_calendar_view_override_properties (GObjectClass *klass
,guint property_id_begin
);
Overrides all GObject properties in the EDBusCalendarView interface for a concrete class. The properties are overridden in the order they are defined.
klass |
The class structure for a GObject derived class. |
|
property_id_begin |
The property id to assign to the first overridden property. |
Since: 3.32
void e_dbus_calendar_view_complete_start (EDBusCalendarView *object
,GDBusMethodInvocation *invocation
);
Helper function used in service implementations to finish handling invocations of the Start()
D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error()
or similar.
This method will free invocation
, you cannot use it afterwards.
Since: 3.32
void e_dbus_calendar_view_complete_stop (EDBusCalendarView *object
,GDBusMethodInvocation *invocation
);
Helper function used in service implementations to finish handling invocations of the Stop()
D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error()
or similar.
This method will free invocation
, you cannot use it afterwards.
Since: 3.32
void e_dbus_calendar_view_complete_set_flags (EDBusCalendarView *object
,GDBusMethodInvocation *invocation
);
Helper function used in service implementations to finish handling invocations of the SetFlags()
D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error()
or similar.
This method will free invocation
, you cannot use it afterwards.
Since: 3.32
void e_dbus_calendar_view_complete_set_fields_of_interest (EDBusCalendarView *object
,GDBusMethodInvocation *invocation
);
Helper function used in service implementations to finish handling invocations of the SetFieldsOfInterest()
D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error()
or similar.
This method will free invocation
, you cannot use it afterwards.
Since: 3.32
void e_dbus_calendar_view_complete_dispose (EDBusCalendarView *object
,GDBusMethodInvocation *invocation
);
Helper function used in service implementations to finish handling invocations of the Dispose()
D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error()
or similar.
This method will free invocation
, you cannot use it afterwards.
Since: 3.32
void e_dbus_calendar_view_emit_objects_added (EDBusCalendarView *object
,const gchar *const *arg_objects
);
Emits the "ObjectsAdded" D-Bus signal.
Since: 3.32
void e_dbus_calendar_view_emit_objects_modified (EDBusCalendarView *object
,const gchar *const *arg_objects
);
Emits the "ObjectsModified" D-Bus signal.
Since: 3.32
void e_dbus_calendar_view_emit_objects_removed (EDBusCalendarView *object
,const gchar *const *arg_uids
);
Emits the "ObjectsRemoved" D-Bus signal.
Since: 3.32
void e_dbus_calendar_view_emit_progress (EDBusCalendarView *object
,guint arg_percent
,const gchar *arg_message
);
Emits the "Progress" D-Bus signal.
object |
||
arg_percent |
Argument to pass with the signal. |
|
arg_message |
Argument to pass with the signal. |
Since: 3.32
void e_dbus_calendar_view_emit_complete (EDBusCalendarView *object
,const gchar *arg_error_name
,const gchar *arg_error_message
);
Emits the "Complete" D-Bus signal.
object |
||
arg_error_name |
Argument to pass with the signal. |
|
arg_error_message |
Argument to pass with the signal. |
Since: 3.32
void e_dbus_calendar_view_call_start (EDBusCalendarView *proxy
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously invokes the Start()
D-Bus method on proxy
.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_call_start_finish()
to get the result of the operation.
See e_dbus_calendar_view_call_start_sync()
for the synchronous, blocking version of this method.
proxy |
||
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied or |
|
user_data |
User data to pass to |
Since: 3.32
gboolean e_dbus_calendar_view_call_start_finish (EDBusCalendarView *proxy
,GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_call_start()
.
proxy |
||
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
Since: 3.32
gboolean e_dbus_calendar_view_call_start_sync (EDBusCalendarView *proxy
,GCancellable *cancellable
,GError **error
);
Synchronously invokes the Start()
D-Bus method on proxy
. The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_call_start()
for the asynchronous version of this method.
proxy |
||
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
Since: 3.32
void e_dbus_calendar_view_call_stop (EDBusCalendarView *proxy
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously invokes the Stop()
D-Bus method on proxy
.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_call_stop_finish()
to get the result of the operation.
See e_dbus_calendar_view_call_stop_sync()
for the synchronous, blocking version of this method.
proxy |
||
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied or |
|
user_data |
User data to pass to |
Since: 3.32
gboolean e_dbus_calendar_view_call_stop_finish (EDBusCalendarView *proxy
,GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_call_stop()
.
proxy |
||
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
Since: 3.32
gboolean e_dbus_calendar_view_call_stop_sync (EDBusCalendarView *proxy
,GCancellable *cancellable
,GError **error
);
Synchronously invokes the Stop()
D-Bus method on proxy
. The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_call_stop()
for the asynchronous version of this method.
proxy |
||
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
Since: 3.32
void e_dbus_calendar_view_call_set_flags (EDBusCalendarView *proxy
,guint arg_flags
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously invokes the SetFlags()
D-Bus method on proxy
.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_call_set_flags_finish()
to get the result of the operation.
See e_dbus_calendar_view_call_set_flags_sync()
for the synchronous, blocking version of this method.
proxy |
||
arg_flags |
Argument to pass with the method invocation. |
|
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied or |
|
user_data |
User data to pass to |
Since: 3.32
gboolean e_dbus_calendar_view_call_set_flags_finish (EDBusCalendarView *proxy
,GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_call_set_flags()
.
proxy |
||
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
Since: 3.32
gboolean e_dbus_calendar_view_call_set_flags_sync (EDBusCalendarView *proxy
,guint arg_flags
,GCancellable *cancellable
,GError **error
);
Synchronously invokes the SetFlags()
D-Bus method on proxy
. The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_call_set_flags()
for the asynchronous version of this method.
proxy |
||
arg_flags |
Argument to pass with the method invocation. |
|
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
Since: 3.32
void e_dbus_calendar_view_call_set_fields_of_interest (EDBusCalendarView *proxy
,const gchar *const *arg_only_fields
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously invokes the SetFieldsOfInterest()
D-Bus method on proxy
.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_call_set_fields_of_interest_finish()
to get the result of the operation.
See e_dbus_calendar_view_call_set_fields_of_interest_sync()
for the synchronous, blocking version of this method.
proxy |
||
arg_only_fields |
Argument to pass with the method invocation. |
|
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied or |
|
user_data |
User data to pass to |
Since: 3.32
gboolean e_dbus_calendar_view_call_set_fields_of_interest_finish (EDBusCalendarView *proxy
,GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_call_set_fields_of_interest()
.
proxy |
||
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
Since: 3.32
gboolean e_dbus_calendar_view_call_set_fields_of_interest_sync (EDBusCalendarView *proxy
,const gchar *const *arg_only_fields
,GCancellable *cancellable
,GError **error
);
Synchronously invokes the SetFieldsOfInterest()
D-Bus method on proxy
. The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_call_set_fields_of_interest()
for the asynchronous version of this method.
proxy |
||
arg_only_fields |
Argument to pass with the method invocation. |
|
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
Since: 3.32
void e_dbus_calendar_view_call_dispose (EDBusCalendarView *proxy
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously invokes the Dispose()
D-Bus method on proxy
.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_call_dispose_finish()
to get the result of the operation.
See e_dbus_calendar_view_call_dispose_sync()
for the synchronous, blocking version of this method.
proxy |
||
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied or |
|
user_data |
User data to pass to |
Since: 3.32
gboolean e_dbus_calendar_view_call_dispose_finish (EDBusCalendarView *proxy
,GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_call_dispose()
.
proxy |
||
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
Since: 3.32
gboolean e_dbus_calendar_view_call_dispose_sync (EDBusCalendarView *proxy
,GCancellable *cancellable
,GError **error
);
Synchronously invokes the Dispose()
D-Bus method on proxy
. The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_call_dispose()
for the asynchronous version of this method.
proxy |
||
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
Since: 3.32
void e_dbus_calendar_view_proxy_new (GDBusConnection *connection
,GDBusProxyFlags flags
,const gchar *name
,const gchar *object_path
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously creates a proxy for the D-Bus interface org.gnome.evolution.dataserver.CalendarView. See g_dbus_proxy_new()
for more details.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_proxy_new_finish()
to get the result of the operation.
See e_dbus_calendar_view_proxy_new_sync()
for the synchronous, blocking version of this constructor.
connection |
||
flags |
Flags from the GDBusProxyFlags enumeration. |
|
name |
A bus name (well-known or unique) or |
[nullable] |
object_path |
An object path. |
|
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied. |
|
user_data |
User data to pass to |
Since: 3.32
EDBusCalendarView * e_dbus_calendar_view_proxy_new_finish (GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_proxy_new()
.
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
The constructed proxy object or NULL
if error
is set.
[transfer full][type EDBusCalendarViewProxy]
Since: 3.32
EDBusCalendarView * e_dbus_calendar_view_proxy_new_sync (GDBusConnection *connection
,GDBusProxyFlags flags
,const gchar *name
,const gchar *object_path
,GCancellable *cancellable
,GError **error
);
Synchronously creates a proxy for the D-Bus interface org.gnome.evolution.dataserver.CalendarView. See g_dbus_proxy_new_sync()
for more details.
The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_proxy_new()
for the asynchronous version of this constructor.
connection |
||
flags |
Flags from the GDBusProxyFlags enumeration. |
|
name |
A bus name (well-known or unique) or |
[nullable] |
object_path |
An object path. |
|
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
The constructed proxy object or NULL
if error
is set.
[transfer full][type EDBusCalendarViewProxy]
Since: 3.32
void e_dbus_calendar_view_proxy_new_for_bus (GBusType bus_type
,GDBusProxyFlags flags
,const gchar *name
,const gchar *object_path
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Like e_dbus_calendar_view_proxy_new()
but takes a GBusType instead of a GDBusConnection.
When the operation is finished, callback
will be invoked in the thread-default main loop of the thread you are calling this method from (see g_main_context_push_thread_default()
).
You can then call e_dbus_calendar_view_proxy_new_for_bus_finish()
to get the result of the operation.
See e_dbus_calendar_view_proxy_new_for_bus_sync()
for the synchronous, blocking version of this constructor.
bus_type |
A GBusType. |
|
flags |
Flags from the GDBusProxyFlags enumeration. |
|
name |
A bus name (well-known or unique). |
|
object_path |
An object path. |
|
cancellable |
A GCancellable or |
[nullable] |
callback |
A GAsyncReadyCallback to call when the request is satisfied. |
|
user_data |
User data to pass to |
Since: 3.32
EDBusCalendarView * e_dbus_calendar_view_proxy_new_for_bus_finish (GAsyncResult *res
,GError **error
);
Finishes an operation started with e_dbus_calendar_view_proxy_new_for_bus()
.
res |
The GAsyncResult obtained from the GAsyncReadyCallback passed to |
|
error |
Return location for error or |
The constructed proxy object or NULL
if error
is set.
[transfer full][type EDBusCalendarViewProxy]
Since: 3.32
EDBusCalendarView * e_dbus_calendar_view_proxy_new_for_bus_sync (GBusType bus_type
,GDBusProxyFlags flags
,const gchar *name
,const gchar *object_path
,GCancellable *cancellable
,GError **error
);
Like e_dbus_calendar_view_proxy_new_sync()
but takes a GBusType instead of a GDBusConnection.
The calling thread is blocked until a reply is received.
See e_dbus_calendar_view_proxy_new_for_bus()
for the asynchronous version of this constructor.
bus_type |
A GBusType. |
|
flags |
Flags from the GDBusProxyFlags enumeration. |
|
name |
A bus name (well-known or unique). |
|
object_path |
An object path. |
|
cancellable |
A GCancellable or |
[nullable] |
error |
Return location for error or |
The constructed proxy object or NULL
if error
is set.
[transfer full][type EDBusCalendarViewProxy]
Since: 3.32
EDBusCalendarView *
e_dbus_calendar_view_skeleton_new (void
);
Creates a skeleton object for the D-Bus interface org.gnome.evolution.dataserver.CalendarView.
Since: 3.32
struct EDBusCalendarViewIface { GTypeInterface parent_iface; gboolean (*handle_dispose) ( EDBusCalendarView *object, GDBusMethodInvocation *invocation); gboolean (*handle_set_fields_of_interest) ( EDBusCalendarView *object, GDBusMethodInvocation *invocation, const gchar *const *arg_only_fields); gboolean (*handle_set_flags) ( EDBusCalendarView *object, GDBusMethodInvocation *invocation, guint arg_flags); gboolean (*handle_start) ( EDBusCalendarView *object, GDBusMethodInvocation *invocation); gboolean (*handle_stop) ( EDBusCalendarView *object, GDBusMethodInvocation *invocation); void (*complete) ( EDBusCalendarView *object, const gchar *arg_error_name, const gchar *arg_error_message); void (*objects_added) ( EDBusCalendarView *object, const gchar *const *arg_objects); void (*objects_modified) ( EDBusCalendarView *object, const gchar *const *arg_objects); void (*objects_removed) ( EDBusCalendarView *object, const gchar *const *arg_uids); void (*progress) ( EDBusCalendarView *object, guint arg_percent, const gchar *arg_message); };
Virtual table for the D-Bus interface org.gnome.evolution.dataserver.CalendarView.
GTypeInterface |
The parent interface. |
|
Handler for the “handle-dispose” signal. |
||
Handler for the “handle-set-fields-of-interest” signal. |
||
Handler for the “handle-set-flags” signal. |
||
Handler for the “handle-start” signal. |
||
Handler for the “handle-stop” signal. |
||
Handler for the “complete” signal. |
||
Handler for the “objects-added” signal. |
||
Handler for the “objects-modified” signal. |
||
Handler for the “objects-removed” signal. |
||
Handler for the “progress” signal. |
Since: 3.32
struct EDBusCalendarViewProxy;
The EDBusCalendarViewProxy structure contains only private data and should only be accessed using the provided API.
Since: 3.32
struct EDBusCalendarViewProxyClass { GDBusProxyClass parent_class; };
Class structure for EDBusCalendarViewProxy.
Since: 3.32
struct EDBusCalendarViewSkeleton;
The EDBusCalendarViewSkeleton structure contains only private data and should only be accessed using the provided API.
Since: 3.32
struct EDBusCalendarViewSkeletonClass { GDBusInterfaceSkeletonClass parent_class; };
Class structure for EDBusCalendarViewSkeleton.
Since: 3.32
typedef struct _EDBusCalendarView EDBusCalendarView;
Abstract interface type for the D-Bus interface org.gnome.evolution.dataserver.CalendarView.
Since: 3.32
typedef struct _EDBusCalendarViewProxyPrivate EDBusCalendarViewProxyPrivate;
“complete”
signalvoid user_function (EDBusCalendarView *object, gchar *arg_error_name, gchar *arg_error_message, gpointer user_data)
On the client-side, this signal is emitted whenever the D-Bus signal "Complete" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name()
to make the object emit the D-Bus signal.
object |
||
arg_error_name |
Argument. |
|
arg_error_message |
Argument. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 3.32
“handle-dispose”
signalgboolean user_function (EDBusCalendarView *object, GDBusMethodInvocation *invocation, gpointer user_data)
Signal emitted when a remote caller is invoking the Dispose()
D-Bus method.
If a signal handler returns TRUE
, it means the signal handler will handle the invocation (e.g. take a reference to invocation
and eventually call e_dbus_calendar_view_complete_dispose()
or e.g. g_dbus_method_invocation_return_error()
on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD
error is returned.
G_DBUS_METHOD_INVOCATION_HANDLED
or TRUE
if the invocation was handled, G_DBUS_METHOD_INVOCATION_UNHANDLED
or FALSE
to let other signal handlers run.
Flags: Run Last
Since: 3.32
“handle-set-fields-of-interest”
signalgboolean user_function (EDBusCalendarView *object, GDBusMethodInvocation *invocation, GStrv arg_only_fields, gpointer user_data)
Signal emitted when a remote caller is invoking the SetFieldsOfInterest()
D-Bus method.
If a signal handler returns TRUE
, it means the signal handler will handle the invocation (e.g. take a reference to invocation
and eventually call e_dbus_calendar_view_complete_set_fields_of_interest()
or e.g. g_dbus_method_invocation_return_error()
on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD
error is returned.
object |
||
invocation |
||
arg_only_fields |
Argument passed by remote caller. |
|
user_data |
user data set when the signal handler was connected. |
G_DBUS_METHOD_INVOCATION_HANDLED
or TRUE
if the invocation was handled, G_DBUS_METHOD_INVOCATION_UNHANDLED
or FALSE
to let other signal handlers run.
Flags: Run Last
Since: 3.32
“handle-set-flags”
signalgboolean user_function (EDBusCalendarView *object, GDBusMethodInvocation *invocation, guint arg_flags, gpointer user_data)
Signal emitted when a remote caller is invoking the SetFlags()
D-Bus method.
If a signal handler returns TRUE
, it means the signal handler will handle the invocation (e.g. take a reference to invocation
and eventually call e_dbus_calendar_view_complete_set_flags()
or e.g. g_dbus_method_invocation_return_error()
on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD
error is returned.
object |
||
invocation |
||
arg_flags |
Argument passed by remote caller. |
|
user_data |
user data set when the signal handler was connected. |
G_DBUS_METHOD_INVOCATION_HANDLED
or TRUE
if the invocation was handled, G_DBUS_METHOD_INVOCATION_UNHANDLED
or FALSE
to let other signal handlers run.
Flags: Run Last
Since: 3.32
“handle-start”
signalgboolean user_function (EDBusCalendarView *object, GDBusMethodInvocation *invocation, gpointer user_data)
Signal emitted when a remote caller is invoking the Start()
D-Bus method.
If a signal handler returns TRUE
, it means the signal handler will handle the invocation (e.g. take a reference to invocation
and eventually call e_dbus_calendar_view_complete_start()
or e.g. g_dbus_method_invocation_return_error()
on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD
error is returned.
G_DBUS_METHOD_INVOCATION_HANDLED
or TRUE
if the invocation was handled, G_DBUS_METHOD_INVOCATION_UNHANDLED
or FALSE
to let other signal handlers run.
Flags: Run Last
Since: 3.32
“handle-stop”
signalgboolean user_function (EDBusCalendarView *object, GDBusMethodInvocation *invocation, gpointer user_data)
Signal emitted when a remote caller is invoking the Stop()
D-Bus method.
If a signal handler returns TRUE
, it means the signal handler will handle the invocation (e.g. take a reference to invocation
and eventually call e_dbus_calendar_view_complete_stop()
or e.g. g_dbus_method_invocation_return_error()
on it) and no order signal handlers will run. If no signal handler handles the invocation, the G_DBUS_ERROR_UNKNOWN_METHOD
error is returned.
G_DBUS_METHOD_INVOCATION_HANDLED
or TRUE
if the invocation was handled, G_DBUS_METHOD_INVOCATION_UNHANDLED
or FALSE
to let other signal handlers run.
Flags: Run Last
Since: 3.32
“objects-added”
signalvoid user_function (EDBusCalendarView *object, GStrv arg_objects, gpointer user_data)
On the client-side, this signal is emitted whenever the D-Bus signal "ObjectsAdded" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name()
to make the object emit the D-Bus signal.
object |
||
arg_objects |
Argument. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 3.32
“objects-modified”
signalvoid user_function (EDBusCalendarView *object, GStrv arg_objects, gpointer user_data)
On the client-side, this signal is emitted whenever the D-Bus signal "ObjectsModified" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name()
to make the object emit the D-Bus signal.
object |
||
arg_objects |
Argument. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 3.32
“objects-removed”
signalvoid user_function (EDBusCalendarView *object, GStrv arg_uids, gpointer user_data)
On the client-side, this signal is emitted whenever the D-Bus signal "ObjectsRemoved" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name()
to make the object emit the D-Bus signal.
Flags: Run Last
Since: 3.32
“progress”
signalvoid user_function (EDBusCalendarView *object, guint arg_percent, gchar *arg_message, gpointer user_data)
On the client-side, this signal is emitted whenever the D-Bus signal "Progress" is received.
On the service-side, this signal can be used with e.g. g_signal_emit_by_name()
to make the object emit the D-Bus signal.
object |
||
arg_percent |
Argument. |
|
arg_message |
Argument. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since: 3.32