Top | ![]() |
![]() |
![]() |
![]() |
struct _ECalClient * | e_cal_client_view_ref_client () |
GDBusConnection * | e_cal_client_view_get_connection () |
const gchar * | e_cal_client_view_get_object_path () |
gboolean | e_cal_client_view_is_running () |
void | e_cal_client_view_set_fields_of_interest () |
void | e_cal_client_view_start () |
void | e_cal_client_view_stop () |
void | e_cal_client_view_set_flags () |
struct _ECalClient * | e_cal_client_view_get_client () |
ECalClient * | client | Read / Write / Construct Only |
GDBusConnection * | connection | Read / Write / Construct Only |
gchar * | object-path | Read / Write / Construct Only |
void | complete | Run First |
void | objects-added | Run First |
void | objects-modified | Run First |
void | objects-removed | Run First |
void | progress | Run First |
struct _ECalClient *
e_cal_client_view_ref_client (ECalClientView *client_view
);
Returns the “client” associated with client_view
.
The returned ECalClient is referenced for thread-safety. Unreference
the ECalClient with g_object_unref()
when finished with it.
Since 3.10
GDBusConnection *
e_cal_client_view_get_connection (ECalClientView *client_view
);
Returns the GDBusConnection used to create the D-Bus proxy.
Since 3.8
const gchar *
e_cal_client_view_get_object_path (ECalClientView *client_view
);
Returns the object path used to create the D-Bus proxy.
Since 3.8
gboolean
e_cal_client_view_is_running (ECalClientView *client_view
);
Retunrs: Whether view is running. Not running views are ignoring all events sent from the server.
Since 3.2
void e_cal_client_view_set_fields_of_interest (ECalClientView *client_view
,const GSList *fields_of_interest
,GError **error
);
Client can instruct server to which fields it is interested in only, thus
the server can return less data over the wire. The server can still return
complete objects, this is just a hint to it that the listed fields will
be used only. The UID/RID fields are returned always. Initial views has no
fields of interest and using NULL
for fields_of_interest
will unset any
previous changes.
Some backends can use summary information of its cache to create artifical objects, which will omit stored object parsing. If this cannot be done then it will simply return object as is stored in the cache.
client_view |
||
fields_of_interest |
List of field names
in which the client is interested, or |
[element-type utf8][allow-none] |
error |
void e_cal_client_view_start (ECalClientView *client_view
,GError **error
);
Tells client_view
to start processing events.
Since 3.2
void e_cal_client_view_stop (ECalClientView *client_view
,GError **error
);
Tells client_view
to stop processing events.
Since 3.2
void e_cal_client_view_set_flags (ECalClientView *client_view
,ECalClientViewFlags flags
,GError **error
);
Sets the flags
which control the behaviour of client_view
.
Since 3.6
struct _ECalClient *
e_cal_client_view_get_client (ECalClientView *client_view
);
e_cal_client_view_get_client
has been deprecated since version 3.10 and should not be used in newly-written code.
Use e_cal_client_view_ref_client()
instead.
Returns the “client” associated with client_view
.
Since 3.2
struct ECalClientView;
Contains only private data that should be read and manipulated using the functions below.
Since 3.2
Flags that control the behaviour of an ECalClientView.
Symbolic value for no flags |
||
If this flag is set then all objects matching the view's query will
be sent as notifications when starting the view, otherwise only future
changes will be reported. The default for a ECalClientView is |
Since 3.6
“connection”
property“connection” GDBusConnection *
The GDBusConnection used to create the D-Bus proxy.
Flags: Read / Write / Construct Only
“object-path”
property“object-path” gchar *
The object path used to create the D-Bus proxy.
Flags: Read / Write / Construct Only
Default value: NULL
“complete”
signalvoid user_function (ECalClientView *ecalclientview, GError *arg1, gpointer user_data)
Flags: Run First
“objects-added”
signalvoid user_function (ECalClientView *client_view, gpointer objects, gpointer user_data)
client_view |
the ECalClientView which emitted the signal |
|
objects |
. |
[type GSList][transfer none][element-type long] |
user_data |
user data set when the signal handler was connected. |
Flags: Run First
“objects-modified”
signalvoid user_function (ECalClientView *client_view, gpointer objects, gpointer user_data)
client_view |
the ECalClientView which emitted the signal |
|
objects |
. |
[type GSList][transfer none][element-type long] |
user_data |
user data set when the signal handler was connected. |
Flags: Run First
“objects-removed”
signalvoid user_function (ECalClientView *client_view, gpointer objects, gpointer user_data)
client_view |
the ECalClientView which emitted the signal |
|
objects |
. |
[type GSList][transfer none][element-type ECalComponentId] |
user_data |
user data set when the signal handler was connected. |
Flags: Run First
“progress”
signalvoid user_function (ECalClientView *ecalclientview, guint arg1, gchar *arg2, gpointer user_data)
Flags: Run First