aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-main-window.c
diff options
context:
space:
mode:
authorGabriel Millaire <millaire.gabriel@gmail.com>2009-07-10 23:28:54 +0800
committerGabriel Millaire <millaire.gabriel@gmail.com>2009-07-10 23:31:27 +0800
commit2a5d562c839106c2edacd58cbdc003e0aead635b (patch)
tree96e8e3d668251f5695a246915a578a581730ba56 /src/empathy-main-window.c
parentc74b8f99f8b3c706d18cc280c35748d8e5282660 (diff)
downloadgsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.tar
gsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.tar.gz
gsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.tar.bz2
gsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.tar.lz
gsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.tar.xz
gsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.tar.zst
gsoc2013-empathy-2a5d562c839106c2edacd58cbdc003e0aead635b.zip
Regrouped similar functions, uses enum instead of define
Diffstat (limited to 'src/empathy-main-window.c')
-rw-r--r--src/empathy-main-window.c118
1 files changed, 55 insertions, 63 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c
index 2e2e93a81..06238b2a4 100644
--- a/src/empathy-main-window.c
+++ b/src/empathy-main-window.c
@@ -724,6 +724,34 @@ main_window_view_show_offline_cb (GtkToggleAction *action,
}
static void
+main_window_notify_sort_contact_cb (EmpathyConf *conf,
+ const gchar *key,
+ EmpathyMainWindow *window)
+{
+ gchar *str = NULL;
+
+ if (empathy_conf_get_string (conf, key, &str) && str) {
+ GType type;
+ GEnumClass *enum_class;
+ GEnumValue *enum_value;
+
+ type = empathy_contact_list_store_sort_get_type ();
+ enum_class = G_ENUM_CLASS (g_type_class_peek (type));
+ enum_value = g_enum_get_value_by_nick (enum_class, str);
+ if (enum_value) {
+ /* By changing the value of the GtkRadioAction,
+ it emits a signal that calls main_window_view_sort_contacts_cb
+ which updates the contacts list */
+ gtk_radio_action_set_current_value (window->sort_by_name,
+ enum_value->value);
+ } else {
+ g_warning ("Wrong value for sort_criterium configuration : %s", str);
+ }
+ g_free (str);
+ }
+}
+
+static void
main_window_view_sort_contacts_cb (GtkRadioAction *action,
GtkRadioAction *current,
EmpathyMainWindow *window)
@@ -743,7 +771,7 @@ main_window_view_sort_contacts_cb (GtkRadioAction *action,
enum_value = g_enum_get_value (enum_class, g_slist_index (group, current));
if (!enum_value) {
- g_warning ("No GEnumValue for EmpathyContactListSort with GtkRadioButton index:%d",
+ g_warning ("No GEnumValue for EmpathyContactListSort with GtkRadioAction index:%d",
g_slist_index (group, action));
} else {
const gchar *value_str;
@@ -784,6 +812,32 @@ main_window_view_contacts_list_size_cb (GtkRadioAction *action,
}
static void
+main_window_notify_contact_list_size_cb (EmpathyConf *conf,
+ const gchar *key,
+ EmpathyMainWindow *window)
+{
+ gboolean show_avatars;
+ gboolean compact_contact_list;
+ gint value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
+
+ if (empathy_conf_get_bool (conf,
+ EMPATHY_PREFS_UI_SHOW_AVATARS,
+ &show_avatars)
+ && empathy_conf_get_bool (conf,
+ EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
+ &compact_contact_list)) {
+ if (compact_contact_list) {
+ value = CONTACT_LIST_COMPACT_SIZE;
+ } else if (show_avatars) {
+ value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
+ } else {
+ value = CONTACT_LIST_NORMAL_SIZE;
+ }
+ }
+ gtk_radio_action_set_current_value (window->normal_with_avatars, value);
+}
+
+static void
main_window_view_show_map_cb (GtkCheckMenuItem *item,
EmpathyMainWindow *window)
{
@@ -1092,68 +1146,6 @@ main_window_notify_show_offline_cb (EmpathyConf *conf,
}
static void
-main_window_notify_contact_list_size_cb (EmpathyConf *conf,
- const gchar *key,
- EmpathyMainWindow *window)
-{
- gboolean show_avatars;
- gboolean compact_contact_list;
- gint value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
-
- if (empathy_conf_get_bool (conf,
- EMPATHY_PREFS_UI_SHOW_AVATARS,
- &show_avatars)
- && empathy_conf_get_bool (conf,
- EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
- &compact_contact_list)) {
- if (compact_contact_list) {
- value = CONTACT_LIST_COMPACT_SIZE;
- } else if (show_avatars) {
- value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
- } else {
- value = CONTACT_LIST_NORMAL_SIZE;
- }
- }
- gtk_radio_action_set_current_value (window->normal_with_avatars, value);
-}
-
-
-/* Matches GtkRadioAction values set in empathy-main-window.ui */
-#define CONTACT_LIST_SORT_BY_STATUS 0
-#define CONTACT_LIST_SORT_BY_NAME 1
-
-static void
-main_window_notify_sort_contact_cb (EmpathyConf *conf,
- const gchar *key,
- EmpathyMainWindow *window)
-{
- gchar *str = NULL;
-
- if (empathy_conf_get_string (conf, key, &str) && str) {
- GType type;
- GEnumClass *enum_class;
- GEnumValue *enum_value;
-
- type = empathy_contact_list_store_sort_get_type ();
- enum_class = G_ENUM_CLASS (g_type_class_peek (type));
- enum_value = g_enum_get_value_by_nick (enum_class, str);
-
- if (enum_value) {
- if (enum_value->value == EMPATHY_CONTACT_LIST_STORE_SORT_STATE) {
- gtk_radio_action_set_current_value (window->sort_by_name,
- CONTACT_LIST_SORT_BY_STATUS);
- } else {
- gtk_radio_action_set_current_value (window->sort_by_name,
- CONTACT_LIST_SORT_BY_NAME);
- }
- } else {
- g_warning ("Wrong value for sort_criterium configuration : %s", str);
- }
- g_free (str);
- }
-}
-
-static void
main_window_connection_items_setup (EmpathyMainWindow *window,
GtkBuilder *gui)
{