1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/src/ui/inputwin.c

705 lines
19 KiB
C
Raw Normal View History

/*
2013-02-02 19:57:46 +00:00
* inputwin.c
2012-02-20 20:07:38 +00:00
*
2013-01-11 02:05:29 +00:00
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*
2012-02-20 20:07:38 +00: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/>.
*
*/
2013-01-03 00:16:39 +00:00
#define _XOPEN_SOURCE_EXTENDED
2012-09-08 15:51:09 +00:00
#include "config.h"
#include <stdlib.h>
2012-08-26 00:50:50 +00:00
#include <string.h>
2013-01-03 00:16:39 +00:00
#include <wchar.h>
2012-05-10 22:51:06 +00:00
2013-01-02 20:27:37 +00:00
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H
#include <ncurses.h>
2012-09-08 15:51:09 +00:00
#endif
2012-05-10 22:51:06 +00:00
#include "command/command.h"
2013-02-02 20:55:58 +00:00
#include "common.h"
#include "config/accounts.h"
2013-02-02 21:59:29 +00:00
#include "config/preferences.h"
#include "config/theme.h"
2012-10-31 01:36:52 +00:00
#include "log.h"
2012-11-19 23:15:42 +00:00
#include "profanity.h"
2013-02-02 20:55:58 +00:00
#include "ui/ui.h"
#include "ui/windows.h"
#include "xmpp/xmpp.h"
2012-02-08 23:55:11 +00:00
#define _inp_win_refresh() prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1)
2012-02-08 23:55:11 +00:00
static WINDOW *inp_win;
static int pad_start = 0;
static int rows, cols;
2012-02-08 23:55:11 +00:00
2013-01-17 00:28:44 +00:00
static int _handle_edit(int result, const wint_t ch, char *input, int *size);
2013-03-02 23:01:12 +00:00
static int _handle_alt_key(char *input, int *size, int key);
static void _handle_backspace(int display_size, int inp_x, int *size, char *input);
2013-01-03 00:16:39 +00:00
static int _printable(const wint_t ch);
static void _clear_input(void);
static void _go_to_end(int display_size);
2012-02-29 23:15:27 +00:00
2012-07-24 22:19:48 +00:00
void
create_input_window(void)
2012-02-08 23:55:11 +00:00
{
2012-10-23 00:31:19 +00:00
#ifdef NCURSES_REENTRANT
set_escdelay(25);
#else
ESCDELAY = 25;
#endif
2012-02-08 23:55:11 +00:00
getmaxyx(stdscr, rows, cols);
inp_win = newpad(1, INP_WIN_MAX);
2012-11-22 02:01:49 +00:00
wbkgd(inp_win, COLOUR_INPUT_TEXT);
2012-02-08 23:55:11 +00:00
keypad(inp_win, TRUE);
wmove(inp_win, 0, 0);
_inp_win_refresh();
2012-02-08 23:55:11 +00:00
}
2012-07-24 22:19:48 +00:00
void
inp_win_resize(const char * const input, const int size)
2012-04-22 19:59:36 +00:00
{
int inp_x;
2012-04-22 19:59:36 +00:00
getmaxyx(stdscr, rows, cols);
inp_x = getcurx(inp_win);
2012-07-08 02:31:54 +00:00
// if lost cursor off screen, move contents to show it
if (inp_x >= pad_start + cols) {
pad_start = inp_x - (cols / 2);
if (pad_start < 0) {
pad_start = 0;
}
2012-07-08 02:31:54 +00:00
}
_inp_win_refresh();
2012-02-08 23:55:11 +00:00
}
2012-07-24 22:19:48 +00:00
void
inp_non_block(void)
2012-02-08 23:55:11 +00:00
{
2012-10-05 23:20:50 +00:00
wtimeout(inp_win, 20);
2012-02-08 23:55:11 +00:00
}
2012-07-24 22:19:48 +00:00
void
inp_block(void)
2012-02-17 00:42:41 +00:00
{
wtimeout(inp_win, -1);
}
2013-01-03 00:16:39 +00:00
wint_t
inp_get_char(char *input, int *size)
2012-02-08 23:55:11 +00:00
{
int inp_x = 0;
2012-02-29 23:15:27 +00:00
int i;
2013-01-03 00:16:39 +00:00
wint_t ch;
int display_size = 0;
if (*size != 0) {
display_size = g_utf8_strlen(input, *size);
}
2012-07-07 20:24:39 +00:00
// echo off, and get some more input
2012-02-08 23:55:11 +00:00
noecho();
int result = wget_wch(inp_win, &ch);
2012-02-08 23:55:11 +00:00
gboolean in_command = FALSE;
2013-01-03 00:16:39 +00:00
if ((display_size > 0 && input[0] == '/') ||
(display_size == 0 && ch == '/')) {
in_command = TRUE;
}
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_STATES)) {
if (result == ERR) {
2012-11-19 23:15:42 +00:00
prof_handle_idle();
2012-10-31 01:36:52 +00:00
}
if (prefs_get_boolean(PREF_OUTTYPE)
&& (result != ERR)
&& (result != KEY_CODE_YES)
&& !in_command
&& _printable(ch)) {
2012-11-19 23:15:42 +00:00
prof_handle_activity();
2012-10-31 01:36:52 +00:00
}
}
2013-01-17 19:43:49 +00:00
// if it wasn't an arrow key etc
2013-01-17 00:28:44 +00:00
if (!_handle_edit(result, ch, input, size)) {
if (_printable(ch) && result != KEY_CODE_YES) {
2013-01-06 00:20:34 +00:00
inp_x = getcurx(inp_win);
// handle insert if not at end of input
2013-01-03 00:16:39 +00:00
if (inp_x < display_size) {
2013-01-04 00:57:02 +00:00
char bytes[MB_CUR_MAX];
2013-01-03 22:41:03 +00:00
size_t utf_len = wcrtomb(bytes, ch, NULL);
2013-01-03 22:41:03 +00:00
char *next_ch = g_utf8_offset_to_pointer(input, inp_x);
char *offset;
for (offset = &input[*size - 1]; offset >= next_ch; offset--) {
*(offset + utf_len) = *offset;
}
for (i = 0; i < utf_len; i++) {
*(next_ch + i) = bytes[i];
}
2013-01-03 22:41:03 +00:00
*size += utf_len;
input[*size] = '\0';
2013-02-09 20:39:52 +00:00
waddstr(inp_win, next_ch);
2013-01-06 00:20:34 +00:00
wmove(inp_win, 0, inp_x + 1);
if (inp_x - pad_start > cols-3) {
pad_start++;
_inp_win_refresh();
}
// otherwise just append
} else {
char bytes[MB_CUR_MAX+1];
2013-01-04 01:06:42 +00:00
size_t utf_len = wcrtomb(bytes, ch, NULL);
// wcrtomb can return (size_t) -1
if (utf_len < MB_CUR_MAX) {
for (i = 0 ; i < utf_len; i++) {
input[(*size)++] = bytes[i];
}
input[*size] = '\0';
bytes[utf_len] = '\0';
2013-02-09 20:39:52 +00:00
waddstr(inp_win, bytes);
display_size++;
2013-01-06 00:24:11 +00:00
// if gone over screen size follow input
int rows, cols;
getmaxyx(stdscr, rows, cols);
if (display_size - pad_start > cols-2) {
pad_start++;
_inp_win_refresh();
}
}
2012-02-29 23:15:27 +00:00
}
cmd_reset_autocomplete();
2012-02-29 23:15:27 +00:00
}
}
echo();
2013-01-03 00:16:39 +00:00
return ch;
2012-02-29 23:15:27 +00:00
}
2012-07-24 22:19:48 +00:00
void
inp_get_password(char *passwd)
2012-02-29 23:15:27 +00:00
{
_clear_input();
_inp_win_refresh();
2012-02-29 23:15:27 +00:00
noecho();
mvwgetnstr(inp_win, 0, 1, passwd, MAX_PASSWORD_SIZE);
wmove(inp_win, 0, 0);
2012-02-29 23:15:27 +00:00
echo();
status_bar_clear();
}
2012-07-24 22:19:48 +00:00
void
inp_put_back(void)
2012-02-29 23:15:27 +00:00
{
_inp_win_refresh();
2012-02-29 23:15:27 +00:00
}
2012-10-28 00:08:04 +00:00
void
inp_replace_input(char *input, const char * const new_input, int *size)
{
int display_size;
2012-10-28 00:08:04 +00:00
strcpy(input, new_input);
*size = strlen(input);
display_size = g_utf8_strlen(input, *size);
inp_win_reset();
input[*size] = '\0';
2013-02-09 20:39:52 +00:00
waddstr(inp_win, input);
_go_to_end(display_size);
2012-10-28 00:08:04 +00:00
}
void
inp_win_reset(void)
{
_clear_input();
pad_start = 0;
_inp_win_refresh();
}
static void
_clear_input(void)
{
werase(inp_win);
wmove(inp_win, 0, 0);
}
2012-10-28 00:08:04 +00:00
2012-02-29 23:15:27 +00: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 22:19:48 +00:00
static int
2013-01-17 00:28:44 +00:00
_handle_edit(int result, const wint_t ch, char *input, int *size)
2012-02-29 23:15:27 +00:00
{
char *prev = NULL;
char *next = NULL;
int inp_x = 0;
2012-11-24 01:57:24 +00:00
int next_ch;
int display_size = 0;
if (*size != 0) {
display_size = g_utf8_strlen(input, *size);
}
2013-01-06 00:20:34 +00:00
inp_x = getcurx(inp_win);
2012-02-29 23:15:27 +00:00
2013-01-17 00:28:44 +00:00
// CTRL-LEFT
2013-08-10 19:47:56 +00:00
if ((result == KEY_CODE_YES) && (ch == 547 || ch == 545 || ch == 540 || ch == 539) && (inp_x > 0)) {
2013-01-17 00:28:44 +00:00
input[*size] = '\0';
gchar *curr_ch = g_utf8_offset_to_pointer(input, inp_x);
2013-01-17 00:59:40 +00:00
curr_ch = g_utf8_find_prev_char(input, curr_ch);
gchar *prev_ch;
gunichar curr_uni;
gunichar prev_uni;
2013-01-17 00:59:40 +00:00
while (curr_ch != NULL) {
curr_uni = g_utf8_get_char(curr_ch);
2013-01-17 00:28:44 +00:00
2013-01-17 00:59:40 +00:00
if (g_unichar_isspace(curr_uni)) {
curr_ch = g_utf8_find_prev_char(input, curr_ch);
} else {
prev_ch = g_utf8_find_prev_char(input, curr_ch);
if (prev_ch == NULL) {
curr_ch = NULL;
2012-11-24 01:57:24 +00:00
break;
2013-01-17 00:59:40 +00:00
} else {
prev_uni = g_utf8_get_char(prev_ch);
if (g_unichar_isspace(prev_uni)) {
break;
} else {
curr_ch = prev_ch;
}
2013-01-17 00:28:44 +00:00
}
}
2013-01-17 00:59:40 +00:00
}
2013-01-17 00:28:44 +00:00
2013-01-17 00:59:40 +00:00
if (curr_ch == NULL) {
inp_x = 0;
wmove(inp_win, 0, inp_x);
} else {
glong offset = g_utf8_pointer_to_offset(input, curr_ch);
inp_x = offset;
wmove(inp_win, 0, inp_x);
2012-11-24 01:57:24 +00:00
}
2013-01-17 00:59:40 +00:00
2013-01-17 00:28:44 +00: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;
}
_inp_win_refresh();
}
return 1;
2013-01-17 00:59:40 +00:00
// CTRL-RIGHT
2013-08-10 19:47:56 +00:00
} else if ((result == KEY_CODE_YES) && (ch == 562 || ch == 560 || ch == 555 || ch == 554) && (inp_x < display_size)) {
2013-01-17 02:21:00 +00:00
input[*size] = '\0';
gchar *curr_ch = g_utf8_offset_to_pointer(input, inp_x);
gchar *next_ch = g_utf8_find_next_char(curr_ch, NULL);
gunichar curr_uni;
gunichar next_uni;
gboolean moved = FALSE;
while (g_utf8_pointer_to_offset(input, next_ch) < display_size) {
curr_uni = g_utf8_get_char(curr_ch);
next_uni = g_utf8_get_char(next_ch);
curr_ch = next_ch;
next_ch = g_utf8_find_next_char(next_ch, NULL);
if (!g_unichar_isspace(curr_uni) && g_unichar_isspace(next_uni) && moved) {
break;
} else {
moved = TRUE;
}
}
if (next_ch == NULL) {
inp_x = display_size;
wmove(inp_win, 0, inp_x);
} else {
glong offset = g_utf8_pointer_to_offset(input, curr_ch);
if (offset == display_size - 1) {
inp_x = offset + 1;
} else {
inp_x = offset;
}
2013-01-17 02:21:00 +00:00
wmove(inp_win, 0, inp_x);
}
2013-01-17 00:59:40 +00:00
2013-01-17 02:21:00 +00:00
// if gone off screen to right, jump right (half a screen worth)
if (inp_x > pad_start + cols) {
pad_start = pad_start + (cols / 2);
2013-01-17 00:59:40 +00:00
_inp_win_refresh();
}
2013-01-17 02:21:00 +00:00
2013-01-17 00:28:44 +00:00
return 1;
2013-01-17 00:59:40 +00:00
// ALT-LEFT
} else if ((result == KEY_CODE_YES) && (ch == 537)) {
ui_previous_win();
return 1;
// ALT-RIGHT
} else if ((result == KEY_CODE_YES) && (ch == 552)) {
ui_next_win();
return 1;
2013-01-17 00:59:40 +00:00
// other editing keys
2013-01-17 00:28:44 +00:00
} else {
switch(ch) {
case 27: // ESC
2013-03-02 23:01:12 +00:00
// check for ALT-key
2013-01-17 00:28:44 +00:00
next_ch = wgetch(inp_win);
if (next_ch != ERR) {
2013-03-02 23:01:12 +00:00
return _handle_alt_key(input, size, next_ch);
2013-01-17 00:28:44 +00:00
} else {
*size = 0;
inp_win_reset();
return 1;
}
case 127:
_handle_backspace(display_size, inp_x, size, input);
return 1;
2013-01-17 00:28:44 +00:00
case KEY_BACKSPACE:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
_handle_backspace(display_size, inp_x, size, input);
2013-01-17 00:28:44 +00:00
return 1;
2013-01-17 00:28:44 +00:00
case KEY_DC: // DEL
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-17 00:28:44 +00:00
if (inp_x == display_size-1) {
gchar *start = g_utf8_substring(input, 0, inp_x);
for (*size = 0; *size < strlen(start); (*size)++) {
input[*size] = start[*size];
}
input[*size] = '\0';
g_free(start);
_clear_input();
2013-02-09 20:39:52 +00:00
waddstr(inp_win, input);
2013-01-17 00:28:44 +00:00
} else if (inp_x < display_size-1) {
gchar *start = g_utf8_substring(input, 0, inp_x);
gchar *end = g_utf8_substring(input, inp_x+1, *size);
GString *new = g_string_new(start);
g_string_append(new, end);
for (*size = 0; *size < strlen(new->str); (*size)++) {
input[*size] = new->str[*size];
}
input[*size] = '\0';
g_free(start);
g_free(end);
g_string_free(new, FALSE);
_clear_input();
2013-02-09 20:39:52 +00:00
waddstr(inp_win, input);
2013-01-17 00:28:44 +00:00
wmove(inp_win, 0, inp_x);
}
2013-01-17 00:28:44 +00:00
return 1;
2013-01-17 00:28:44 +00:00
case KEY_LEFT:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-17 00:28:44 +00:00
if (inp_x > 0) {
wmove(inp_win, 0, inp_x-1);
2012-02-08 23:55:11 +00:00
2013-01-17 00:28:44 +00:00
// current position off screen to left
if (inp_x - 1 < pad_start) {
pad_start--;
_inp_win_refresh();
}
2013-01-04 00:19:18 +00:00
}
2013-01-17 00:28:44 +00:00
return 1;
2013-01-17 00:28:44 +00:00
case KEY_RIGHT:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-17 00:28:44 +00:00
if (inp_x < display_size) {
wmove(inp_win, 0, inp_x+1);
2013-01-04 00:19:18 +00:00
2013-01-17 00:28:44 +00:00
// current position off screen to right
if ((inp_x + 1 - pad_start) >= cols) {
pad_start++;
_inp_win_refresh();
}
2013-01-04 00:19:18 +00:00
}
2013-01-17 00:28:44 +00:00
return 1;
2013-01-04 00:19:18 +00:00
2013-01-17 00:28:44 +00:00
case KEY_UP:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-28 01:35:11 +00:00
prev = cmd_history_previous(input, size);
2013-01-17 00:28:44 +00:00
if (prev) {
inp_replace_input(input, prev, size);
}
return 1;
2012-04-09 22:40:26 +00:00
2013-01-17 00:28:44 +00:00
case KEY_DOWN:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-28 01:35:11 +00:00
next = cmd_history_next(input, size);
2013-01-17 00:28:44 +00:00
if (next) {
inp_replace_input(input, next, size);
} else if (*size != 0) {
input[*size] = '\0';
cmd_history_append(input);
inp_replace_input(input, "", size);
2013-01-17 00:28:44 +00:00
}
return 1;
2013-01-17 00:28:44 +00:00
case KEY_HOME:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-17 00:28:44 +00:00
wmove(inp_win, 0, 0);
pad_start = 0;
_inp_win_refresh();
2013-01-17 00:28:44 +00:00
return 1;
2013-01-17 00:28:44 +00:00
case KEY_END:
2013-09-04 22:14:35 +00:00
if (result != KEY_CODE_YES) {
return 0;
}
2013-01-17 00:28:44 +00:00
_go_to_end(display_size);
return 1;
2012-02-29 23:15:27 +00:00
2013-01-17 00:28:44 +00:00
case 9: // tab
cmd_autocomplete(input, size);
return 1;
2012-07-08 01:21:39 +00:00
2013-01-17 00:28:44 +00:00
default:
return 0;
2012-07-08 02:18:39 +00:00
}
2012-02-08 23:55:11 +00:00
}
}
static void
_handle_backspace(int display_size, int inp_x, int *size, char *input)
{
roster_reset_search_attempts();
if (display_size > 0) {
// if at end, delete last char
if (inp_x >= display_size) {
gchar *start = g_utf8_substring(input, 0, inp_x-1);
for (*size = 0; *size < strlen(start); (*size)++) {
input[*size] = start[*size];
}
input[*size] = '\0';
g_free(start);
_clear_input();
waddstr(inp_win, input);
wmove(inp_win, 0, inp_x -1);
// if in middle, delete and shift chars left
} else if (inp_x > 0 && inp_x < display_size) {
gchar *start = g_utf8_substring(input, 0, inp_x - 1);
gchar *end = g_utf8_substring(input, inp_x, *size);
GString *new = g_string_new(start);
g_string_append(new, end);
for (*size = 0; *size < strlen(new->str); (*size)++) {
input[*size] = new->str[*size];
}
input[*size] = '\0';
g_free(start);
g_free(end);
g_string_free(new, FALSE);
_clear_input();
waddstr(inp_win, input);
wmove(inp_win, 0, inp_x -1);
}
// 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;
}
_inp_win_refresh();
}
}
}
2013-03-02 23:01:12 +00:00
static int
_handle_alt_key(char *input, int *size, int key)
{
2013-03-03 02:23:16 +00:00
int end_del = getcurx(inp_win);
int start_del = end_del;
2013-03-02 23:01:12 +00:00
switch (key)
{
case '1':
ui_switch_win(1);
2013-03-02 23:01:12 +00:00
break;
case '2':
ui_switch_win(2);
2013-03-02 23:01:12 +00:00
break;
case '3':
ui_switch_win(3);
2013-03-02 23:01:12 +00:00
break;
case '4':
ui_switch_win(4);
2013-03-02 23:01:12 +00:00
break;
case '5':
ui_switch_win(5);
2013-03-02 23:01:12 +00:00
break;
case '6':
ui_switch_win(6);
2013-03-02 23:01:12 +00:00
break;
case '7':
ui_switch_win(7);
2013-03-02 23:01:12 +00:00
break;
case '8':
ui_switch_win(8);
2013-03-02 23:01:12 +00:00
break;
case '9':
ui_switch_win(9);
2013-03-02 23:01:12 +00:00
break;
case '0':
ui_switch_win(0);
2013-03-02 23:01:12 +00:00
break;
case KEY_LEFT:
ui_previous_win();
break;
case KEY_RIGHT:
ui_next_win();
break;
case 263:
2013-03-02 23:01:12 +00:00
case 127:
2013-03-03 02:23:16 +00:00
input[*size] = '\0';
gchar *curr_ch = g_utf8_offset_to_pointer(input, end_del);
curr_ch = g_utf8_find_prev_char(input, curr_ch);
gchar *prev_ch;
gunichar curr_uni;
gunichar prev_uni;
while (curr_ch != NULL) {
curr_uni = g_utf8_get_char(curr_ch);
if (g_unichar_isspace(curr_uni)) {
curr_ch = g_utf8_find_prev_char(input, curr_ch);
} else {
prev_ch = g_utf8_find_prev_char(input, curr_ch);
if (prev_ch == NULL) {
curr_ch = NULL;
break;
} else {
prev_uni = g_utf8_get_char(prev_ch);
if (g_unichar_isspace(prev_uni)) {
break;
} else {
curr_ch = prev_ch;
}
}
}
}
if (curr_ch == NULL) {
start_del = 0;
} else {
start_del = g_utf8_pointer_to_offset(input, curr_ch);
}
gint len = g_utf8_strlen(input, -1);
gchar *start_string = g_utf8_substring(input, 0, start_del);
gchar *end_string = g_utf8_substring(input, end_del, len);
int i;
for (i = 0; i < strlen(start_string); i++) {
input[i] = start_string[i];
}
for (i = 0; i < strlen(end_string); i++) {
input[strlen(start_string)+i] = end_string[i];
}
*size = strlen(start_string)+i;
input[*size] = '\0';
_clear_input();
waddstr(inp_win, input);
wmove(inp_win, 0, start_del);
// if gone off screen to left, jump left (half a screen worth)
if (start_del <= pad_start) {
pad_start = pad_start - (cols / 2);
if (pad_start < 0) {
pad_start = 0;
}
_inp_win_refresh();
}
2013-03-02 23:01:12 +00:00
return 1;
break;
default:
break;
}
return 1;
}
2013-01-05 22:45:34 +00:00
static void
_go_to_end(int display_size)
2013-01-05 22:45:34 +00:00
{
2013-01-06 00:20:34 +00:00
wmove(inp_win, 0, display_size);
2013-01-05 22:45:34 +00:00
if (display_size > cols-2) {
pad_start = display_size - cols + 1;
_inp_win_refresh();
2013-01-05 22:45:34 +00:00
}
}
2012-07-24 22:19:48 +00:00
static int
2013-01-03 00:16:39 +00:00
_printable(const wint_t ch)
2012-02-08 23:55:11 +00:00
{
char bytes[MB_CUR_MAX+1];
size_t utf_len = wcrtomb(bytes, ch, NULL);
bytes[utf_len] = '\0';
gunichar unichar = g_utf8_get_char(bytes);
return g_unichar_isprint(unichar) && (ch != KEY_MOUSE);
2012-11-24 00:23:24 +00:00
}