You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1017 lines
21 KiB
1017 lines
21 KiB
/*************************************************************************** |
|
* Copyright (C) 2008-2014 by Andrzej Rybczak * |
|
* electricityispower@gmail.com * |
|
* * |
|
* This program 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 2 of the License, or * |
|
* (at your option) any later version. * |
|
* * |
|
* This program 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 this program; if not, write to the * |
|
* Free Software Foundation, Inc., * |
|
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * |
|
***************************************************************************/ |
|
|
|
#include <algorithm> |
|
#include <cstring> |
|
#include <cstdio> |
|
#include <cstdlib> |
|
#include <iostream> |
|
#include <readline/history.h> |
|
#include <readline/readline.h> |
|
|
|
#ifdef WIN32 |
|
# include <winsock.h> |
|
#else |
|
# include <sys/select.h> |
|
# include <unistd.h> |
|
#endif |
|
|
|
#include "error.h" |
|
#include "utility/string.h" |
|
#include "utility/wide_string.h" |
|
#include "window.h" |
|
|
|
namespace { |
|
|
|
namespace rl { |
|
|
|
bool aborted; |
|
|
|
NC::Window *w; |
|
size_t start_x; |
|
size_t start_y; |
|
size_t width; |
|
bool encrypted; |
|
const char *base; |
|
|
|
int read_key(FILE *) |
|
{ |
|
size_t x; |
|
bool done; |
|
int result; |
|
do |
|
{ |
|
x = w->getX(); |
|
if (w->runPromptHook(rl_line_buffer, &done)) |
|
{ |
|
if (done) |
|
{ |
|
rl_done = 1; |
|
return EOF; |
|
} |
|
w->goToXY(x, start_y); |
|
} |
|
w->refresh(); |
|
result = w->readKey(); |
|
if (!w->FDCallbacksListEmpty()) |
|
{ |
|
w->goToXY(x, start_y); |
|
w->refresh(); |
|
} |
|
} |
|
while (result == ERR); |
|
return result; |
|
} |
|
|
|
void display_string() |
|
{ |
|
auto print_char = [](wchar_t wc) { |
|
if (encrypted) |
|
*w << '*'; |
|
else |
|
*w << wc; |
|
}; |
|
auto print_string = [](wchar_t *ws, size_t len) { |
|
if (encrypted) |
|
for (size_t i = 0; i < len; ++i) |
|
*w << '*'; |
|
else |
|
*w << ws; |
|
}; |
|
auto narrow_to_wide = [](wchar_t *dest, const char *src, size_t n) { |
|
size_t result = 0; |
|
// convert the string and substitute invalid multibyte chars with dots. |
|
for (size_t i = 0; i < n;) |
|
{ |
|
int ret = mbtowc(&dest[result], &src[i], n-i); |
|
if (ret > 0) |
|
{ |
|
i += ret; |
|
++result; |
|
} |
|
else if (ret == -1) |
|
{ |
|
dest[result] = L'.'; |
|
++i; |
|
++result; |
|
} |
|
else |
|
throw std::runtime_error("mbtowc: unexpected return value"); |
|
} |
|
return result; |
|
}; |
|
|
|
// copy the part of the string that is before the cursor to pre_pos |
|
char pt = rl_line_buffer[rl_point]; |
|
rl_line_buffer[rl_point] = 0; |
|
wchar_t pre_pos[rl_point+1]; |
|
pre_pos[narrow_to_wide(pre_pos, rl_line_buffer, rl_point)] = 0; |
|
rl_line_buffer[rl_point] = pt; |
|
|
|
int pos = wcswidth(pre_pos, rl_point); |
|
if (pos < 0) |
|
pos = rl_point; |
|
|
|
// clear the area for the string |
|
mvwhline(w->raw(), start_y, start_x, ' ', width+1); |
|
|
|
w->goToXY(start_x, start_y); |
|
if (size_t(pos) <= width) |
|
{ |
|
// if the current position in the string is not bigger than allowed |
|
// width, print the part of the string before cursor position... |
|
|
|
print_string(pre_pos, pos); |
|
|
|
// ...and then print the rest char-by-char until there is no more area |
|
wchar_t post_pos[rl_end-rl_point+1]; |
|
post_pos[narrow_to_wide(post_pos, rl_line_buffer+rl_point, rl_end-rl_point)] = 0; |
|
|
|
size_t cpos = pos; |
|
for (wchar_t *c = post_pos; *c != 0; ++c) |
|
{ |
|
int n = wcwidth(*c); |
|
if (n < 0) |
|
{ |
|
print_char(L'.'); |
|
++cpos; |
|
} |
|
else |
|
{ |
|
if (cpos+n > width) |
|
break; |
|
cpos += n; |
|
print_char(*c); |
|
} |
|
} |
|
} |
|
else |
|
{ |
|
// if the current position in the string is bigger than allowed |
|
// width, we always keep the cursor at the end of the line (it |
|
// would be nice to have more flexible scrolling, but for now |
|
// let's stick to that) by cutting the beginning of the part |
|
// of the string before the cursor until it fits the area. |
|
|
|
wchar_t *mod_pre_pos = pre_pos; |
|
while (*mod_pre_pos != 0) |
|
{ |
|
++mod_pre_pos; |
|
int n = wcwidth(*mod_pre_pos); |
|
if (n < 0) |
|
--pos; |
|
else |
|
pos -= n; |
|
if (size_t(pos) <= width) |
|
break; |
|
} |
|
print_string(mod_pre_pos, pos); |
|
} |
|
w->goToXY(start_x+pos, start_y); |
|
} |
|
|
|
int add_base() |
|
{ |
|
rl_insert_text(base); |
|
return 0; |
|
} |
|
|
|
} |
|
} |
|
|
|
namespace NC { |
|
|
|
const short Color::transparent = -1; |
|
const short Color::previous = -2; |
|
|
|
Color Color::Default(0, 0, true, false); |
|
Color Color::Black(COLOR_BLACK, Color::transparent); |
|
Color Color::Red(COLOR_RED, Color::transparent); |
|
Color Color::Green(COLOR_GREEN, Color::transparent); |
|
Color Color::Yellow(COLOR_YELLOW, Color::transparent); |
|
Color Color::Blue(COLOR_BLUE, Color::transparent); |
|
Color Color::Magenta(COLOR_MAGENTA, Color::transparent); |
|
Color Color::Cyan(COLOR_CYAN, Color::transparent); |
|
Color Color::White(COLOR_WHITE, Color::transparent); |
|
Color Color::End(0, 0, false, true); |
|
|
|
int Color::pairNumber() const |
|
{ |
|
int result; |
|
if (isDefault()) |
|
result = 0; |
|
else if (previousBackground()) |
|
throw std::logic_error("color depends on the previous background value"); |
|
else if (isEnd()) |
|
throw std::logic_error("'end' doesn't have a corresponding pair number"); |
|
else |
|
{ |
|
// colors start with 0, but pairs start with 1. additionally |
|
// first pairs are for transparent background, which has a |
|
// value of -1, so we need to add 1 to both foreground and |
|
// background value. |
|
result = background() + 1; |
|
result *= COLORS; |
|
result += foreground() + 1; |
|
} |
|
return result; |
|
} |
|
|
|
std::istream &operator>>(std::istream &is, Color &c) |
|
{ |
|
auto get_single_color = [](const std::string &s, bool background) { |
|
short result = -1; |
|
if (s == "black") |
|
result = COLOR_BLACK; |
|
else if (s == "red") |
|
result = COLOR_RED; |
|
else if (s == "green") |
|
result = COLOR_GREEN; |
|
else if (s == "yellow") |
|
result = COLOR_YELLOW; |
|
else if (s == "blue") |
|
result = COLOR_BLUE; |
|
else if (s == "magenta") |
|
result = COLOR_MAGENTA; |
|
else if (s == "cyan") |
|
result = COLOR_CYAN; |
|
else if (s == "white") |
|
result = COLOR_WHITE; |
|
else if (background && s == "previous") |
|
result = NC::Color::previous; |
|
else if (std::all_of(s.begin(), s.end(), isdigit)) |
|
{ |
|
result = atoi(s.c_str()); |
|
if (result < 1 || result > 256) |
|
result = -1; |
|
else |
|
--result; |
|
} |
|
return result; |
|
}; |
|
std::string sc; |
|
is >> sc; |
|
if (sc == "default") |
|
c = Color::Default; |
|
else if (sc == "end") |
|
c = Color::End; |
|
else |
|
{ |
|
short value = get_single_color(sc, false); |
|
if (value != -1) |
|
c = Color(value, NC::Color::transparent); |
|
else |
|
{ |
|
size_t underscore = sc.find('_'); |
|
if (underscore != std::string::npos) |
|
{ |
|
short fg = get_single_color(sc.substr(0, underscore), false); |
|
short bg = get_single_color(sc.substr(underscore+1), true); |
|
if (fg != -1 && bg != -1) |
|
c = Color(fg, bg); |
|
else |
|
is.setstate(std::ios::failbit); |
|
} |
|
else |
|
is.setstate(std::ios::failbit); |
|
} |
|
} |
|
return is; |
|
} |
|
|
|
void initScreen(bool enable_colors) |
|
{ |
|
initscr(); |
|
if (has_colors() && enable_colors) |
|
{ |
|
start_color(); |
|
use_default_colors(); |
|
int npair = 1; |
|
for (int bg = -1; bg < COLORS; ++bg) |
|
{ |
|
for (int fg = 0; npair < COLOR_PAIRS && fg < COLORS; ++fg, ++npair) |
|
init_pair(npair, fg, bg); |
|
} |
|
} |
|
raw(); |
|
nonl(); |
|
noecho(); |
|
curs_set(0); |
|
|
|
// initialize readline (needed, otherwise we get segmentation |
|
// fault on SIGWINCH). also, initialize first as doing this |
|
// later erases keys bound with rl_bind_key for some users. |
|
rl_initialize(); |
|
// disable autocompletion |
|
rl_attempted_completion_function = [](const char *, int, int) -> char ** { |
|
rl_attempted_completion_over = 1; |
|
return nullptr; |
|
}; |
|
auto abort_prompt = [](int, int) -> int { |
|
rl::aborted = true; |
|
rl_done = 1; |
|
return 0; |
|
}; |
|
// if ctrl-c or ctrl-g is pressed, abort the prompt |
|
rl_bind_key(KEY_CTRL_C, abort_prompt); |
|
rl_bind_key(KEY_CTRL_G, abort_prompt); |
|
// do not change the state of the terminal |
|
rl_prep_term_function = nullptr; |
|
rl_deprep_term_function = nullptr; |
|
// do not catch signals |
|
rl_catch_signals = 0; |
|
// overwrite readline callbacks |
|
rl_getc_function = rl::read_key; |
|
rl_redisplay_function = rl::display_string; |
|
rl_startup_hook = rl::add_base; |
|
} |
|
|
|
void destroyScreen() |
|
{ |
|
curs_set(1); |
|
endwin(); |
|
} |
|
|
|
Window::Window(size_t startx, |
|
size_t starty, |
|
size_t width, |
|
size_t height, |
|
std::string title, |
|
Color color, |
|
Border border) |
|
: m_window(nullptr), |
|
m_start_x(startx), |
|
m_start_y(starty), |
|
m_width(width), |
|
m_height(height), |
|
m_window_timeout(-1), |
|
m_color(color), |
|
m_base_color(color), |
|
m_border(std::move(border)), |
|
m_prompt_hook(0), |
|
m_title(std::move(title)), |
|
m_bold_counter(0), |
|
m_underline_counter(0), |
|
m_reverse_counter(0), |
|
m_alt_charset_counter(0) |
|
{ |
|
if (m_start_x > size_t(COLS) |
|
|| m_start_y > size_t(LINES) |
|
|| m_width+m_start_x > size_t(COLS) |
|
|| m_height+m_start_y > size_t(LINES)) |
|
throw std::logic_error("constructed window doesn't fit into the terminal"); |
|
|
|
if (m_border) |
|
{ |
|
++m_start_x; |
|
++m_start_y; |
|
m_width -= 2; |
|
m_height -= 2; |
|
} |
|
if (!m_title.empty()) |
|
{ |
|
m_start_y += 2; |
|
m_height -= 2; |
|
} |
|
|
|
m_window = newpad(m_height, m_width); |
|
|
|
setColor(m_color); |
|
keypad(m_window, 1); |
|
} |
|
|
|
Window::Window(const Window &rhs) |
|
: m_window(dupwin(rhs.m_window)) |
|
, m_start_x(rhs.m_start_x) |
|
, m_start_y(rhs.m_start_y) |
|
, m_width(rhs.m_width) |
|
, m_height(rhs.m_height) |
|
, m_window_timeout(rhs.m_window_timeout) |
|
, m_color(rhs.m_color) |
|
, m_base_color(rhs.m_base_color) |
|
, m_border(rhs.m_border) |
|
, m_prompt_hook(rhs.m_prompt_hook) |
|
, m_title(rhs.m_title) |
|
, m_color_stack(rhs.m_color_stack) |
|
, m_input_queue(rhs.m_input_queue) |
|
, m_fds(rhs.m_fds) |
|
, m_bold_counter(rhs.m_bold_counter) |
|
, m_underline_counter(rhs.m_underline_counter) |
|
, m_reverse_counter(rhs.m_reverse_counter) |
|
, m_alt_charset_counter(rhs.m_alt_charset_counter) |
|
{ |
|
} |
|
|
|
Window::Window(Window &&rhs) |
|
: m_window(rhs.m_window) |
|
, m_start_x(rhs.m_start_x) |
|
, m_start_y(rhs.m_start_y) |
|
, m_width(rhs.m_width) |
|
, m_height(rhs.m_height) |
|
, m_window_timeout(rhs.m_window_timeout) |
|
, m_color(rhs.m_color) |
|
, m_base_color(rhs.m_base_color) |
|
, m_border(rhs.m_border) |
|
, m_prompt_hook(rhs.m_prompt_hook) |
|
, m_title(std::move(rhs.m_title)) |
|
, m_color_stack(std::move(rhs.m_color_stack)) |
|
, m_input_queue(std::move(rhs.m_input_queue)) |
|
, m_fds(std::move(rhs.m_fds)) |
|
, m_bold_counter(rhs.m_bold_counter) |
|
, m_underline_counter(rhs.m_underline_counter) |
|
, m_reverse_counter(rhs.m_reverse_counter) |
|
, m_alt_charset_counter(rhs.m_alt_charset_counter) |
|
{ |
|
rhs.m_window = nullptr; |
|
} |
|
|
|
Window &Window::operator=(Window rhs) |
|
{ |
|
std::swap(m_window, rhs.m_window); |
|
std::swap(m_start_x, rhs.m_start_x); |
|
std::swap(m_start_y, rhs.m_start_y); |
|
std::swap(m_width, rhs.m_width); |
|
std::swap(m_height, rhs.m_height); |
|
std::swap(m_window_timeout, rhs.m_window_timeout); |
|
std::swap(m_color, rhs.m_color); |
|
std::swap(m_base_color, rhs.m_base_color); |
|
std::swap(m_border, rhs.m_border); |
|
std::swap(m_prompt_hook, rhs.m_prompt_hook); |
|
std::swap(m_title, rhs.m_title); |
|
std::swap(m_color_stack, rhs.m_color_stack); |
|
std::swap(m_input_queue, rhs.m_input_queue); |
|
std::swap(m_fds, rhs.m_fds); |
|
std::swap(m_bold_counter, rhs.m_bold_counter); |
|
std::swap(m_underline_counter, rhs.m_underline_counter); |
|
std::swap(m_reverse_counter, rhs.m_reverse_counter); |
|
std::swap(m_alt_charset_counter, rhs.m_alt_charset_counter); |
|
return *this; |
|
} |
|
|
|
Window::~Window() |
|
{ |
|
delwin(m_window); |
|
} |
|
|
|
void Window::setColor(Color c) |
|
{ |
|
if (c.isDefault()) |
|
c = m_base_color; |
|
if (c != Color::Default) |
|
{ |
|
if (c.previousBackground()) |
|
c = Color(c.foreground(), m_color.background()); |
|
wcolor_set(m_window, c.pairNumber(), nullptr); |
|
} |
|
else |
|
wcolor_set(m_window, m_base_color.pairNumber(), nullptr); |
|
m_color = std::move(c); |
|
} |
|
|
|
void Window::setBaseColor(Color c) |
|
{ |
|
m_base_color = std::move(c); |
|
} |
|
|
|
void Window::setBorder(Border border) |
|
{ |
|
if (!border && m_border) |
|
{ |
|
--m_start_x; |
|
--m_start_y; |
|
m_height += 2; |
|
m_width += 2; |
|
recreate(m_width, m_height); |
|
} |
|
else if (border && !m_border) |
|
{ |
|
++m_start_x; |
|
++m_start_y; |
|
m_height -= 2; |
|
m_width -= 2; |
|
recreate(m_width, m_height); |
|
} |
|
m_border = border; |
|
} |
|
|
|
void Window::setTitle(const std::string &new_title) |
|
{ |
|
if (!new_title.empty() && m_title.empty()) |
|
{ |
|
m_start_y += 2; |
|
m_height -= 2; |
|
recreate(m_width, m_height); |
|
} |
|
else if (new_title.empty() && !m_title.empty()) |
|
{ |
|
m_start_y -= 2; |
|
m_height += 2; |
|
recreate(m_width, m_height); |
|
} |
|
m_title = new_title; |
|
} |
|
|
|
void Window::recreate(size_t width, size_t height) |
|
{ |
|
delwin(m_window); |
|
m_window = newpad(height, width); |
|
setTimeout(m_window_timeout); |
|
setColor(m_color); |
|
keypad(m_window, 1); |
|
} |
|
|
|
void Window::moveTo(size_t new_x, size_t new_y) |
|
{ |
|
m_start_x = new_x; |
|
m_start_y = new_y; |
|
if (m_border) |
|
{ |
|
++m_start_x; |
|
++m_start_y; |
|
} |
|
if (!m_title.empty()) |
|
m_start_y += 2; |
|
} |
|
|
|
void Window::adjustDimensions(size_t width, size_t height) |
|
{ |
|
if (m_border) |
|
{ |
|
width -= 2; |
|
height -= 2; |
|
} |
|
if (!m_title.empty()) |
|
height -= 2; |
|
m_height = height; |
|
m_width = width; |
|
} |
|
|
|
void Window::resize(size_t new_width, size_t new_height) |
|
{ |
|
adjustDimensions(new_width, new_height); |
|
recreate(m_width, m_height); |
|
} |
|
|
|
void Window::refreshBorder() const |
|
{ |
|
if (m_border) |
|
{ |
|
size_t start_x = getStartX(), start_y = getStarty(); |
|
size_t width = getWidth(), height = getHeight(); |
|
color_set(m_border->pairNumber(), nullptr); |
|
attron(A_ALTCHARSET); |
|
// corners |
|
mvaddch(start_y, start_x, 'l'); |
|
mvaddch(start_y, start_x+width-1, 'k'); |
|
mvaddch(start_y+height-1, start_x, 'm'); |
|
mvaddch(start_y+height-1, start_x+width-1, 'j'); |
|
// lines |
|
mvhline(start_y, start_x+1, 'q', width-2); |
|
mvhline(start_y+height-1, start_x+1, 'q', width-2); |
|
mvvline(start_y+1, start_x, 'x', height-2); |
|
mvvline(start_y+1, start_x+width-1, 'x', height-2); |
|
if (!m_title.empty()) |
|
{ |
|
mvaddch(start_y+2, start_x, 't'); |
|
mvaddch(start_y+2, start_x+width-1, 'u'); |
|
} |
|
attroff(A_ALTCHARSET); |
|
} |
|
else |
|
color_set(m_base_color.pairNumber(), nullptr); |
|
if (!m_title.empty()) |
|
{ |
|
// clear title line |
|
mvhline(m_start_y-2, m_start_x, ' ', m_width); |
|
attron(A_BOLD); |
|
mvaddstr(m_start_y-2, m_start_x, m_title.c_str()); |
|
attroff(A_BOLD); |
|
// add separator |
|
mvhline(m_start_y-1, m_start_x, 0, m_width); |
|
} |
|
standend(); |
|
::refresh(); |
|
} |
|
|
|
void Window::display() |
|
{ |
|
refreshBorder(); |
|
refresh(); |
|
} |
|
|
|
void Window::refresh() |
|
{ |
|
prefresh(m_window, 0, 0, m_start_y, m_start_x, m_start_y+m_height-1, m_start_x+m_width-1); |
|
} |
|
|
|
void Window::clear() |
|
{ |
|
werase(m_window); |
|
} |
|
|
|
void Window::bold(bool bold_state) const |
|
{ |
|
(bold_state ? wattron : wattroff)(m_window, A_BOLD); |
|
} |
|
|
|
void Window::underline(bool underline_state) const |
|
{ |
|
(underline_state ? wattron : wattroff)(m_window, A_UNDERLINE); |
|
} |
|
|
|
void Window::reverse(bool reverse_state) const |
|
{ |
|
(reverse_state ? wattron : wattroff)(m_window, A_REVERSE); |
|
} |
|
|
|
void Window::altCharset(bool altcharset_state) const |
|
{ |
|
(altcharset_state ? wattron : wattroff)(m_window, A_ALTCHARSET); |
|
} |
|
|
|
void Window::setTimeout(int timeout) |
|
{ |
|
if (timeout != m_window_timeout) |
|
{ |
|
m_window_timeout = timeout; |
|
wtimeout(m_window, timeout); |
|
} |
|
} |
|
|
|
void Window::addFDCallback(int fd, void (*callback)()) |
|
{ |
|
m_fds.push_back(std::make_pair(fd, callback)); |
|
} |
|
|
|
void Window::clearFDCallbacksList() |
|
{ |
|
m_fds.clear(); |
|
} |
|
|
|
bool Window::FDCallbacksListEmpty() const |
|
{ |
|
return m_fds.empty(); |
|
} |
|
|
|
int Window::readKey() |
|
{ |
|
int result; |
|
// if there are characters in input queue, |
|
// get them and return immediately. |
|
if (!m_input_queue.empty()) |
|
{ |
|
result = m_input_queue.front(); |
|
m_input_queue.pop(); |
|
return result; |
|
} |
|
|
|
fd_set fdset; |
|
FD_ZERO(&fdset); |
|
FD_SET(STDIN_FILENO, &fdset); |
|
timeval timeout = { m_window_timeout/1000, (m_window_timeout%1000)*1000 }; |
|
|
|
int fd_max = STDIN_FILENO; |
|
for (FDCallbacks::const_iterator it = m_fds.begin(); it != m_fds.end(); ++it) |
|
{ |
|
if (it->first > fd_max) |
|
fd_max = it->first; |
|
FD_SET(it->first, &fdset); |
|
} |
|
|
|
if (select(fd_max+1, &fdset, 0, 0, m_window_timeout < 0 ? 0 : &timeout) > 0) |
|
{ |
|
result = FD_ISSET(STDIN_FILENO, &fdset) ? wgetch(m_window) : ERR; |
|
for (FDCallbacks::const_iterator it = m_fds.begin(); it != m_fds.end(); ++it) |
|
if (FD_ISSET(it->first, &fdset)) |
|
it->second(); |
|
} |
|
else |
|
result = ERR; |
|
return result; |
|
} |
|
|
|
void Window::pushChar(int ch) |
|
{ |
|
m_input_queue.push(ch); |
|
} |
|
|
|
std::string Window::prompt(const std::string &base, size_t width, bool encrypted) |
|
{ |
|
rl::aborted = false; |
|
rl::w = this; |
|
getyx(m_window, rl::start_y, rl::start_x); |
|
rl::width = std::min(m_width-rl::start_x-1, width-1); |
|
rl::encrypted = encrypted; |
|
rl::base = base.c_str(); |
|
|
|
mmask_t oldmask; |
|
std::string result; |
|
|
|
curs_set(1); |
|
keypad(m_window, 0); |
|
mousemask(0, &oldmask); |
|
char *input = readline(nullptr); |
|
mousemask(oldmask, nullptr); |
|
keypad(m_window, 1); |
|
curs_set(0); |
|
if (input != nullptr) |
|
{ |
|
if (!encrypted && input[0] != 0) |
|
add_history(input); |
|
result = input; |
|
free(input); |
|
} |
|
|
|
if (rl::aborted) |
|
throw PromptAborted(std::move(result)); |
|
|
|
return result; |
|
} |
|
|
|
void Window::goToXY(int x, int y) |
|
{ |
|
wmove(m_window, y, x); |
|
} |
|
|
|
int Window::getX() |
|
{ |
|
return getcurx(m_window); |
|
} |
|
|
|
int Window::getY() |
|
{ |
|
return getcury(m_window); |
|
} |
|
|
|
bool Window::hasCoords(int &x, int &y) |
|
{ |
|
return wmouse_trafo(m_window, &y, &x, 0); |
|
} |
|
|
|
bool Window::runPromptHook(const char *arg, bool *done) const |
|
{ |
|
if (m_prompt_hook) |
|
{ |
|
bool continue_ = m_prompt_hook(arg); |
|
if (done != nullptr) |
|
*done = !continue_; |
|
return true; |
|
} |
|
else |
|
return false; |
|
} |
|
|
|
size_t Window::getWidth() const |
|
{ |
|
if (m_border) |
|
return m_width+2; |
|
else |
|
return m_width; |
|
} |
|
|
|
size_t Window::getHeight() const |
|
{ |
|
size_t height = m_height; |
|
if (m_border) |
|
height += 2; |
|
if (!m_title.empty()) |
|
height += 2; |
|
return height; |
|
} |
|
|
|
size_t Window::getStartX() const |
|
{ |
|
if (m_border) |
|
return m_start_x-1; |
|
else |
|
return m_start_x; |
|
} |
|
|
|
size_t Window::getStarty() const |
|
{ |
|
size_t starty = m_start_y; |
|
if (m_border) |
|
--starty; |
|
if (!m_title.empty()) |
|
starty -= 2; |
|
return starty; |
|
} |
|
|
|
const std::string &Window::getTitle() const |
|
{ |
|
return m_title; |
|
} |
|
|
|
const Color &Window::getColor() const |
|
{ |
|
return m_color; |
|
} |
|
|
|
const Border &Window::getBorder() const |
|
{ |
|
return m_border; |
|
} |
|
|
|
int Window::getTimeout() const |
|
{ |
|
return m_window_timeout; |
|
} |
|
|
|
void Window::scroll(Scroll where) |
|
{ |
|
idlok(m_window, 1); |
|
scrollok(m_window, 1); |
|
switch (where) |
|
{ |
|
case Scroll::Up: |
|
wscrl(m_window, 1); |
|
break; |
|
case Scroll::Down: |
|
wscrl(m_window, -1); |
|
break; |
|
case Scroll::PageUp: |
|
wscrl(m_window, m_width); |
|
break; |
|
case Scroll::PageDown: |
|
wscrl(m_window, -m_width); |
|
break; |
|
default: |
|
break; |
|
} |
|
idlok(m_window, 0); |
|
scrollok(m_window, 0); |
|
} |
|
|
|
|
|
Window &Window::operator<<(const Color &c) |
|
{ |
|
if (c.isDefault()) |
|
{ |
|
while (!m_color_stack.empty()) |
|
m_color_stack.pop(); |
|
setColor(m_base_color); |
|
} |
|
else if (c.isEnd()) |
|
{ |
|
if (!m_color_stack.empty()) |
|
m_color_stack.pop(); |
|
if (!m_color_stack.empty()) |
|
setColor(m_color_stack.top()); |
|
else |
|
setColor(m_base_color); |
|
} |
|
else |
|
{ |
|
setColor(c); |
|
m_color_stack.push(c); |
|
} |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(Format format) |
|
{ |
|
switch (format) |
|
{ |
|
case Format::None: |
|
bold((m_bold_counter = 0)); |
|
reverse((m_reverse_counter = 0)); |
|
altCharset((m_alt_charset_counter = 0)); |
|
break; |
|
case Format::Bold: |
|
bold(++m_bold_counter); |
|
break; |
|
case Format::NoBold: |
|
if (--m_bold_counter <= 0) |
|
bold((m_bold_counter = 0)); |
|
break; |
|
case Format::Underline: |
|
underline(++m_underline_counter); |
|
break; |
|
case Format::NoUnderline: |
|
if (--m_underline_counter <= 0) |
|
underline((m_underline_counter = 0)); |
|
break; |
|
case Format::Reverse: |
|
reverse(++m_reverse_counter); |
|
break; |
|
case Format::NoReverse: |
|
if (--m_reverse_counter <= 0) |
|
reverse((m_reverse_counter = 0)); |
|
break; |
|
case Format::AltCharset: |
|
altCharset(++m_alt_charset_counter); |
|
break; |
|
case Format::NoAltCharset: |
|
if (--m_alt_charset_counter <= 0) |
|
altCharset((m_alt_charset_counter = 0)); |
|
break; |
|
} |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(TermManip tm) |
|
{ |
|
switch (tm) |
|
{ |
|
case TermManip::ClearToEOL: |
|
{ |
|
auto x = getX(), y = getY(); |
|
mvwhline(m_window, y, x, ' ', m_width-x); |
|
goToXY(x, y); |
|
} |
|
break; |
|
} |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(const XY &coords) |
|
{ |
|
goToXY(coords.x, coords.y); |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(const char *s) |
|
{ |
|
waddstr(m_window, s); |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(char c) |
|
{ |
|
// waddchr doesn't display non-ascii multibyte characters properly |
|
waddnstr(m_window, &c, 1); |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(const wchar_t *ws) |
|
{ |
|
# ifdef NCMPCPP_UNICODE |
|
waddwstr(m_window, ws); |
|
# else |
|
wprintw(m_window, "%ls", ws); |
|
# endif // NCMPCPP_UNICODE |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(wchar_t wc) |
|
{ |
|
# ifdef NCMPCPP_UNICODE |
|
waddnwstr(m_window, &wc, 1); |
|
# else |
|
wprintw(m_window, "%lc", wc); |
|
# endif // NCMPCPP_UNICODE |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(int i) |
|
{ |
|
wprintw(m_window, "%d", i); |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(double d) |
|
{ |
|
wprintw(m_window, "%f", d); |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(const std::string &s) |
|
{ |
|
waddnstr(m_window, s.c_str(), s.length()); |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(const std::wstring &ws) |
|
{ |
|
# ifdef NCMPCPP_UNICODE |
|
waddnwstr(m_window, ws.c_str(), ws.length()); |
|
# else |
|
wprintw(m_window, "%lc", ws.c_str()); |
|
# endif // NCMPCPP_UNICODE |
|
return *this; |
|
} |
|
|
|
Window &Window::operator<<(size_t s) |
|
{ |
|
wprintw(m_window, "%zu", s); |
|
return *this; |
|
} |
|
|
|
}
|
|
|