![]() |
![]() |
![]() |
Evolution-Data-Server Manual: Calendar Backend (libedata-cal) | ![]() |
---|---|---|---|---|
Top | Description |
EDataCalView * e_data_cal_view_new (ECalBackend *backend
,ECalBackendSExp *sexp
); guint e_data_cal_view_register_gdbus_object (EDataCalView *view
,GDBusConnection *connection
,const gchar *object_path
,GError **error
); const gchar * e_data_cal_view_get_text (EDataCalView *view
); ECalBackendSExp * e_data_cal_view_get_object_sexp (EDataCalView *view
); gboolean e_data_cal_view_object_matches (EDataCalView *view
,const gchar *object
); gboolean e_data_cal_view_is_started (EDataCalView *view
); gboolean e_data_cal_view_is_stopped (EDataCalView *view
); void e_data_cal_view_notify_objects_added (EDataCalView *view
,const GSList *objects
); void e_data_cal_view_notify_objects_added_1 (EDataCalView *view
,const gchar *object
); void e_data_cal_view_notify_objects_modified (EDataCalView *view
,const GSList *objects
); void e_data_cal_view_notify_objects_modified_1 (EDataCalView *view
,const gchar *object
); void e_data_cal_view_notify_objects_removed (EDataCalView *view
,const GSList *ids
); void e_data_cal_view_notify_objects_removed_1 (EDataCalView *view
,const ECalComponentId *id
); void e_data_cal_view_notify_progress (EDataCalView *view
,gint percent
,const gchar *message
);
EDataCalView * e_data_cal_view_new (ECalBackend *backend
,ECalBackendSExp *sexp
);
|
|
|
|
Returns : |
guint e_data_cal_view_register_gdbus_object (EDataCalView *view
,GDBusConnection *connection
,const gchar *object_path
,GError **error
);
|
|
|
|
|
|
|
|
Returns : |
Since 2.32
const gchar * e_data_cal_view_get_text (EDataCalView *view
);
Get the expression used for the given view.
|
A EDataCalView object. |
Returns : |
the view expression used to search. |
ECalBackendSExp * e_data_cal_view_get_object_sexp (EDataCalView *view
);
Get the ECalBackendSExp object used for the given view.
|
A view object. |
Returns : |
The expression object used to search. |
gboolean e_data_cal_view_object_matches (EDataCalView *view
,const gchar *object
);
Compares the given object
to the regular expression used for the
given view.
|
A view object. |
|
Object to match. |
Returns : |
TRUE if the object matches the expression, FALSE if not. |
gboolean e_data_cal_view_is_started (EDataCalView *view
);
Checks whether the given view has already been started.
|
A view object. |
Returns : |
TRUE if the view has already been started, FALSE otherwise. |
gboolean e_data_cal_view_is_stopped (EDataCalView *view
);
Checks whether the given view has been stopped.
|
A view object. |
Returns : |
TRUE if the view has been stopped, FALSE otherwise. |
Since 2.32
void e_data_cal_view_notify_objects_added (EDataCalView *view
,const GSList *objects
);
Notifies all view listeners of the addition of a list of objects.
|
A view object. |
|
List of objects that have been added. |
void e_data_cal_view_notify_objects_added_1 (EDataCalView *view
,const gchar *object
);
Notifies all the view listeners of the addition of a single object.
|
A view object. |
|
The object that has been added. |
void e_data_cal_view_notify_objects_modified (EDataCalView *view
,const GSList *objects
);
Notifies all view listeners of the modification of a list of objects.
|
A view object. |
|
List of modified objects. |
void e_data_cal_view_notify_objects_modified_1 (EDataCalView *view
,const gchar *object
);
Notifies all view listeners of the modification of a single object.
|
A view object. |
|
The modified object. |
void e_data_cal_view_notify_objects_removed (EDataCalView *view
,const GSList *ids
);
Notifies all view listener of the removal of a list of objects.
|
A view object. |
|
List of IDs for the objects that have been removed. |
void e_data_cal_view_notify_objects_removed_1 (EDataCalView *view
,const ECalComponentId *id
);
Notifies all view listener of the removal of a single object.
|
A view object. |
|
ID of the removed object. |