Store search input in UCS4.

This commit is contained in:
Přemysl Eric Janouch 2013-05-15 19:30:47 +02:00
parent 421d87b7c0
commit b8c4d29233
1 changed files with 66 additions and 81 deletions

View File

@ -58,12 +58,6 @@ poll_restart (struct pollfd *fds, nfds_t nfds, int timeout)
return ret; return ret;
} }
static gsize
utf8_offset (const gchar *s, gsize offset)
{
return g_utf8_offset_to_pointer (s, offset) - s;
}
/** Wrapper for curses event data. */ /** Wrapper for curses event data. */
typedef struct curses_event CursesEvent; typedef struct curses_event CursesEvent;
@ -100,7 +94,7 @@ struct application
guint selected; //!< Offset to the selected definition guint selected; //!< Offset to the selected definition
GPtrArray *entries; //!< ViewEntry's within the view GPtrArray *entries; //!< ViewEntry's within the view
GString *input; //!< The current search input GArray *input; //!< The current search input
guint input_pos; //!< Cursor position within input guint input_pos; //!< Cursor position within input
}; };
@ -199,7 +193,7 @@ app_init (Application *self, const gchar *filename)
self->entries = g_ptr_array_new_with_free_func self->entries = g_ptr_array_new_with_free_func
((GDestroyNotify) view_entry_free); ((GDestroyNotify) view_entry_free);
self->input = g_string_new (NULL); self->input = g_array_new (TRUE, FALSE, sizeof (gunichar));
self->input_pos = 0; self->input_pos = 0;
self->wchar_to_utf8 = g_iconv_open ("utf-8//translit", "wchar_t"); self->wchar_to_utf8 = g_iconv_open ("utf-8//translit", "wchar_t");
@ -214,33 +208,12 @@ app_destroy (Application *self)
{ {
g_object_unref (self->dict); g_object_unref (self->dict);
g_ptr_array_free (self->entries, TRUE); g_ptr_array_free (self->entries, TRUE);
g_string_free (self->input, TRUE); g_array_free (self->input, TRUE);
g_iconv_close (self->wchar_to_utf8); g_iconv_close (self->wchar_to_utf8);
g_iconv_close (self->utf8_to_wchar); g_iconv_close (self->utf8_to_wchar);
} }
/** Render the top bar. */
static void
app_redraw_top (Application *self)
{
mvwhline (stdscr, 0, 0, A_UNDERLINE, COLS);
attrset (A_UNDERLINE);
printw ("%s: ", _("Search"));
int y, x;
getyx (stdscr, y, x);
gchar *input = g_locale_from_utf8 (self->input->str, -1, NULL, NULL, NULL);
g_return_if_fail (input != NULL);
addstr (input);
g_free (input);
move (y, x + self->input_pos);
refresh ();
}
/** Write the given utf-8 string padded with spaces, max. @a n characters. */ /** Write the given utf-8 string padded with spaces, max. @a n characters. */
static void static void
add_padded_string (Application *self, const gchar *str, int n) add_padded_string (Application *self, const gchar *str, int n)
@ -264,6 +237,28 @@ add_padded_string (Application *self, const gchar *str, int n)
g_free (wide_str); g_free (wide_str);
} }
/** Render the top bar. */
static void
app_redraw_top (Application *self)
{
mvwhline (stdscr, 0, 0, A_UNDERLINE, COLS);
attrset (A_UNDERLINE);
printw ("%s: ", _("Search"));
int y, x;
getyx (stdscr, y, x);
gchar *input_utf8 = g_ucs4_to_utf8
((gunichar *) self->input->data, -1, NULL, NULL, NULL);
g_return_if_fail (input_utf8 != NULL);
add_padded_string (self, input_utf8, COLS - x);
g_free (input_utf8);
move (y, x + self->input_pos);
refresh ();
}
/** Redraw the dictionary view. */ /** Redraw the dictionary view. */
static void static void
app_redraw_view (Application *self) app_redraw_view (Application *self)
@ -436,8 +431,14 @@ app_redraw (Application *self)
static void static void
app_search_for_entry (Application *self) app_search_for_entry (Application *self)
{ {
StardictIterator *iterator = stardict_dict_search gchar *input_utf8 = g_ucs4_to_utf8
(self->dict, self->input->str, NULL); ((gunichar *) self->input->data, -1, NULL, NULL, NULL);
g_return_if_fail (input_utf8 != NULL);
StardictIterator *iterator =
stardict_dict_search (self->dict, input_utf8, NULL);
g_free (input_utf8);
self->top_position = stardict_iterator_get_offset (iterator); self->top_position = stardict_iterator_get_offset (iterator);
self->top_offset = 0; self->top_offset = 0;
g_object_unref (iterator); g_object_unref (iterator);
@ -505,7 +506,7 @@ app_process_nonchar_code (Application *self, CursesEvent *event)
app_redraw_top (self); app_redraw_top (self);
break; break;
case KEY_END: case KEY_END:
self->input_pos = g_utf8_strlen (self->input->str, -1); self->input_pos = self->input->len;
app_redraw_top (self); app_redraw_top (self);
break; break;
case KEY_LEFT: case KEY_LEFT:
@ -516,7 +517,7 @@ app_process_nonchar_code (Application *self, CursesEvent *event)
} }
break; break;
case KEY_RIGHT: case KEY_RIGHT:
if (self->input_pos < g_utf8_strlen (self->input->str, -1)) if (self->input_pos < self->input->len)
{ {
self->input_pos++; self->input_pos++;
app_redraw_top (self); app_redraw_top (self);
@ -525,23 +526,15 @@ app_process_nonchar_code (Application *self, CursesEvent *event)
case KEY_BACKSPACE: case KEY_BACKSPACE:
if (self->input_pos > 0) if (self->input_pos > 0)
{ {
gchar *current = g_utf8_offset_to_pointer g_array_remove_index (self->input, --self->input_pos);
(self->input->str, self->input_pos);
gchar *prev = g_utf8_prev_char (current);
g_string_erase (self->input,
prev - self->input->str, current - prev);
self->input_pos--;
app_search_for_entry (self); app_search_for_entry (self);
app_redraw_top (self); app_redraw_top (self);
} }
break; break;
case KEY_DC: case KEY_DC:
if (self->input_pos < g_utf8_strlen (self->input->str, -1)) if (self->input_pos < self->input->len)
{ {
gchar *current = g_utf8_offset_to_pointer g_array_remove_index (self->input, self->input_pos);
(self->input->str, self->input_pos);
g_string_erase (self->input, current - self->input->str,
g_utf8_next_char (current) - current);
app_search_for_entry (self); app_search_for_entry (self);
app_redraw_top (self); app_redraw_top (self);
} }
@ -554,9 +547,6 @@ app_process_nonchar_code (Application *self, CursesEvent *event)
static gboolean static gboolean
app_process_curses_event (Application *self, CursesEvent *event) app_process_curses_event (Application *self, CursesEvent *event)
{ {
/* g_utf8_offset_to_pointer() is too dumb to detect this */
g_assert (g_utf8_strlen (self->input->str, -1) >= self->input_pos);
if (!event->is_char) if (!event->is_char)
return app_process_nonchar_code (self, event); return app_process_nonchar_code (self, event);
@ -565,47 +555,44 @@ app_process_curses_event (Application *self, CursesEvent *event)
case KEY_ESCAPE: case KEY_ESCAPE:
return FALSE; return FALSE;
case KEY_VT: // Ctrl-K -- delete until the end of line case KEY_VT: // Ctrl-K -- delete until the end of line
g_string_erase (self->input, if (self->input_pos < self->input->len)
utf8_offset (self->input->str, self->input_pos), -1); {
g_array_remove_range (self->input,
app_search_for_entry (self); self->input_pos, self->input->len - self->input_pos);
app_redraw_top (self); app_search_for_entry (self);
app_redraw_top (self);
}
return TRUE; return TRUE;
case KEY_ETB: // Ctrl-W -- delete word before cursor case KEY_ETB: // Ctrl-W -- delete word before cursor
{ {
if (!self->input_pos) if (self->input_pos == 0)
return TRUE; return TRUE;
gchar *current = g_utf8_offset_to_pointer gint i = self->input_pos;
(self->input->str, self->input_pos); while (i)
gchar *space = g_utf8_strrchr (self->input->str, if (g_array_index (self->input, gunichar, --i) != L' ')
g_utf8_prev_char (current) - self->input->str, ' '); break;
while (i--)
if (g_array_index (self->input, gunichar, i) == L' ')
break;
if (space) i++;
{ g_array_remove_range (self->input, i, self->input_pos - i);
space = g_utf8_next_char (space); self->input_pos = i;
g_string_erase (self->input,
space - self->input->str, current - space);
self->input_pos = g_utf8_pointer_to_offset
(self->input->str, space);
}
else
{
g_string_erase (self->input, 0, current - self->input->str);
self->input_pos = 0;
}
app_search_for_entry (self); app_search_for_entry (self);
app_redraw_top (self); app_redraw_top (self);
return TRUE; return TRUE;
} }
case KEY_NAK: // Ctrl-U -- delete everything before the cursor case KEY_NAK: // Ctrl-U -- delete everything before the cursor
g_string_erase (self->input, 0, if (self->input->len != 0)
utf8_offset (self->input->str, self->input_pos)); {
self->input_pos = 0; g_array_remove_range (self->input, 0, self->input_pos);
self->input_pos = 0;
app_search_for_entry (self); app_search_for_entry (self);
app_redraw_top (self); app_redraw_top (self);
}
return TRUE; return TRUE;
} }
@ -614,12 +601,10 @@ app_process_curses_event (Application *self, CursesEvent *event)
self->wchar_to_utf8, NULL, NULL, NULL); self->wchar_to_utf8, NULL, NULL, NULL);
g_return_val_if_fail (letter != NULL, FALSE); g_return_val_if_fail (letter != NULL, FALSE);
if (g_unichar_isprint (g_utf8_get_char (letter))) gunichar c = g_utf8_get_char (letter);
if (g_unichar_isprint (c))
{ {
g_string_insert (self->input, g_array_insert_val (self->input, self->input_pos++, c);
utf8_offset (self->input->str, self->input_pos), letter);
self->input_pos += g_utf8_strlen (letter, -1);
app_search_for_entry (self); app_search_for_entry (self);
app_redraw_top (self); app_redraw_top (self);
} }