freebsd-dev/contrib/bsddialog/lib/textbox.c
Alfonso S. Siciliano b319d93437
contrib/bsddialog: Import version 0.3
New features overview:
 * Unicode. User interface handles multi-column characters. API can
   handle char* like a multibyte character string. Internally wide
   characters are used for keyboard input, to adapt word wrapping and
   dynamic text auto-sizing for multi-column characters.
 * Forms refactoring. Complete rewrite deleting libformw dependency.
 * Theme. New utility options to save and load custom theme at run-time.
 * TUI navigation. Added keys to navigate input components. Changed
   default focus behavior of input dialogs to be LGPL-dialog-like; a new
   option can set the previous whiptail-like behavior.

See /usr/src/contrib/bsddialog/CHANGELOG '2022-08-29 Version 0.3'
for more detailed information.

Merge commit '2c9fd7655ba54e7239f528e1af9fe09662de9b03'
2022-09-03 16:41:44 +02:00

281 lines
7.2 KiB
C

/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2021-2022 Alfonso Sabato Siciliano
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <curses.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include "bsddialog.h"
#include "bsddialog_theme.h"
#include "lib_util.h"
static void
updateborders(struct bsddialog_conf *conf, WINDOW *widget, int padmargin,
int hpad, int wpad, int ypad, int xpad)
{
int h, w;
chtype arrowch, borderch;
getmaxyx(widget, h, w);
if (conf->no_lines)
borderch = ' ';
else if (conf->ascii_lines)
borderch = '|';
else
borderch = ACS_VLINE;
if (xpad > 0) {
arrowch = conf->ascii_lines ? '<' : ACS_LARROW;
arrowch |= A_ATTRIBUTES & t.dialog.arrowcolor;
} else {
arrowch = borderch;
arrowch |= A_ATTRIBUTES & t.dialog.lineraisecolor;
}
mvwvline(widget, (h / 2) - 2, 0, arrowch, 4);
if (xpad + w-2-padmargin < wpad) {
arrowch = conf->ascii_lines ? '>' : ACS_RARROW;
arrowch |= A_ATTRIBUTES & t.dialog.arrowcolor;
} else {
arrowch = borderch;
arrowch |= A_ATTRIBUTES & t.dialog.linelowercolor;
}
mvwvline(widget, (h / 2) - 2, w - 1, arrowch, 4);
if (hpad > h - 4) {
wattron(widget, t.dialog.arrowcolor);
mvwprintw(widget, h-3, w-6, "%3d%%", 100 * (ypad+h-4)/ hpad);
wattroff(widget, t.dialog.arrowcolor);
}
}
static void
textbox_autosize(struct bsddialog_conf *conf, int rows, int cols, int *h,
int *w, int hpad, int wpad, int padmargin, struct buttons bs)
{
if (cols == BSDDIALOG_AUTOSIZE)
*w = widget_min_width(conf, 0, wpad + padmargin, &bs);
if (rows == BSDDIALOG_AUTOSIZE)
*h = widget_min_height(conf, 0, hpad, true);
}
static int
textbox_checksize(int rows, int cols, int hpad, struct buttons bs)
{
int mincols;
mincols = VBORDERS;
mincols += buttons_min_width(bs);
if (cols < mincols)
RETURN_ERROR("Few cols for the textbox");
if (rows < 4 /* HBORDERS + button*/ + (hpad > 0 ? 1 : 0))
RETURN_ERROR("Few rows for the textbox");
return (0);
}
/* API */
int
bsddialog_textbox(struct bsddialog_conf *conf, const char* file, int rows,
int cols)
{
bool loop, has_multi_col;
int i, retval, y, x, h, w;
int hpad, wpad, ypad, xpad, ys, ye, xs, xe, padmargin, printrows;
unsigned int defaulttablen, linecols;
wint_t input;
char buf[BUFSIZ];
FILE *fp;
struct buttons bs;
WINDOW *shadow, *widget, *pad;
if ((fp = fopen(file, "r")) == NULL)
RETURN_ERROR("Cannot open file");
defaulttablen = TABSIZE;
set_tabsize((conf->text.tablen == 0) ? TABSIZE : (int)conf->text.tablen);
hpad = 1;
wpad = 1;
pad = newpad(hpad, wpad);
wbkgd(pad, t.dialog.color);
padmargin = 0;
i = 0;
while (fgets(buf, BUFSIZ, fp) != NULL) {
if (str_props(buf, &linecols, &has_multi_col) != 0)
continue;
if ((int)linecols > wpad) {
wpad = linecols;
wresize(pad, hpad, wpad);
}
if (i > hpad-1) {
hpad++;
wresize(pad, hpad, wpad);
}
mvwaddstr(pad, i, 0, buf);
i++;
if (has_multi_col)
padmargin = 2;
}
fclose(fp);
set_tabsize(defaulttablen);
get_buttons(conf, &bs, "EXIT", NULL);
bs.curr = 0;
bs.nbuttons = 1;
if (set_widget_size(conf, rows, cols, &h, &w) != 0)
return (BSDDIALOG_ERROR);
textbox_autosize(conf, rows, cols, &h, &w, hpad, wpad, padmargin, bs);
if (textbox_checksize(h, w, hpad, bs) != 0)
return (BSDDIALOG_ERROR);
if (set_widget_position(conf, &y, &x, h, w) != 0)
return (BSDDIALOG_ERROR);
if (new_dialog(conf, &shadow, &widget, y, x, h, w, NULL, NULL, &bs,
true) != 0)
return (BSDDIALOG_ERROR);
ys = y + 1;
xs = (padmargin == 0) ? x + 1 : x + 2;
ye = ys + h - 5;
xe = xs + w - 3 - padmargin;
ypad = xpad = 0;
printrows = h-4;
loop = true;
while (loop) {
updateborders(conf, widget, padmargin, hpad, wpad, ypad, xpad);
/*
* Overflow multicolumn charchter right border:
* wnoutrefresh(widget);
* pnoutrefresh(pad, ypad, xpad, ys, xs, ye, xe);
* doupdate();
*/
wrefresh(widget);
prefresh(pad, ypad, xpad, ys, xs, ye, xe);
if (get_wch(&input) == ERR)
continue;
switch(input) {
case KEY_ENTER:
case 10: /* Enter */
retval = BSDDIALOG_OK;
loop = false;
break;
case 27: /* Esc */
if (conf->key.enable_esc) {
retval = BSDDIALOG_ESC;
loop = false;
}
break;
case KEY_HOME:
ypad = 0;
break;
case KEY_END:
ypad = hpad - printrows;
ypad = ypad < 0 ? 0 : ypad;
break;
case KEY_PPAGE:
ypad -= printrows;
ypad = ypad < 0 ? 0 : ypad;
break;
case KEY_NPAGE:
ypad += printrows;
if (ypad + printrows > hpad)
ypad = hpad - printrows;
break;
case '0':
xpad = 0;
case KEY_LEFT:
case 'h':
xpad = xpad > 0 ? xpad - 1 : 0;
break;
case KEY_RIGHT:
case 'l':
xpad = (xpad + w-2-padmargin) < wpad ? xpad + 1 : xpad;
break;
case KEY_UP:
case 'k':
ypad = ypad > 0 ? ypad - 1 : 0;
break;
case KEY_DOWN:
case'j':
ypad = ypad + printrows <= hpad -1 ? ypad + 1 : ypad;
break;
case KEY_F(1):
if (conf->key.f1_file == NULL &&
conf->key.f1_message == NULL)
break;
if (f1help(conf) != 0)
return (BSDDIALOG_ERROR);
/* No break, screen size can change */
case KEY_RESIZE:
/* Important for decreasing screen */
hide_widget(y, x, h, w, conf->shadow);
refresh();
if (set_widget_size(conf, rows, cols, &h, &w) != 0)
return (BSDDIALOG_ERROR);
textbox_autosize(conf, rows, cols, &h, &w, hpad, wpad,
padmargin, bs);
if (textbox_checksize(h, w, hpad, bs) != 0)
return (BSDDIALOG_ERROR);
if (set_widget_position(conf, &y, &x, h, w) != 0)
return (BSDDIALOG_ERROR);
ys = y + 1;
xs = (padmargin == 0) ? x + 1 : x + 2;
ye = ys + h - 5;
xe = xs + w - 3 - padmargin;
ypad = xpad = 0;
printrows = h - 4;
if (update_dialog(conf, shadow, widget, y, x, h, w,
NULL, NULL, &bs, true) != 0)
return (BSDDIALOG_ERROR);
/* Important to fix grey lines expanding screen */
refresh();
break;
default:
if (shortcut_buttons(input, &bs)) {
retval = bs.value[bs.curr];
loop = false;
}
}
}
end_dialog(conf, shadow, widget, pad);
return (retval);
}