1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 17:55:24 -04:00
profanity/src/input_win.c

473 lines
12 KiB
C
Raw Normal View History

/*
* input_win.c
2012-02-20 15:07:38 -05:00
*
2013-01-10 21:05:29 -05:00
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*
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/>.
*
*/
2013-01-02 19:16:39 -05:00
#define _XOPEN_SOURCE_EXTENDED
2012-09-08 11:51:09 -04:00
#include "config.h"
#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
2013-01-02 15:27:37 -05:00
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H
#include <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
#define _inp_win_refresh() prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1)
2012-02-08 18:55:11 -05:00
static WINDOW *inp_win;
static int pad_start = 0;
static int rows, cols;
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 void _clear_input(void);
static void _go_to_end(int display_size);
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-02-08 18:55:11 -05:00
getmaxyx(stdscr, rows, cols);
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);
wmove(inp_win, 0, 0);
_inp_win_refresh();
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
{
int inp_x;
2012-04-22 15:59:36 -04:00
getmaxyx(stdscr, rows, cols);
inp_x = getcurx(inp_win);
2012-07-07 22:31:54 -04: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-07 22:31:54 -04:00
}
_inp_win_refresh();
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_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-07-07 16:24:39 -04:00
// echo off, and get some more input
2012-02-08 18:55:11 -05:00
noecho();
int result = wget_wch(inp_win, &ch);
2012-02-08 18:55:11 -05:00
gboolean in_command = FALSE;
2013-01-02 19:16:39 -05:00
if ((display_size > 0 && input[0] == '/') ||
(display_size == 0 && ch == '/')) {
in_command = TRUE;
}
if (prefs_get_states()) {
if (result == ERR) {
2012-11-19 18:15:42 -05:00
prof_handle_idle();
2012-10-30 21:36:52 -04:00
}
if (prefs_get_outtype() && (result != ERR) && !in_command
2013-01-02 19:16:39 -05:00
&& _printable(ch)) {
2012-11-19 18:15:42 -05:00
prof_handle_activity();
2012-10-30 21:36:52 -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) && result != KEY_CODE_YES) {
2013-01-05 19:20:34 -05:00
inp_x = getcurx(inp_win);
// handle insert if not at end of input
2013-01-02 19:16:39 -05:00
if (inp_x < display_size) {
2013-01-03 19:57:02 -05:00
char bytes[MB_CUR_MAX];
2013-01-03 17:41:03 -05:00
size_t utf_len = wcrtomb(bytes, ch, NULL);
2013-01-03 17:41:03 -05: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 17:41:03 -05:00
*size += utf_len;
input[*size] = '\0';
wprintw(inp_win, next_ch);
2013-01-05 19:20:34 -05: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-03 20:06:42 -05: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';
wprintw(inp_win, bytes);
display_size++;
2013-01-05 19:24:11 -05: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 18:15:27 -05: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
{
_clear_input();
_inp_win_refresh();
2012-02-29 18:15:27 -05:00
noecho();
mvwgetnstr(inp_win, 0, 1, passwd, 20);
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
{
_inp_win_refresh();
2012-02-29 18:15:27 -05:00
}
2012-10-27 20:08:04 -04:00
void
inp_replace_input(char *input, const char * const new_input, int *size)
{
int display_size;
2012-10-27 20:08:04 -04:00
strcpy(input, new_input);
*size = strlen(input);
display_size = g_utf8_strlen(input, *size);
inp_win_reset();
input[*size] = '\0';
wprintw(inp_win, input);
_go_to_end(display_size);
2012-10-27 20:08:04 -04:00
}
void
inp_win_reset(void)
{
_clear_input();
pad_start = 0;
_inp_win_refresh();
}
static void
_clear_input(void)
{
wclear(inp_win);
wmove(inp_win, 0, 0);
}
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
{
char *prev = NULL;
char *next = NULL;
int inp_x = 0;
2012-11-23 20:57:24 -05:00
int next_ch;
int display_size = 0;
if (*size != 0) {
display_size = g_utf8_strlen(input, *size);
}
2013-01-05 19:20:34 -05:00
inp_x = getcurx(inp_win);
2012-02-29 18:15:27 -05:00
switch(ch) {
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 = wgetch(inp_win);
2012-11-23 20:57:24 -05:00
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_win_reset();
2012-11-23 20:57:24 -05:00
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();
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();
wprintw(inp_win, input);
wmove(inp_win, 0, inp_x -1);
// if in middle, delete and shift chars left
2013-01-03 17:41:03 -05:00
} 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();
wprintw(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-01-05 16:32:28 -05:00
}
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
2013-01-03 19:19:18 -05: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';
2013-01-03 19:19:18 -05:00
g_free(start);
_clear_input();
2013-01-03 19:19:18 -05:00
wprintw(inp_win, input);
} 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-01-03 19:19:18 -05:00
wprintw(inp_win, input);
wmove(inp_win, 0, inp_x);
2012-04-09 18:40:26 -04:00
}
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)
2013-01-05 19:20:34 -05:00
wmove(inp_win, 0, inp_x-1);
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--;
_inp_win_refresh();
2012-07-07 21:21:39 -04:00
}
2012-02-29 18:15:27 -05:00
return 1;
2012-02-29 18:15:27 -05:00
case KEY_RIGHT:
2013-01-03 17:41:03 -05:00
if (inp_x < display_size) {
2013-01-05 19:20:34 -05:00
wmove(inp_win, 0, inp_x+1);
2012-07-07 22:18:39 -04:00
// current position off screen to right
if ((inp_x + 1 - pad_start) >= cols) {
pad_start++;
_inp_win_refresh();
2012-07-07 22:18:39 -04:00
}
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
}
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 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:
2013-01-05 19:20:34 -05:00
wmove(inp_win, 0, 0);
2012-07-07 22:18:39 -04:00
pad_start = 0;
_inp_win_refresh();
2012-07-07 22:18:39 -04:00
return 1;
case KEY_END:
_go_to_end(display_size);
return 1;
case 9: // tab
cmd_autocomplete(input, size);
return 1;
2012-02-29 18:15:27 -05:00
default:
return 0;
2012-02-08 18:55:11 -05:00
}
}
2013-01-05 17:45:34 -05:00
static void
_go_to_end(int display_size)
2013-01-05 17:45:34 -05:00
{
2013-01-05 19:20:34 -05:00
wmove(inp_win, 0, display_size);
2013-01-05 17:45:34 -05:00
if (display_size > cols-2) {
pad_start = display_size - cols + 1;
_inp_win_refresh();
2013-01-05 17:45:34 -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
{
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-23 19:23:24 -05:00
}