spinbutton: Interpret localized digits

Interpret input where the characters have numeric values.

See #3387
This commit is contained in:
Matthias Clasen
2020-11-24 13:42:29 -05:00
parent 07ca46e92c
commit 91e94556ad

View File

@@ -1602,9 +1602,35 @@ gtk_spin_button_default_input (GtkSpinButton *spin_button,
*new_val = g_strtod (text, &err);
if (*err)
return GTK_INPUT_ERROR;
else
return FALSE;
{
/* try to convert with local digits */
gint64 val = 0;
int sign = 1;
const char *p;
for (p = text; *p; p = g_utf8_next_char (p))
{
gunichar ch = g_utf8_get_char (p);
if (p == text && ch == '-')
{
sign = -1;
continue;
}
if (!g_unichar_isdigit (ch))
break;
val = val * 10 + g_unichar_digit_value (ch);
}
if (*p)
return GTK_INPUT_ERROR;
*new_val = sign * val;
}
return FALSE;
}
static void