Center the view on search
A lot of the time a better match is actually before the point where we expect the entry to be. Can be turned off with Alt-C.
This commit is contained in:
parent
59dc1c31a8
commit
e740854dd2
48
src/sdtui.c
48
src/sdtui.c
|
@ -87,6 +87,7 @@ struct application
|
||||||
|
|
||||||
StardictDict * dict; ///< The current dictionary
|
StardictDict * dict; ///< The current dictionary
|
||||||
guint show_help : 1; ///< Whether help can be shown
|
guint show_help : 1; ///< Whether help can be shown
|
||||||
|
guint center_search : 1; ///< Whether to center the search
|
||||||
|
|
||||||
guint32 top_position; ///< Index of the topmost dict. entry
|
guint32 top_position; ///< Index of the topmost dict. entry
|
||||||
guint top_offset; ///< Offset into the top entry
|
guint top_offset; ///< Offset into the top entry
|
||||||
|
@ -253,6 +254,7 @@ app_init (Application *self, AppOptions *options, const gchar *filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
self->show_help = TRUE;
|
self->show_help = TRUE;
|
||||||
|
self->center_search = TRUE;
|
||||||
|
|
||||||
self->top_position = 0;
|
self->top_position = 0;
|
||||||
self->top_offset = 0;
|
self->top_offset = 0;
|
||||||
|
@ -592,7 +594,7 @@ app_count_view_items (Application *self)
|
||||||
return n_definitions;
|
return n_definitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Scroll up @a n entries.
|
/// Scroll up @a n entries. Doesn't redraw.
|
||||||
static gboolean
|
static gboolean
|
||||||
app_scroll_up (Application *self, guint n)
|
app_scroll_up (Application *self, guint n)
|
||||||
{
|
{
|
||||||
|
@ -628,12 +630,10 @@ app_scroll_up (Application *self, guint n)
|
||||||
(self->entries, self->entries->len - 1);
|
(self->entries, self->entries->len - 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
app_redraw_view (self);
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Scroll down @a n entries.
|
/// Scroll down @a n entries. Doesn't redraw.
|
||||||
static gboolean
|
static gboolean
|
||||||
app_scroll_down (Application *self, guint n)
|
app_scroll_down (Application *self, guint n)
|
||||||
{
|
{
|
||||||
|
@ -670,8 +670,6 @@ app_scroll_down (Application *self, guint n)
|
||||||
// Fix cursor to not point below the view items
|
// Fix cursor to not point below the view items
|
||||||
if (self->selected >= n_definitions - self->top_offset)
|
if (self->selected >= n_definitions - self->top_offset)
|
||||||
self->selected = n_definitions - self->top_offset - 1;
|
self->selected = n_definitions - self->top_offset - 1;
|
||||||
|
|
||||||
app_redraw_view (self);
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -704,10 +702,9 @@ app_one_entry_up (Application *self)
|
||||||
app_scroll_up (self, -first);
|
app_scroll_up (self, -first);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
self->selected = first;
|
self->selected = first;
|
||||||
|
|
||||||
app_redraw_view (self);
|
app_redraw_view (self);
|
||||||
}
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -732,11 +729,10 @@ app_one_entry_down (Application *self)
|
||||||
app_scroll_down (self, first - (LINES - TOP_BAR_CUTOFF - 1));
|
app_scroll_down (self, first - (LINES - TOP_BAR_CUTOFF - 1));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
self->selected = first;
|
self->selected = first;
|
||||||
|
|
||||||
app_redraw_view (self);
|
app_redraw_view (self);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/// Redraw everything.
|
/// Redraw everything.
|
||||||
static void
|
static void
|
||||||
|
@ -765,6 +761,18 @@ app_search_for_entry (Application *self)
|
||||||
|
|
||||||
self->show_help = FALSE;
|
self->show_help = FALSE;
|
||||||
app_reload_view (self);
|
app_reload_view (self);
|
||||||
|
|
||||||
|
// If the user wants it centered, just move the view up half a screen;
|
||||||
|
// actually, one third seems to be a better guess
|
||||||
|
if (self->center_search)
|
||||||
|
{
|
||||||
|
for (int half = (LINES - TOP_BAR_CUTOFF) / 3; half > 0; half--)
|
||||||
|
if (app_scroll_up (self, 1))
|
||||||
|
self->selected++;
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
app_redraw_view (self);
|
app_redraw_view (self);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -865,23 +873,19 @@ app_process_user_action (Application *self, UserAction action)
|
||||||
|
|
||||||
case USER_ACTION_GOTO_DEFINITION_PREVIOUS:
|
case USER_ACTION_GOTO_DEFINITION_PREVIOUS:
|
||||||
if (self->selected > 0)
|
if (self->selected > 0)
|
||||||
{
|
|
||||||
self->selected--;
|
self->selected--;
|
||||||
app_redraw_view (self);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
app_scroll_up (self, 1);
|
app_scroll_up (self, 1);
|
||||||
|
app_redraw_view (self);
|
||||||
RESTORE_CURSOR
|
RESTORE_CURSOR
|
||||||
return TRUE;
|
return TRUE;
|
||||||
case USER_ACTION_GOTO_DEFINITION_NEXT:
|
case USER_ACTION_GOTO_DEFINITION_NEXT:
|
||||||
if ((gint) self->selected < LINES - TOP_BAR_CUTOFF - 1 &&
|
if ((gint) self->selected < LINES - TOP_BAR_CUTOFF - 1 &&
|
||||||
self->selected < app_count_view_items (self) - self->top_offset - 1)
|
self->selected < app_count_view_items (self) - self->top_offset - 1)
|
||||||
{
|
|
||||||
self->selected++;
|
self->selected++;
|
||||||
app_redraw_view (self);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
app_scroll_down (self, 1);
|
app_scroll_down (self, 1);
|
||||||
|
app_redraw_view (self);
|
||||||
RESTORE_CURSOR
|
RESTORE_CURSOR
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
@ -897,11 +901,13 @@ app_process_user_action (Application *self, UserAction action)
|
||||||
case USER_ACTION_GOTO_PAGE_PREVIOUS:
|
case USER_ACTION_GOTO_PAGE_PREVIOUS:
|
||||||
app_scroll_up (self, LINES - TOP_BAR_CUTOFF);
|
app_scroll_up (self, LINES - TOP_BAR_CUTOFF);
|
||||||
// FIXME: selection
|
// FIXME: selection
|
||||||
|
app_redraw_view (self);
|
||||||
RESTORE_CURSOR
|
RESTORE_CURSOR
|
||||||
return TRUE;
|
return TRUE;
|
||||||
case USER_ACTION_GOTO_PAGE_NEXT:
|
case USER_ACTION_GOTO_PAGE_NEXT:
|
||||||
app_scroll_down (self, LINES - TOP_BAR_CUTOFF);
|
app_scroll_down (self, LINES - TOP_BAR_CUTOFF);
|
||||||
// FIXME: selection
|
// FIXME: selection
|
||||||
|
app_redraw_view (self);
|
||||||
RESTORE_CURSOR
|
RESTORE_CURSOR
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
@ -1106,11 +1112,21 @@ app_process_ctrl_key (Application *self, termo_key_t *event)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
app_process_alt_key (Application *self, termo_key_t *event)
|
||||||
|
{
|
||||||
|
if (event->code.codepoint == 'c')
|
||||||
|
self->center_search = !self->center_search;
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
app_process_key (Application *self, termo_key_t *event)
|
app_process_key (Application *self, termo_key_t *event)
|
||||||
{
|
{
|
||||||
if (event->modifiers == TERMO_KEYMOD_CTRL)
|
if (event->modifiers == TERMO_KEYMOD_CTRL)
|
||||||
return app_process_ctrl_key (self, event);
|
return app_process_ctrl_key (self, event);
|
||||||
|
if (event->modifiers == TERMO_KEYMOD_ALT)
|
||||||
|
return app_process_alt_key (self, event);
|
||||||
if (event->modifiers)
|
if (event->modifiers)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue