[gtk/wip/ebassi/shortcut: 44/85] accellabel: Get rid of class variables
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/ebassi/shortcut: 44/85] accellabel: Get rid of class variables
- Date: Fri, 31 Jan 2020 16:03:32 +0000 (UTC)
commit 3da868696f3a34ed2dc7211d46cb0b49c66f0846
Author: Benjamin Otte <otte redhat com>
Date: Mon Aug 13 04:51:03 2018 +0200
accellabel: Get rid of class variables
We can just look them up as-needed, no need to cache them.
gtk/gtkaccellabel.c | 102 ++++++++++++++++++++++++++++------------------------
1 file changed, 56 insertions(+), 46 deletions(-)
---
diff --git a/gtk/gtkaccellabel.c b/gtk/gtkaccellabel.c
index 65c8b4b7f5..98cadb7ce2 100644
--- a/gtk/gtkaccellabel.c
+++ b/gtk/gtkaccellabel.c
@@ -151,38 +151,6 @@ gtk_accel_label_class_init (GtkAccelLabelClass *class)
gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_ACCEL_LABEL);
-#ifndef GDK_WINDOWING_QUARTZ
- /* This is the text that should appear next to menu accelerators
- * that use the shift key. If the text on this key isn't typically
- * translated on keyboards used for your language, don't translate
- * this.
- */
- class->mod_name_shift = g_strdup (C_("keyboard label", "Shift"));
- /* This is the text that should appear next to menu accelerators
- * that use the control key. If the text on this key isn't typically
- * translated on keyboards used for your language, don't translate
- * this.
- */
- class->mod_name_control = g_strdup (C_("keyboard label", "Ctrl"));
- /* This is the text that should appear next to menu accelerators
- * that use the alt key. If the text on this key isn't typically
- * translated on keyboards used for your language, don't translate
- * this.
- */
- class->mod_name_alt = g_strdup (C_("keyboard label", "Alt"));
- class->mod_separator = g_strdup ("+");
-#else /* GDK_WINDOWING_QUARTZ */
-
- /* U+21E7 UPWARDS WHITE ARROW */
- class->mod_name_shift = g_strdup ("\xe2\x87\xa7");
- /* U+2303 UP ARROWHEAD */
- class->mod_name_control = g_strdup ("\xe2\x8c\x83");
- /* U+2325 OPTION KEY */
- class->mod_name_alt = g_strdup ("\xe2\x8c\xa5");
- class->mod_separator = g_strdup ("");
-
-#endif /* GDK_WINDOWING_QUARTZ */
-
props[PROP_ACCEL_CLOSURE] =
g_param_spec_boxed ("accel-closure",
P_("Accelerator Closure"),
@@ -679,6 +647,16 @@ append_keyval_symbol (guint accelerator_key,
#endif
}
+static void
+append_separator (GString *string)
+{
+#ifndef GDK_WINDOWING_QUARTZ
+ g_string_append (string, "+");
+#else
+ /* no separator on quartz */
+#endif
+}
+
gchar *
_gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
guint accelerator_key,
@@ -692,30 +670,62 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_SHIFT_MASK)
{
- g_string_append (gstring, klass->mod_name_shift);
+#ifndef GDK_WINDOWING_QUARTZ
+ /* This is the text that should appear next to menu accelerators
+ * that use the shift key. If the text on this key isn't typically
+ * translated on keyboards used for your language, don't translate
+ * this.
+ */
+ g_string_append (gstring, C_("keyboard label", "Shift"));
+#else
+ /* U+21E7 UPWARDS WHITE ARROW */
+ g_string_append (gstring, "\xe2\x87\xa7");
+#endif
seen_mod = TRUE;
}
if (accelerator_mods & GDK_CONTROL_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
- g_string_append (gstring, klass->mod_name_control);
+ append_separator (gstring);
+
+#ifndef GDK_WINDOWING_QUARTZ
+ /* This is the text that should appear next to menu accelerators
+ * that use the control key. If the text on this key isn't typically
+ * translated on keyboards used for your language, don't translate
+ * this.
+ */
+ g_string_append (gstring, C_("keyboard label", "Ctrl"));
+#else
+ /* U+2303 UP ARROWHEAD */
+ g_string_append (gstring, "\xe2\x8c\x83");
+#endif
seen_mod = TRUE;
}
if (accelerator_mods & GDK_MOD1_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
- g_string_append (gstring, klass->mod_name_alt);
+ append_separator (gstring);
+
+#ifndef GDK_WINDOWING_QUARTZ
+ /* This is the text that should appear next to menu accelerators
+ * that use the alt key. If the text on this key isn't typically
+ * translated on keyboards used for your language, don't translate
+ * this.
+ */
+ g_string_append (gstring, C_("keyboard label", "Alt"));
+#else
+ /* U+2325 OPTION KEY */
+ g_string_append (gstring, "\xe2\x8c\xa5");
+#endif
seen_mod = TRUE;
}
if (accelerator_mods & GDK_MOD2_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
g_string_append (gstring, "Mod2");
seen_mod = TRUE;
@@ -724,7 +734,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_MOD3_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
g_string_append (gstring, "Mod3");
seen_mod = TRUE;
@@ -733,7 +743,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_MOD4_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
g_string_append (gstring, "Mod4");
seen_mod = TRUE;
@@ -742,7 +752,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_MOD5_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
g_string_append (gstring, "Mod5");
seen_mod = TRUE;
@@ -751,7 +761,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_SUPER_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
/* This is the text that should appear next to menu accelerators
* that use the super key. If the text on this key isn't typically
@@ -765,7 +775,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_HYPER_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
/* This is the text that should appear next to menu accelerators
* that use the hyper key. If the text on this key isn't typically
@@ -779,7 +789,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (accelerator_mods & GDK_META_MASK)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
#ifndef GDK_WINDOWING_QUARTZ
/* This is the text that should appear next to menu accelerators
@@ -799,7 +809,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (ch && (ch == ' ' || g_unichar_isgraph (ch)))
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
switch (ch)
{
@@ -822,7 +832,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
if (tmp != NULL)
{
if (seen_mod)
- g_string_append (gstring, klass->mod_separator);
+ append_separator (gstring);
if (tmp[0] != 0 && tmp[1] == 0)
g_string_append_c (gstring, g_ascii_toupper (tmp[0]));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]