[gtk/prop-list: 6/6] inspector: Use dropdowns in the visual page
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/prop-list: 6/6] inspector: Use dropdowns in the visual page
- Date: Sat, 14 Dec 2019 15:47:59 +0000 (UTC)
commit 9425ab784b7431ff1297a38a91d4d218a5030849
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Dec 14 00:50:26 2019 -0500
inspector: Use dropdowns in the visual page
Convert everything in the visual page to dropdowns.
gtk/inspector/visual.c | 114 ++++++++++++++++++++++++++++++++----------------
gtk/inspector/visual.ui | 14 +++---
2 files changed, 84 insertions(+), 44 deletions(-)
---
diff --git a/gtk/inspector/visual.c b/gtk/inspector/visual.c
index 183b30cf8c..adabe3e234 100644
--- a/gtk/inspector/visual.c
+++ b/gtk/inspector/visual.c
@@ -27,7 +27,7 @@
#include "gtkadjustment.h"
#include "gtkbox.h"
-#include "gtkcomboboxtext.h"
+#include "gtkdropdown.h"
#include "gtkcssproviderprivate.h"
#include "gtkdebug.h"
#include "gtkprivate.h"
@@ -39,6 +39,8 @@
#include "gskdebugprivate.h"
#include "gskrendererprivate.h"
#include "gtknative.h"
+#include "gtkeditable.h"
+#include "gtkentry.h"
#include "fallback-c89.c"
@@ -125,17 +127,18 @@ fix_direction (GtkWidget *iw)
}
static void
-direction_changed (GtkComboBox *combo)
+direction_changed (GtkDropDown *combo)
{
GtkWidget *iw;
- const gchar *direction;
+ guint selected;
iw = GTK_WIDGET (gtk_widget_get_root (GTK_WIDGET (combo)));
if (iw)
fix_direction (iw);
- direction = gtk_combo_box_get_active_id (combo);
- if (g_strcmp0 (direction, "ltr") == 0)
+ selected = gtk_drop_down_get_selected (combo);
+
+ if (selected == 0)
gtk_widget_set_default_direction (GTK_TEXT_DIR_LTR);
else
gtk_widget_set_default_direction (GTK_TEXT_DIR_RTL);
@@ -144,14 +147,11 @@ direction_changed (GtkComboBox *combo)
static void
init_direction (GtkInspectorVisual *vis)
{
- const gchar *direction;
-
initial_direction = gtk_widget_get_default_direction ();
if (initial_direction == GTK_TEXT_DIR_LTR)
- direction = "ltr";
+ gtk_drop_down_set_selected (GTK_DROP_DOWN (vis->priv->direction_combo), 0);
else
- direction = "rtl";
- gtk_combo_box_set_active_id (GTK_COMBO_BOX (vis->priv->direction_combo), direction);
+ gtk_drop_down_set_selected (GTK_DROP_DOWN (vis->priv->direction_combo), 1);
}
static void
@@ -452,6 +452,39 @@ get_data_path (const gchar *subdir)
return full_datadir;
}
+static gboolean
+theme_to_pos (GBinding *binding,
+ const GValue *from,
+ GValue *to,
+ gpointer user_data)
+{
+ char **names = user_data;
+ const char *theme = g_value_get_string (from);
+ int i;
+
+ for (i = 0; names[i]; i++)
+ {
+ if (strcmp (names[i], theme) == 0)
+ {
+ g_value_set_uint (to, i);
+ return TRUE;
+ }
+ }
+ return FALSE;
+}
+
+static gboolean
+pos_to_theme (GBinding *binding,
+ const GValue *from,
+ GValue *to,
+ gpointer user_data)
+{
+ char **names = user_data;
+ int pos = g_value_get_uint (from);
+ g_value_set_string (to, names[pos]);
+ return TRUE;
+}
+
static void
init_theme (GtkInspectorVisual *vis)
{
@@ -462,6 +495,7 @@ init_theme (GtkInspectorVisual *vis)
GList *list, *l;
guint i;
const gchar * const *dirs;
+ char **names;
t = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
/* Builtin themes */
@@ -498,19 +532,20 @@ init_theme (GtkInspectorVisual *vis)
while (g_hash_table_iter_next (&iter, (gpointer *)&theme, NULL))
list = g_list_insert_sorted (list, theme, (GCompareFunc)strcmp);
- for (l = list; l; l = l->next)
- {
- theme = l->data;
- gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (vis->priv->theme_combo), theme, theme);
- }
+ names = g_new (char *, g_list_length (list) + 1);
+ for (l = list, i = 0; l; l = l->next, i++)
+ names[i] = g_strdup (l->data);
+ names[i] = NULL;
g_list_free (list);
g_hash_table_destroy (t);
- g_object_bind_property (gtk_settings_get_for_display (vis->priv->display),
- "gtk-theme-name",
- vis->priv->theme_combo, "active-id",
- G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
+ gtk_drop_down_set_from_strings (GTK_DROP_DOWN (vis->priv->theme_combo), (const char **)names);
+
+ g_object_bind_property_full (gtk_settings_get_for_display (vis->priv->display), "gtk-theme-name",
+ vis->priv->theme_combo, "selected",
+ G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE,
+ theme_to_pos, pos_to_theme, names, (GDestroyNotify)g_strfreev);
if (g_getenv ("GTK_THEME") != NULL)
{
@@ -575,6 +610,8 @@ init_icons (GtkInspectorVisual *vis)
GHashTableIter iter;
gchar *theme, *path;
GList *list, *l;
+ char **names;
+ int i;
t = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
@@ -591,19 +628,19 @@ init_icons (GtkInspectorVisual *vis)
while (g_hash_table_iter_next (&iter, (gpointer *)&theme, NULL))
list = g_list_insert_sorted (list, theme, (GCompareFunc)strcmp);
- for (l = list; l; l = l->next)
- {
- theme = l->data;
- gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (vis->priv->icon_combo), theme, theme);
- }
+ names = g_new (char *, g_list_length (list) + 1);
+ for (l = list, i = 0; l; l = l->next, i++)
+ names[i] = g_strdup (l->data);
g_hash_table_destroy (t);
g_list_free (list);
- g_object_bind_property (gtk_settings_get_for_display (vis->priv->display),
- "gtk-icon-theme-name",
- vis->priv->icon_combo, "active-id",
- G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
+ gtk_drop_down_set_from_strings (GTK_DROP_DOWN (vis->priv->icon_combo), (const char **)names);
+
+ g_object_bind_property_full (gtk_settings_get_for_display (vis->priv->display), "gtk-icon-theme-name",
+ vis->priv->icon_combo, "selected",
+ G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE,
+ theme_to_pos, pos_to_theme, names, (GDestroyNotify)g_strfreev);
}
static void
@@ -638,6 +675,8 @@ init_cursors (GtkInspectorVisual *vis)
GHashTableIter iter;
gchar *theme, *path;
GList *list, *l;
+ char **names;
+ int i;
t = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
@@ -654,19 +693,20 @@ init_cursors (GtkInspectorVisual *vis)
while (g_hash_table_iter_next (&iter, (gpointer *)&theme, NULL))
list = g_list_insert_sorted (list, theme, (GCompareFunc)strcmp);
- for (l = list; l; l = l->next)
- {
- theme = l->data;
- gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (vis->priv->cursor_combo), theme, theme);
- }
+ names = g_new (char *, g_list_length (list) + 1);
+ for (l = list, i = 0; l; l = l->next, i++)
+ names[i] = g_strdup (l->data);
+ names[i] = NULL;
g_hash_table_destroy (t);
g_list_free (list);
- g_object_bind_property (gtk_settings_get_for_display (vis->priv->display),
- "gtk-cursor-theme-name",
- vis->priv->cursor_combo, "active-id",
- G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
+ gtk_drop_down_set_from_strings (GTK_DROP_DOWN (vis->priv->cursor_combo), (const char **)names);
+
+ g_object_bind_property_full (gtk_settings_get_for_display (vis->priv->display), "gtk-cursor-theme-name",
+ vis->priv->cursor_combo, "selected",
+ G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE,
+ theme_to_pos, pos_to_theme, names, (GDestroyNotify)g_strfreev);
}
static void
diff --git a/gtk/inspector/visual.ui b/gtk/inspector/visual.ui
index ead50b6384..55c231b52b 100644
--- a/gtk/inspector/visual.ui
+++ b/gtk/inspector/visual.ui
@@ -58,7 +58,7 @@
</object>
</child>
<child>
- <object class="GtkComboBoxText" id="theme_combo">
+ <object class="GtkDropDown" id="theme_combo">
<property name="halign">end</property>
<property name="valign">baseline</property>
<property name="hexpand">1</property>
@@ -109,7 +109,7 @@
</object>
</child>
<child>
- <object class="GtkComboBoxText" id="cursor_combo">
+ <object class="GtkDropDown" id="cursor_combo">
<property name="halign">end</property>
<property name="valign">baseline</property>
<property name="hexpand">1</property>
@@ -165,7 +165,7 @@
</object>
</child>
<child>
- <object class="GtkComboBoxText" id="icon_combo">
+ <object class="GtkDropDown" id="icon_combo">
<property name="halign">end</property>
<property name="valign">baseline</property>
<property name="hexpand">1</property>
@@ -255,14 +255,14 @@
</object>
</child>
<child>
- <object class="GtkComboBoxText" id="direction_combo">
+ <object class="GtkDropDown" id="direction_combo">
<property name="halign">end</property>
<property name="valign">baseline</property>
<property name="hexpand">1</property>
- <signal name="changed" handler="direction_changed"/>
+ <signal name="notify::selected" handler="direction_changed"/>
<items>
- <item translatable="yes" id="ltr">Left-to-Right</item>
- <item translatable="yes" id="rtl">Right-to-Left</item>
+ <item translatable="yes">Left-to-Right</item>
+ <item translatable="yes">Right-to-Left</item>
</items>
</object>
</child>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]