From 9450c8f2fabcdff7f1c8086970b7dc191580db1f Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 9 Apr 2012 23:40:26 +0100 Subject: Implemented DEL key on input --- input_win.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/input_win.c b/input_win.c index 10fd2f40..96576070 100644 --- a/input_win.c +++ b/input_win.c @@ -176,6 +176,19 @@ static int _handle_edit(const int ch, char *input, int *size) } return 1; + case KEY_DC: // DEL + if (inp_x <= *size) { + wdelch(inp_win); + + // if not last char, shift chars left + if (inp_x < *size) + for (i = inp_x-1; i < *size; i++) + input[i] = input[i+1]; + + (*size)--; + } + return 1; + case KEY_LEFT: if (inp_x > 1) wmove(inp_win, inp_y, inp_x-1); -- cgit 1.4.1-2-gfad0