Add simple mouse support.

This commit is contained in:
Přemysl Eric Janouch 2013-05-15 13:03:54 +02:00
parent a7a85a8e55
commit e054f21ad5
1 changed files with 11 additions and 1 deletions

View File

@ -483,10 +483,19 @@ app_process_curses_event (CursesEvent *event)
case KEY_RESIZE:
// TODO adapt to the new window size, COLS, LINES
// mind the position of the selection cursor
app_reload_view ();
app_redraw ();
break;
case KEY_MOUSE:
// TODO move the item cursor, event->mouse.{x,y,bstate}
// TODO move the input entry cursor
if ((event->mouse.bstate & BUTTON1_PRESSED) &&
event->mouse.y > 0 &&
event->mouse.y <= (int) (count_view_items () - g_top_offset))
{
g_selected = event->mouse.y - 1;
app_redraw_view ();
app_redraw_top (); // FIXME just focus
}
break;
case KEY_UP:
@ -712,6 +721,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
nodelay (stdscr, TRUE); /* Don't block on get_wch(). */
mousemask (ALL_MOUSE_EVENTS, NULL); /* Register mouse events. */
mouseinterval (0);
if (pipe (g_winch_pipe) == -1)
abort ();