1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-08 19:34:14 -04:00
profanity/src/ui/inputwin.c

231 lines
5.0 KiB
C
Raw Normal View History

/*
2013-02-02 14:57:46 -05:00
* inputwin.c
2012-02-20 15:07:38 -05:00
*
2014-03-08 20:18:19 -05:00
* Copyright (C) 2012 - 2014 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/>.
*
* In addition, as a special exception, the copyright holders give permission to
* link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two.
*
* You must obey the GNU General Public License in all respects for all of the
* code used other than OpenSSL. If you modify file(s) with this exception, you
* may extend this exception to your version of the file(s), but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version. If you delete this exception statement from all
* source files in the program, then also delete it here.
*
2012-02-20 15:07:38 -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"
#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
2015-01-30 18:28:02 -05:00
#include <readline/readline.h>
#include <readline/history.h>
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
#include "command/command.h"
2013-02-02 15:55:58 -05:00
#include "common.h"
#include "config/accounts.h"
2013-02-02 16:59:29 -05:00
#include "config/preferences.h"
#include "config/theme.h"
2012-10-30 21:36:52 -04:00
#include "log.h"
#include "muc.h"
2012-11-19 18:15:42 -05:00
#include "profanity.h"
#include "roster_list.h"
2013-02-02 15:55:58 -05:00
#include "ui/ui.h"
2014-04-07 16:12:30 -04:00
#include "ui/statusbar.h"
2014-04-07 16:50:28 -04:00
#include "ui/inputwin.h"
#include "ui/windows.h"
#include "xmpp/xmpp.h"
2012-02-08 18:55:11 -05:00
static WINDOW *inp_win;
2015-01-16 18:32:57 -05:00
2015-01-30 18:28:02 -05:00
static struct timeval p_rl_timeout;
static fd_set fds;
static int r;
static gboolean cmd_result = TRUE;
static int pad_start = 0;
2012-02-08 18:55:11 -05:00
static void _inp_win_update_virtual(void);
2015-01-30 18:28:02 -05:00
static void
cb_linehandler(char *line)
{
if (*line) {
add_history(line);
}
rl_redisplay();
cmd_result = cmd_process_input(line);
free(line);
}
2014-04-07 16:50:28 -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
2015-01-30 18:28:02 -05:00
p_rl_timeout.tv_sec = 0;
p_rl_timeout.tv_usec = 500000;
rl_callback_handler_install(NULL, cb_linehandler);
inp_win = newpad(1, INP_WIN_MAX);
2014-11-16 15:40:19 -05:00
wbkgd(inp_win, theme_attrs(THEME_INPUT_TEXT));;
2012-02-08 18:55:11 -05:00
keypad(inp_win, TRUE);
wmove(inp_win, 0, 0);
_inp_win_update_virtual();
2012-02-08 18:55:11 -05:00
}
2014-04-07 16:50:28 -04:00
void
2014-11-19 11:32:26 -05:00
inp_win_resize(void)
2012-04-22 15:59:36 -04:00
{
int col = getcurx(inp_win);
int wcols = getmaxx(stdscr);
2012-07-07 22:31:54 -04:00
// if lost cursor off screen, move contents to show it
2015-01-18 17:55:51 -05:00
if (col >= pad_start + wcols) {
pad_start = col - (wcols / 2);
if (pad_start < 0) {
pad_start = 0;
}
2012-07-07 22:31:54 -04:00
}
2014-11-19 11:32:26 -05:00
wbkgd(inp_win, theme_attrs(THEME_INPUT_TEXT));;
_inp_win_update_virtual();
2012-02-08 18:55:11 -05:00
}
2015-01-27 17:13:09 -05:00
static int
offset_to_col(char *str, int offset)
{
int i = 0;
int col = 0;
mbstate_t internal;
while (i != offset && str[i] != '\n') {
gunichar uni = g_utf8_get_char(&str[i]);
size_t ch_len = mbrlen(&str[i], 4, &internal);
i += ch_len;
col++;
if (g_unichar_iswide(uni)) {
col++;
}
}
return col;
}
void
inp_write(char *line, int offset)
{
int col = offset_to_col(line, offset);
werase(inp_win);
waddstr(inp_win, line);
wmove(inp_win, 0, col);
_inp_win_update_virtual();
}
2014-04-07 16:50:28 -04:00
void
2015-01-30 18:28:02 -05:00
inp_non_block(gint block_timeout)
2012-02-08 18:55:11 -05:00
{
2015-01-30 18:28:02 -05:00
wtimeout(inp_win, block_timeout);
2012-02-08 18:55:11 -05:00
}
2014-04-07 16:50:28 -04:00
void
inp_block(void)
2012-02-16 19:42:41 -05:00
{
wtimeout(inp_win, -1);
}
2015-01-30 18:28:02 -05:00
gboolean
inp_readline(void)
{
FD_ZERO(&fds);
FD_SET(fileno(rl_instream), &fds);
2015-01-30 18:28:02 -05:00
r = select(FD_SETSIZE, &fds, NULL, NULL, &p_rl_timeout);
if (r < 0) {
log_error("Readline failed.");
return false;
}
if (FD_ISSET(fileno(rl_instream), &fds)) {
2015-01-30 18:28:02 -05:00
rl_callback_read_char();
inp_write(rl_line_buffer, rl_point);
}
p_rl_timeout.tv_sec = 0;
p_rl_timeout.tv_usec = 500000;
return cmd_result;
}
void
inp_close(void)
{
rl_callback_handler_remove();
}
2014-04-07 16:50:28 -04:00
void
inp_get_password(char *passwd)
2012-02-29 18:15:27 -05:00
{
2015-01-19 15:51:41 -05:00
werase(inp_win);
wmove(inp_win, 0, 0);
pad_start = 0;
_inp_win_update_virtual();
doupdate();
2012-02-29 18:15:27 -05:00
noecho();
mvwgetnstr(inp_win, 0, 1, passwd, MAX_PASSWORD_SIZE);
wmove(inp_win, 0, 0);
2012-02-29 18:15:27 -05:00
echo();
status_bar_clear();
}
2014-04-07 16:50:28 -04:00
void
inp_put_back(void)
2012-02-29 18:15:27 -05:00
{
_inp_win_update_virtual();
2012-02-29 18:15:27 -05:00
}
2014-04-07 16:50:28 -04:00
void
inp_win_clear(void)
{
2015-01-19 15:51:41 -05:00
werase(inp_win);
wmove(inp_win, 0, 0);
pad_start = 0;
_inp_win_update_virtual();
}
static void
_inp_win_update_virtual(void)
{
int wrows, wcols;
getmaxyx(stdscr, wrows, wcols);
pnoutrefresh(inp_win, 0, pad_start, wrows-1, 0, wrows-1, wcols-1);
2015-01-18 17:55:51 -05:00
}