[gnome-online-accounts] provider: Rename show_account_items as provider_features_info
- From: Debarshi Ray <debarshir src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-online-accounts] provider: Rename show_account_items as provider_features_info
- Date: Fri, 6 May 2016 17:17:16 +0000 (UTC)
commit 0e0fc9c6d6bb887b0e191833c46391c572a57dc4
Author: Debarshi Ray <debarshir gnome org>
Date: Fri May 6 17:49:45 2016 +0200
provider: Rename show_account_items as provider_features_info
In the subsequent commit, we are going to use show_account_items in
goa_provider_ensure_credentials_sync. Let's use a suitable name to
clarify that it's no longer specific to goa_provider_show_account_real.
https://bugzilla.gnome.org/show_bug.cgi?id=762155
src/goabackend/goaprovider.c | 160 +++++++++++++++++++++---------------------
1 files changed, 80 insertions(+), 80 deletions(-)
---
diff --git a/src/goabackend/goaprovider.c b/src/goabackend/goaprovider.c
index c96e97b..c6b5b64 100644
--- a/src/goabackend/goaprovider.c
+++ b/src/goabackend/goaprovider.c
@@ -92,6 +92,82 @@ static void goa_provider_show_account_real (GoaProvider *provider,
G_DEFINE_ABSTRACT_TYPE (GoaProvider, goa_provider, G_TYPE_OBJECT);
+static struct {
+ GoaProviderFeatures feature;
+ const gchar *property;
+ const gchar *blurb;
+} provider_features_info[] = {
+ /* The order in which the features are listed is
+ * important because it affects the order in which they are
+ * displayed in the show_account() UI
+ */
+ {
+ .feature = GOA_PROVIDER_FEATURE_MAIL,
+ .property = "mail-disabled",
+ .blurb = N_("_Mail"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_CALENDAR,
+ .property = "calendar-disabled",
+ .blurb = N_("Cale_ndar"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_CONTACTS,
+ .property = "contacts-disabled",
+ .blurb = N_("_Contacts"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_CHAT,
+ .property = "chat-disabled",
+ .blurb = N_("C_hat"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_DOCUMENTS,
+ .property = "documents-disabled",
+ .blurb = N_("_Documents"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_MUSIC,
+ .property = "music-disabled",
+ .blurb = N_("M_usic"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_PHOTOS,
+ .property = "photos-disabled",
+ .blurb = N_("_Photos"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_FILES,
+ .property = "files-disabled",
+ .blurb = N_("_Files"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_TICKETING,
+ .property = "ticketing-disabled",
+ .blurb = N_("Network _Resources"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_READ_LATER,
+ .property = "read-later-disabled",
+ .blurb = N_("_Read Later"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_PRINTERS,
+ .property = "printers-disabled",
+ .blurb = N_("Prin_ters"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_MAPS,
+ .property = "maps-disabled",
+ .blurb = N_("_Maps"),
+ },
+ {
+ .feature = GOA_PROVIDER_FEATURE_INVALID,
+ .property = NULL,
+ .blurb = NULL,
+ }
+};
+
static void
goa_provider_get_property (GObject *object,
guint property_id,
@@ -464,82 +540,6 @@ goa_provider_show_account (GoaProvider *self,
GOA_PROVIDER_GET_CLASS (self)->show_account (self, client, object, vbox, grid, dummy);
}
-static struct {
- GoaProviderFeatures feature;
- const gchar *property;
- const gchar *blurb;
-} show_account_items[] = {
- /* The order in which the features are listed is
- * important because it affects the order in which they are
- * displayed in the show_account() UI
- */
- {
- .feature = GOA_PROVIDER_FEATURE_MAIL,
- .property = "mail-disabled",
- .blurb = N_("_Mail"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_CALENDAR,
- .property = "calendar-disabled",
- .blurb = N_("Cale_ndar"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_CONTACTS,
- .property = "contacts-disabled",
- .blurb = N_("_Contacts"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_CHAT,
- .property = "chat-disabled",
- .blurb = N_("C_hat"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_DOCUMENTS,
- .property = "documents-disabled",
- .blurb = N_("_Documents"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_MUSIC,
- .property = "music-disabled",
- .blurb = N_("M_usic"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_PHOTOS,
- .property = "photos-disabled",
- .blurb = N_("_Photos"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_FILES,
- .property = "files-disabled",
- .blurb = N_("_Files"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_TICKETING,
- .property = "ticketing-disabled",
- .blurb = N_("Network _Resources"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_READ_LATER,
- .property = "read-later-disabled",
- .blurb = N_("_Read Later"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_PRINTERS,
- .property = "printers-disabled",
- .blurb = N_("Prin_ters"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_MAPS,
- .property = "maps-disabled",
- .blurb = N_("_Maps"),
- },
- {
- .feature = GOA_PROVIDER_FEATURE_INVALID,
- .property = NULL,
- .blurb = NULL,
- }
-};
-
static void
goa_provider_show_account_real (GoaProvider *provider,
GoaClient *client,
@@ -562,14 +562,14 @@ goa_provider_show_account_real (GoaProvider *provider,
* options switches. For example: “Use for Mail”. */
label = _("Use for");
- for (i = 0; show_account_items[i].property != NULL; i++)
+ for (i = 0; provider_features_info[i].property != NULL; i++)
{
- if ((features & show_account_items[i].feature) != 0)
+ if ((features & provider_features_info[i].feature) != 0)
{
goa_util_add_row_switch_from_keyfile_with_blurb (grid, row++, object,
label,
- show_account_items[i].property,
- _(show_account_items[i].blurb));
+ provider_features_info[i].property,
+ _(provider_features_info[i].blurb));
label = NULL;
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]