2012-10-21 15:02:20 -04:00
|
|
|
/*
|
|
|
|
* input_win.c
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
/*
|
|
|
|
* Non blocking input char handling
|
|
|
|
*
|
|
|
|
* *size - holds the current size of input
|
|
|
|
* *input - holds the current input string, NOT null terminated at this point
|
|
|
|
* *ch - getch will put a charater here if there was any input
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-29 18:15:27 -05:00
|
|
|
* The example below shows the values of size, input, a call to wgetyx to
|
|
|
|
* find the current cursor location, and the index of the input string.
|
|
|
|
*
|
2012-10-21 15:02:20 -04:00
|
|
|
* view : |mple|
|
2012-07-07 21:43:28 -04:00
|
|
|
* input : "example te"
|
|
|
|
* index : "0123456789"
|
|
|
|
* inp_x : "0123456789"
|
|
|
|
* size : 10
|
|
|
|
* pad_start : 3
|
|
|
|
* cols : 4
|
2012-02-29 18:15:27 -05:00
|
|
|
*/
|
2013-01-02 19:16:39 -05:00
|
|
|
#define _XOPEN_SOURCE_EXTENDED
|
2012-09-08 11:51:09 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-03-10 17:32:07 -05:00
|
|
|
#include <stdlib.h>
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <string.h>
|
2013-01-02 19:16:39 -05:00
|
|
|
#include <wchar.h>
|
2012-05-10 18:51:06 -04:00
|
|
|
|
2012-09-08 11:51:09 -04:00
|
|
|
#ifdef HAVE_NCURSES_H
|
2012-02-08 18:55:11 -05:00
|
|
|
#include <ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
2013-01-02 15:27:37 -05:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
|
|
#include <ncursesw/ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
2012-05-10 18:51:06 -04:00
|
|
|
|
2012-08-22 20:08:06 -04:00
|
|
|
#include "common.h"
|
2012-06-04 18:59:09 -04:00
|
|
|
#include "command.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "contact_list.h"
|
|
|
|
#include "history.h"
|
2012-10-30 21:36:52 -04:00
|
|
|
#include "log.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "preferences.h"
|
2012-11-19 18:15:42 -05:00
|
|
|
#include "profanity.h"
|
2012-11-21 21:01:49 -05:00
|
|
|
#include "theme.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "ui.h"
|
2012-02-08 18:55:11 -05:00
|
|
|
|
|
|
|
static WINDOW *inp_win;
|
2012-07-07 16:51:43 -04:00
|
|
|
static int pad_start = 0;
|
2012-02-08 18:55:11 -05:00
|
|
|
|
2013-01-02 19:16:39 -05:00
|
|
|
static int _handle_edit(const wint_t ch, char *input, int *size);
|
|
|
|
static int _printable(const wint_t ch);
|
|
|
|
static gboolean _special_key(const wint_t ch);
|
2012-02-29 18:15:27 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
create_input_window(void)
|
2012-02-08 18:55:11 -05:00
|
|
|
{
|
2012-10-22 20:31:19 -04:00
|
|
|
#ifdef NCURSES_REENTRANT
|
|
|
|
set_escdelay(25);
|
|
|
|
#else
|
|
|
|
ESCDELAY = 25;
|
|
|
|
#endif
|
2012-10-22 18:30:20 -04:00
|
|
|
|
2012-02-08 18:55:11 -05:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2012-07-09 18:48:53 -04:00
|
|
|
inp_win = newpad(1, INP_WIN_MAX);
|
2012-11-21 21:01:49 -05:00
|
|
|
wbkgd(inp_win, COLOUR_INPUT_TEXT);
|
2012-02-08 18:55:11 -05:00
|
|
|
keypad(inp_win, TRUE);
|
2012-07-07 21:43:28 -04:00
|
|
|
wmove(inp_win, 0, 0);
|
2012-07-07 16:51:43 -04:00
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
inp_win_resize(const char * const input, const int size)
|
2012-04-22 15:59:36 -04:00
|
|
|
{
|
2012-09-10 17:57:42 -04:00
|
|
|
int rows, cols, inp_x;
|
2012-04-22 15:59:36 -04:00
|
|
|
getmaxyx(stdscr, rows, cols);
|
2012-09-10 17:57:42 -04:00
|
|
|
inp_x = getcurx(inp_win);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-07 22:31:54 -04:00
|
|
|
// if lost cursor off screen, move contents to show it
|
|
|
|
if (inp_x >= pad_start + cols) {
|
2012-07-09 18:48:53 -04:00
|
|
|
pad_start = inp_x - (cols / 2);
|
|
|
|
if (pad_start < 0) {
|
|
|
|
pad_start = 0;
|
|
|
|
}
|
2012-07-07 22:31:54 -04:00
|
|
|
}
|
|
|
|
|
2012-07-07 16:51:43 -04:00
|
|
|
prefresh(inp_win, pad_start, 0, rows-1, 0, rows-1, cols-1);
|
2012-04-22 15:59:36 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
inp_clear(void)
|
2012-02-08 18:55:11 -05:00
|
|
|
{
|
2012-07-07 15:56:49 -04:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
2012-02-08 18:55:11 -05:00
|
|
|
wclear(inp_win);
|
2012-07-07 21:43:28 -04:00
|
|
|
wmove(inp_win, 0, 0);
|
2012-07-07 16:51:43 -04:00
|
|
|
pad_start = 0;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
inp_non_block(void)
|
2012-02-08 18:55:11 -05:00
|
|
|
{
|
2012-10-05 19:20:50 -04:00
|
|
|
wtimeout(inp_win, 20);
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
inp_block(void)
|
2012-02-16 19:42:41 -05:00
|
|
|
{
|
|
|
|
wtimeout(inp_win, -1);
|
|
|
|
}
|
|
|
|
|
2013-01-02 19:16:39 -05:00
|
|
|
wint_t
|
|
|
|
inp_get_char(char *input, int *size)
|
2012-02-08 18:55:11 -05:00
|
|
|
{
|
|
|
|
int inp_y = 0;
|
|
|
|
int inp_x = 0;
|
2012-02-29 18:15:27 -05:00
|
|
|
int i;
|
2013-01-02 19:16:39 -05:00
|
|
|
wint_t ch;
|
|
|
|
int display_size = 0;
|
|
|
|
|
|
|
|
if (*size != 0) {
|
|
|
|
display_size = g_utf8_strlen(input, *size);
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-07 16:24:39 -04:00
|
|
|
// echo off, and get some more input
|
2012-02-08 18:55:11 -05:00
|
|
|
noecho();
|
2013-01-02 19:16:39 -05:00
|
|
|
wget_wch(inp_win, &ch);
|
2012-02-08 18:55:11 -05:00
|
|
|
|
2012-10-31 20:20:02 -04:00
|
|
|
gboolean in_command = FALSE;
|
|
|
|
|
2013-01-02 19:16:39 -05:00
|
|
|
if ((display_size > 0 && input[0] == '/') ||
|
|
|
|
(display_size == 0 && ch == '/')) {
|
2012-10-31 20:20:02 -04:00
|
|
|
in_command = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-31 18:08:00 -04:00
|
|
|
if (prefs_get_states()) {
|
2013-01-02 19:16:39 -05:00
|
|
|
if (ch == ERR) {
|
2012-11-19 18:15:42 -05:00
|
|
|
prof_handle_idle();
|
2012-10-30 21:36:52 -04:00
|
|
|
}
|
2013-01-02 19:16:39 -05:00
|
|
|
if (prefs_get_outtype() && (ch != ERR) && !in_command
|
|
|
|
&& _printable(ch)) {
|
2012-11-19 18:15:42 -05:00
|
|
|
prof_handle_activity();
|
2012-10-30 21:36:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-17 17:43:35 -04:00
|
|
|
// if it wasn't an arrow key etc
|
2013-01-02 19:16:39 -05:00
|
|
|
if (!_handle_edit(ch, input, size)) {
|
|
|
|
if (_printable(ch)) {
|
2012-04-17 17:43:35 -04:00
|
|
|
getyx(inp_win, inp_y, inp_x);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-04-17 17:43:35 -04:00
|
|
|
// handle insert if not at end of input
|
2013-01-02 19:16:39 -05:00
|
|
|
if (inp_x < display_size) {
|
|
|
|
winsch(inp_win, ch);
|
2012-04-17 17:43:35 -04:00
|
|
|
wmove(inp_win, inp_y, inp_x+1);
|
|
|
|
|
2012-07-07 21:43:28 -04:00
|
|
|
for (i = *size; i > inp_x; i--)
|
2012-04-17 17:43:35 -04:00
|
|
|
input[i] = input[i-1];
|
2013-01-02 19:16:39 -05:00
|
|
|
input[inp_x] = ch;
|
2012-04-17 17:43:35 -04:00
|
|
|
|
|
|
|
(*size)++;
|
|
|
|
|
|
|
|
// otherwise just append
|
|
|
|
} else {
|
2013-01-02 19:16:39 -05:00
|
|
|
char bytes[5];
|
|
|
|
size_t utf_len = wcrtomb(bytes, ch, NULL);
|
|
|
|
int i;
|
|
|
|
for (i = 0 ; i < utf_len; i++) {
|
|
|
|
input[(*size)++] = bytes[i];
|
|
|
|
}
|
2013-01-02 20:03:14 -05:00
|
|
|
input[*size] = '\0';
|
|
|
|
inp_clear();
|
|
|
|
wprintw(inp_win, input);
|
2013-01-02 19:16:39 -05:00
|
|
|
|
|
|
|
display_size++;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-07 16:51:43 -04:00
|
|
|
// if gone over screen size follow input
|
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
2013-01-02 19:16:39 -05:00
|
|
|
if (display_size - pad_start > cols-2) {
|
2012-07-07 16:51:43 -04:00
|
|
|
pad_start++;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
}
|
2012-02-29 18:15:27 -05:00
|
|
|
}
|
2012-04-17 17:43:35 -04:00
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
cmd_reset_autocomplete();
|
2012-02-29 18:15:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo();
|
2013-01-02 19:16:39 -05:00
|
|
|
|
|
|
|
return ch;
|
2012-02-29 18:15:27 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
inp_get_password(char *passwd)
|
2012-02-29 18:15:27 -05:00
|
|
|
{
|
2012-07-09 18:53:23 -04:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
wclear(inp_win);
|
2012-07-09 18:53:23 -04:00
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
2012-02-29 18:15:27 -05:00
|
|
|
noecho();
|
|
|
|
mvwgetnstr(inp_win, 0, 1, passwd, 20);
|
2012-07-07 21:43:28 -04:00
|
|
|
wmove(inp_win, 0, 0);
|
2012-02-29 18:15:27 -05:00
|
|
|
echo();
|
|
|
|
status_bar_clear();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
inp_put_back(void)
|
2012-02-29 18:15:27 -05:00
|
|
|
{
|
2012-07-07 15:56:49 -04:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
2012-07-07 16:51:43 -04:00
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
2012-02-29 18:15:27 -05:00
|
|
|
}
|
|
|
|
|
2012-11-23 20:57:24 -05:00
|
|
|
int
|
|
|
|
inp_get_next_char(void)
|
|
|
|
{
|
|
|
|
return wgetch(inp_win);
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:08:04 -04:00
|
|
|
void
|
|
|
|
inp_replace_input(char *input, const char * const new_input, int *size)
|
|
|
|
{
|
|
|
|
strcpy(input, new_input);
|
|
|
|
*size = strlen(input);
|
|
|
|
inp_clear();
|
2013-01-02 20:03:14 -05:00
|
|
|
input[*size] = '\0';
|
|
|
|
wprintw(inp_win, input);
|
2012-10-27 20:08:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
/*
|
|
|
|
* Deal with command editing, return 1 if ch was an edit
|
|
|
|
* key press: up, down, left, right or backspace
|
|
|
|
* return 0 if it wasnt
|
|
|
|
*/
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2013-01-02 19:16:39 -05:00
|
|
|
_handle_edit(const wint_t ch, char *input, int *size)
|
2012-02-29 18:15:27 -05:00
|
|
|
{
|
2012-07-07 16:59:01 -04:00
|
|
|
int i, rows, cols;
|
2012-02-29 18:15:27 -05:00
|
|
|
char *prev = NULL;
|
|
|
|
char *next = NULL;
|
|
|
|
int inp_y = 0;
|
|
|
|
int inp_x = 0;
|
2012-11-23 20:57:24 -05:00
|
|
|
int next_ch;
|
2013-01-02 20:42:02 -05:00
|
|
|
int display_size = 0;
|
|
|
|
|
|
|
|
if (*size != 0) {
|
|
|
|
display_size = g_utf8_strlen(input, *size);
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-07 16:59:01 -04:00
|
|
|
getmaxyx(stdscr, rows, cols);
|
2012-02-29 18:15:27 -05:00
|
|
|
getyx(inp_win, inp_y, inp_x);
|
|
|
|
|
|
|
|
switch(ch) {
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-10-22 18:30:20 -04:00
|
|
|
case 27: // ESC
|
2012-11-23 20:57:24 -05:00
|
|
|
// check for ALT-num
|
|
|
|
next_ch = inp_get_next_char();
|
|
|
|
if (next_ch != ERR) {
|
|
|
|
switch (next_ch)
|
|
|
|
{
|
|
|
|
case '1':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(0);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '2':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(1);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '3':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(2);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '4':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(3);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '5':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(4);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '6':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(5);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '7':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(6);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '8':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(7);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '9':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(8);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
case '0':
|
2012-11-25 19:57:41 -05:00
|
|
|
ui_switch_win(9);
|
2012-11-23 20:57:24 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
*size = 0;
|
|
|
|
inp_clear();
|
|
|
|
return 1;
|
|
|
|
}
|
2012-10-22 18:30:20 -04:00
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
case 127:
|
|
|
|
case KEY_BACKSPACE:
|
2012-10-21 18:46:30 -04:00
|
|
|
contact_list_reset_search_attempts();
|
2013-01-02 20:42:02 -05:00
|
|
|
if (display_size > 0) {
|
2012-02-26 18:33:14 -05:00
|
|
|
|
|
|
|
// if at end, delete last char
|
2013-01-02 20:42:02 -05:00
|
|
|
if (inp_x >= display_size) {
|
2012-02-26 18:33:14 -05:00
|
|
|
wmove(inp_win, inp_y, inp_x-1);
|
|
|
|
wdelch(inp_win);
|
|
|
|
(*size)--;
|
2013-01-02 20:42:02 -05:00
|
|
|
if (*size > 0) {
|
|
|
|
if (!g_unichar_validate(input[*size])) {
|
|
|
|
(*size)--;
|
|
|
|
}
|
|
|
|
}
|
2012-02-26 18:33:14 -05:00
|
|
|
|
|
|
|
// if in middle, delete and shift chars left
|
2012-07-07 21:52:46 -04:00
|
|
|
} else if (inp_x > 0 && inp_x < *size) {
|
|
|
|
for (i = inp_x; i < *size; i++)
|
2012-02-26 18:33:14 -05:00
|
|
|
input[i-1] = input[i];
|
|
|
|
(*size)--;
|
|
|
|
|
|
|
|
inp_clear();
|
|
|
|
for (i = 0; i < *size; i++)
|
|
|
|
waddch(inp_win, input[i]);
|
|
|
|
wmove(inp_win, 0, inp_x -1);
|
|
|
|
}
|
2012-07-09 18:48:53 -04:00
|
|
|
|
|
|
|
// if gone off screen to left, jump left (half a screen worth)
|
|
|
|
if (inp_x <= pad_start) {
|
|
|
|
pad_start = pad_start - (cols / 2);
|
|
|
|
if (pad_start < 0) {
|
|
|
|
pad_start = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
}
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
2012-02-29 18:15:27 -05:00
|
|
|
return 1;
|
2012-02-08 18:55:11 -05:00
|
|
|
|
2012-04-09 18:40:26 -04:00
|
|
|
case KEY_DC: // DEL
|
2012-07-07 21:56:14 -04:00
|
|
|
if (inp_x < *size) {
|
2012-04-09 18:40:26 -04:00
|
|
|
wdelch(inp_win);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-04-09 18:40:26 -04:00
|
|
|
// if not last char, shift chars left
|
2012-07-07 21:56:14 -04:00
|
|
|
if (inp_x < *size - 1)
|
|
|
|
for (i = inp_x; i < *size; i++)
|
2012-04-09 18:40:26 -04:00
|
|
|
input[i] = input[i+1];
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-04-09 18:40:26 -04:00
|
|
|
(*size)--;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
case KEY_LEFT:
|
2012-07-07 21:59:19 -04:00
|
|
|
if (inp_x > 0)
|
2012-02-26 15:09:39 -05:00
|
|
|
wmove(inp_win, inp_y, inp_x-1);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-07 21:21:39 -04:00
|
|
|
// current position off screen to left
|
2012-07-07 21:59:19 -04:00
|
|
|
if (inp_x - 1 < pad_start) {
|
2012-07-07 21:21:39 -04:00
|
|
|
pad_start--;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
}
|
2012-02-29 18:15:27 -05:00
|
|
|
return 1;
|
2012-02-26 15:09:39 -05:00
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
case KEY_RIGHT:
|
2012-07-07 22:18:39 -04:00
|
|
|
if (inp_x < *size) {
|
2012-02-26 15:09:39 -05:00
|
|
|
wmove(inp_win, inp_y, inp_x+1);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-07 22:18:39 -04:00
|
|
|
// current position off screen to right
|
|
|
|
if ((inp_x + 1 - pad_start) >= cols) {
|
|
|
|
pad_start++;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
}
|
2012-07-07 21:21:39 -04:00
|
|
|
}
|
2012-02-29 18:15:27 -05:00
|
|
|
return 1;
|
|
|
|
|
2012-07-07 22:18:39 -04:00
|
|
|
case KEY_UP:
|
|
|
|
prev = history_previous(input, size);
|
|
|
|
if (prev) {
|
2012-10-27 20:08:04 -04:00
|
|
|
inp_replace_input(input, prev, size);
|
2012-07-07 22:18:39 -04:00
|
|
|
pad_start = 0;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
}
|
|
|
|
return 1;
|
2012-07-07 21:21:39 -04:00
|
|
|
|
2012-07-07 22:18:39 -04:00
|
|
|
case KEY_DOWN:
|
|
|
|
next = history_next(input, size);
|
|
|
|
if (next) {
|
2012-10-27 20:08:04 -04:00
|
|
|
inp_replace_input(input, next, size);
|
2012-07-07 21:21:39 -04:00
|
|
|
pad_start = 0;
|
2012-07-07 17:19:01 -04:00
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
2012-07-07 22:18:39 -04:00
|
|
|
}
|
|
|
|
return 1;
|
2012-07-07 21:21:39 -04:00
|
|
|
|
2012-07-07 22:18:39 -04:00
|
|
|
case KEY_HOME:
|
|
|
|
wmove(inp_win, inp_y, 0);
|
|
|
|
pad_start = 0;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case KEY_END:
|
|
|
|
wmove(inp_win, inp_y, *size);
|
|
|
|
if (*size > cols-2) {
|
|
|
|
pad_start = *size - cols + 1;
|
|
|
|
prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1);
|
|
|
|
}
|
2012-04-09 18:06:25 -04:00
|
|
|
return 1;
|
|
|
|
|
2012-03-10 17:32:07 -05:00
|
|
|
case 9: // tab
|
2012-10-27 20:42:26 -04:00
|
|
|
cmd_autocomplete(input, size);
|
2012-03-10 17:32:07 -05:00
|
|
|
return 1;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-29 18:15:27 -05:00
|
|
|
default:
|
|
|
|
return 0;
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2013-01-02 19:16:39 -05:00
|
|
|
_printable(const wint_t ch)
|
2012-02-08 18:55:11 -05:00
|
|
|
{
|
2012-10-21 15:02:20 -04:00
|
|
|
return (ch != ERR && ch != '\n' &&
|
2012-11-19 20:53:30 -05:00
|
|
|
ch != KEY_PPAGE && ch != KEY_NPAGE && ch != KEY_MOUSE &&
|
2012-10-21 15:02:20 -04:00
|
|
|
ch != KEY_F(1) && ch != KEY_F(2) && ch != KEY_F(3) &&
|
2012-02-29 18:15:27 -05:00
|
|
|
ch != KEY_F(4) && ch != KEY_F(5) && ch != KEY_F(6) &&
|
|
|
|
ch != KEY_F(7) && ch != KEY_F(8) && ch != KEY_F(9) &&
|
2012-04-09 18:43:12 -04:00
|
|
|
ch != KEY_F(10) && ch!= KEY_F(11) && ch != KEY_F(12) &&
|
2012-11-23 19:23:24 -05:00
|
|
|
ch != KEY_IC && ch != KEY_EIC && ch != KEY_RESIZE &&
|
|
|
|
!_special_key(ch));
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
|
|
|
|
2012-11-23 19:23:24 -05:00
|
|
|
static gboolean
|
2013-01-02 19:16:39 -05:00
|
|
|
_special_key(const wint_t ch)
|
2012-11-23 19:23:24 -05:00
|
|
|
{
|
|
|
|
char *str = unctrl(ch);
|
|
|
|
return ((strlen(str) > 1) && g_str_has_prefix(str, "^"));
|
|
|
|
}
|