[evolution-data-server/openismus-work] EBookBackend added new ->set_locale() API and ->get_locale() API
- From: Tristan Van Berkom <tvb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server/openismus-work] EBookBackend added new ->set_locale() API and ->get_locale() API
- Date: Tue, 28 May 2013 06:44:53 +0000 (UTC)
commit 22618f963822738019f59e66781c9bf0979fc441
Author: Tristan Van Berkom <tristanvb openismus com>
Date: Fri May 17 20:03:45 2013 +0900
EBookBackend added new ->set_locale() API and ->get_locale() API
Use these to dynamically set the locale of a running addressbook, and also
to fetch the currently configured locale of an addressbook at startup time
addressbook/libedata-book/e-book-backend.c | 50 ++++++++++++++++++++++++++++
addressbook/libedata-book/e-book-backend.h | 6 +++
2 files changed, 56 insertions(+), 0 deletions(-)
---
diff --git a/addressbook/libedata-book/e-book-backend.c b/addressbook/libedata-book/e-book-backend.c
index cca300f..cb70d17 100644
--- a/addressbook/libedata-book/e-book-backend.c
+++ b/addressbook/libedata-book/e-book-backend.c
@@ -1110,6 +1110,56 @@ e_book_backend_sync (EBookBackend *backend)
}
/**
+ * e_book_backend_set_locale:
+ * @backend: an #EBookbackend
+ * @locale: the new locale for the addressbook
+ *
+ * Notify the addressbook backend that the current locale has
+ * changed, this is important for backends which support
+ * ordered result lists which are locale sensitive.
+ *
+ * Since: 3.10
+ */
+void
+e_book_backend_set_locale (EBookBackend *backend,
+ const gchar *locale)
+{
+ g_return_if_fail (E_IS_BOOK_BACKEND (backend));
+
+ g_object_ref (backend);
+
+ if (E_BOOK_BACKEND_GET_CLASS (backend)->set_locale)
+ (* E_BOOK_BACKEND_GET_CLASS (backend)->set_locale) (backend, locale);
+
+ g_object_unref (backend);
+}
+
+/**
+ * e_book_backend_get_locale:
+ * @backend: an #EBookbackend
+ *
+ * Fetch the currently configured locale for the addressbook
+ *
+ * Since: 3.10
+ */
+const gchar *
+e_book_backend_get_locale (EBookBackend *backend)
+{
+ const gchar *locale = NULL;
+
+ g_return_val_if_fail (E_IS_BOOK_BACKEND (backend), NULL);
+
+ g_object_ref (backend);
+
+ if (E_BOOK_BACKEND_GET_CLASS (backend)->get_locale)
+ locale = (* E_BOOK_BACKEND_GET_CLASS (backend)->get_locale) (backend);
+
+ g_object_unref (backend);
+
+ return locale;
+}
+
+/**
* e_book_backend_notify_update:
* @backend: an #EBookBackend
* @contact: a new or modified contact
diff --git a/addressbook/libedata-book/e-book-backend.h b/addressbook/libedata-book/e-book-backend.h
index 434b1a3..ce3825e 100644
--- a/addressbook/libedata-book/e-book-backend.h
+++ b/addressbook/libedata-book/e-book-backend.h
@@ -170,6 +170,9 @@ struct _EBookBackendClass {
EDataBookDirect *
(* get_direct_book) (EBookBackend *backend);
void (* configure_direct) (EBookBackend *backend, const gchar *config);
+ void (*set_locale) (EBookBackend *backend,
+ const gchar *locale);
+ const gchar *(*get_locale) (EBookBackend *backend);
/* Notification signals */
void (* sync) (EBookBackend *backend);
@@ -224,6 +227,9 @@ EDataBookDirect *
void e_book_backend_configure_direct (EBookBackend *backend, const gchar *config);
void e_book_backend_sync (EBookBackend *backend);
+void e_book_backend_set_locale (EBookBackend *backend,
+ const gchar *locale);
+const gchar *e_book_backend_get_locale (EBookBackend *backend);
/* protected functions for subclasses */
void e_book_backend_set_is_removed (EBookBackend *backend, gboolean is_removed);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]