2012-02-16 15:25:16 +01:00
|
|
|
#include "ncurses.hh"
|
|
|
|
|
2012-10-20 20:15:20 +02:00
|
|
|
#include "display_buffer.hh"
|
2012-02-16 15:25:16 +01:00
|
|
|
#include "register_manager.hh"
|
|
|
|
|
2012-10-08 14:27:43 +02:00
|
|
|
#include "utf8_iterator.hh"
|
2012-10-27 15:02:17 +02:00
|
|
|
#include "event_manager.hh"
|
2012-10-08 14:27:43 +02:00
|
|
|
|
2012-02-16 15:25:16 +01:00
|
|
|
#include <map>
|
|
|
|
|
2012-10-27 14:18:52 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <fcntl.h>
|
2012-02-16 15:25:16 +01:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
2012-06-06 01:15:19 +02:00
|
|
|
|
2012-02-16 15:25:16 +01:00
|
|
|
static void set_attribute(int attribute, bool on)
|
|
|
|
{
|
|
|
|
if (on)
|
|
|
|
attron(attribute);
|
|
|
|
else
|
|
|
|
attroff(attribute);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nc_color(Color color)
|
|
|
|
{
|
|
|
|
switch (color)
|
|
|
|
{
|
|
|
|
case Color::Black: return COLOR_BLACK;
|
|
|
|
case Color::Red: return COLOR_RED;
|
|
|
|
case Color::Green: return COLOR_GREEN;
|
|
|
|
case Color::Yellow: return COLOR_YELLOW;
|
|
|
|
case Color::Blue: return COLOR_BLUE;
|
|
|
|
case Color::Magenta: return COLOR_MAGENTA;
|
|
|
|
case Color::Cyan: return COLOR_CYAN;
|
|
|
|
case Color::White: return COLOR_WHITE;
|
|
|
|
|
|
|
|
case Color::Default:
|
|
|
|
default:
|
2012-03-04 20:55:38 +01:00
|
|
|
return -1;
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-05 00:49:59 +02:00
|
|
|
static int get_color_pair(Color fg_color, Color bg_color)
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
|
|
|
static std::map<std::pair<Color, Color>, int> colorpairs;
|
|
|
|
static int next_pair = 1;
|
|
|
|
|
|
|
|
std::pair<Color, Color> colorpair(fg_color, bg_color);
|
2012-09-05 00:49:59 +02:00
|
|
|
|
2012-02-16 15:25:16 +01:00
|
|
|
auto it = colorpairs.find(colorpair);
|
2012-09-05 00:49:59 +02:00
|
|
|
if (it != colorpairs.end())
|
|
|
|
return it->second;
|
2012-02-16 15:25:16 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
init_pair(next_pair, nc_color(fg_color), nc_color(bg_color));
|
|
|
|
colorpairs[colorpair] = next_pair;
|
2012-09-05 00:49:59 +02:00
|
|
|
return next_pair++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_color(Color fg_color, Color bg_color)
|
|
|
|
{
|
|
|
|
static int current_pair = -1;
|
|
|
|
|
|
|
|
if (current_pair != -1)
|
|
|
|
attroff(COLOR_PAIR(current_pair));
|
|
|
|
|
|
|
|
if (fg_color != Color::Default or bg_color != Color::Default)
|
|
|
|
{
|
|
|
|
current_pair = get_color_pair(fg_color, bg_color);
|
|
|
|
attron(COLOR_PAIR(current_pair));
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-27 14:18:52 +02:00
|
|
|
void on_term_resize(int)
|
|
|
|
{
|
|
|
|
ungetch(KEY_RESIZE);
|
2012-10-27 15:02:17 +02:00
|
|
|
EventManager::instance().force_signal(0);
|
2012-10-27 14:18:52 +02:00
|
|
|
}
|
2012-09-05 00:49:59 +02:00
|
|
|
|
2012-11-08 14:04:41 +01:00
|
|
|
void on_sigint(int)
|
|
|
|
{
|
|
|
|
ungetch(CTRL('c'));
|
|
|
|
EventManager::instance().force_signal(0);
|
|
|
|
}
|
|
|
|
|
2012-09-24 19:24:27 +02:00
|
|
|
NCursesUI::NCursesUI()
|
2012-09-05 00:49:59 +02:00
|
|
|
{
|
2012-10-08 14:27:43 +02:00
|
|
|
//setlocale(LC_CTYPE, "");
|
2012-09-05 00:49:59 +02:00
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
nonl();
|
|
|
|
intrflush(stdscr, false);
|
|
|
|
keypad(stdscr, true);
|
|
|
|
curs_set(0);
|
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
|
|
|
ESCDELAY=25;
|
|
|
|
|
|
|
|
m_menu_fg = get_color_pair(Color::Blue, Color::Cyan);
|
|
|
|
m_menu_bg = get_color_pair(Color::Cyan, Color::Blue);
|
2012-10-27 14:18:52 +02:00
|
|
|
|
|
|
|
signal(SIGWINCH, on_term_resize);
|
2012-11-08 14:04:41 +01:00
|
|
|
signal(SIGINT, on_sigint);
|
2012-12-03 18:50:44 +01:00
|
|
|
|
|
|
|
update_dimensions();
|
2012-09-05 00:49:59 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 19:24:27 +02:00
|
|
|
NCursesUI::~NCursesUI()
|
2012-09-05 00:49:59 +02:00
|
|
|
{
|
|
|
|
endwin();
|
2012-12-03 18:50:44 +01:00
|
|
|
signal(SIGWINCH, SIG_DFL);
|
|
|
|
signal(SIGINT, SIG_DFL);
|
2012-09-05 00:49:59 +02:00
|
|
|
}
|
|
|
|
|
2012-09-30 15:18:37 +02:00
|
|
|
static void redraw(WINDOW* menu_win)
|
|
|
|
{
|
|
|
|
wnoutrefresh(stdscr);
|
|
|
|
if (menu_win)
|
|
|
|
{
|
|
|
|
redrawwin(menu_win);
|
|
|
|
wnoutrefresh(menu_win);
|
|
|
|
}
|
|
|
|
doupdate();
|
|
|
|
}
|
2012-10-13 18:31:29 +02:00
|
|
|
using Utf8Policy = utf8::InvalidBytePolicy::Pass;
|
|
|
|
using Utf8Iterator = utf8::utf8_iterator<String::iterator, Utf8Policy>;
|
|
|
|
void addutf8str(Utf8Iterator begin, Utf8Iterator end)
|
2012-10-08 14:27:43 +02:00
|
|
|
{
|
2012-10-28 11:00:23 +01:00
|
|
|
assert(begin <= end);
|
2012-10-08 14:27:43 +02:00
|
|
|
while (begin != end)
|
|
|
|
addch(*begin++);
|
|
|
|
}
|
|
|
|
|
2012-10-27 14:18:52 +02:00
|
|
|
void NCursesUI::update_dimensions()
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
|
|
|
int max_x,max_y;
|
|
|
|
getmaxyx(stdscr, max_y, max_x);
|
|
|
|
max_y -= 1;
|
2012-10-27 14:18:52 +02:00
|
|
|
m_dimensions = { max_y, max_x };
|
|
|
|
}
|
2012-09-03 19:20:41 +02:00
|
|
|
|
2012-10-27 14:18:52 +02:00
|
|
|
void NCursesUI::draw(const DisplayBuffer& display_buffer,
|
2012-10-29 19:01:57 +01:00
|
|
|
const String& mode_line)
|
2012-10-27 14:18:52 +02:00
|
|
|
{
|
|
|
|
LineCount line_index = 0;
|
2012-10-20 20:15:20 +02:00
|
|
|
for (const DisplayLine& line : display_buffer.lines())
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
2012-10-27 14:18:52 +02:00
|
|
|
move((int)line_index, 0);
|
2012-07-12 23:19:10 +02:00
|
|
|
clrtoeol();
|
2012-10-27 15:48:08 +02:00
|
|
|
CharCount col_index = 0;
|
2012-07-12 23:19:10 +02:00
|
|
|
for (const DisplayAtom& atom : line)
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
2012-07-12 23:19:10 +02:00
|
|
|
set_attribute(A_UNDERLINE, atom.attribute & Underline);
|
|
|
|
set_attribute(A_REVERSE, atom.attribute & Reverse);
|
|
|
|
set_attribute(A_BLINK, atom.attribute & Blink);
|
|
|
|
set_attribute(A_BOLD, atom.attribute & Bold);
|
2012-02-16 15:25:16 +01:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
set_color(atom.fg_color, atom.bg_color);
|
|
|
|
|
|
|
|
String content = atom.content.content();
|
2012-10-27 14:18:52 +02:00
|
|
|
if (content[content.length()-1] == '\n' and
|
2012-10-27 15:48:08 +02:00
|
|
|
content.char_length() - 1 < m_dimensions.column - col_index)
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
2012-10-13 18:31:29 +02:00
|
|
|
addutf8str(Utf8Iterator(content.begin()), Utf8Iterator(content.end())-1);
|
2012-02-16 15:25:16 +01:00
|
|
|
addch(' ');
|
|
|
|
}
|
|
|
|
else
|
2012-10-08 14:27:43 +02:00
|
|
|
{
|
2012-10-13 18:31:29 +02:00
|
|
|
Utf8Iterator begin(content.begin()), end(content.end());
|
2012-10-27 15:48:08 +02:00
|
|
|
if (end - begin > m_dimensions.column - col_index)
|
2012-10-28 11:00:23 +01:00
|
|
|
end = begin + (m_dimensions.column - col_index);
|
2012-10-08 14:27:43 +02:00
|
|
|
addutf8str(begin, end);
|
2012-10-27 15:48:08 +02:00
|
|
|
col_index += end - begin;
|
2012-10-08 14:27:43 +02:00
|
|
|
}
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
2012-07-12 23:19:10 +02:00
|
|
|
++line_index;
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
set_attribute(A_UNDERLINE, 0);
|
|
|
|
set_attribute(A_REVERSE, 0);
|
|
|
|
set_attribute(A_BLINK, 0);
|
|
|
|
set_attribute(A_BOLD, 0);
|
|
|
|
set_color(Color::Blue, Color::Black);
|
2012-10-27 14:18:52 +02:00
|
|
|
for (;line_index < m_dimensions.line; ++line_index)
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
2012-10-27 14:18:52 +02:00
|
|
|
move((int)line_index, 0);
|
2012-02-16 15:25:16 +01:00
|
|
|
clrtoeol();
|
|
|
|
addch('~');
|
|
|
|
}
|
|
|
|
|
2012-11-23 13:46:39 +01:00
|
|
|
set_color(Color::Cyan, Color::Default);
|
2012-10-29 19:01:57 +01:00
|
|
|
draw_status();
|
|
|
|
CharCount status_len = mode_line.char_length();
|
|
|
|
// only draw mode_line if it does not overlap one status line
|
|
|
|
if (m_dimensions.column - m_status_line.char_length() > status_len + 1)
|
|
|
|
{
|
|
|
|
move((int)m_dimensions.line, (int)(m_dimensions.column - status_len));
|
|
|
|
addutf8str(Utf8Iterator(mode_line.begin()),
|
|
|
|
Utf8Iterator(mode_line.end()));
|
|
|
|
}
|
2012-09-30 15:18:37 +02:00
|
|
|
redraw(m_menu_win);
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
|
2012-10-09 14:30:35 +02:00
|
|
|
struct getch_iterator
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
2012-10-09 14:30:35 +02:00
|
|
|
int operator*() { return getch(); }
|
|
|
|
getch_iterator& operator++() { return *this; }
|
|
|
|
getch_iterator& operator++(int) { return *this; }
|
|
|
|
};
|
2012-02-16 15:25:16 +01:00
|
|
|
|
2012-10-28 09:26:54 +01:00
|
|
|
bool NCursesUI::is_key_available()
|
|
|
|
{
|
|
|
|
timeout(0);
|
|
|
|
const int c = getch();
|
|
|
|
if (c != ERR)
|
|
|
|
ungetch(c);
|
|
|
|
timeout(-1);
|
|
|
|
return c != ERR;
|
|
|
|
}
|
|
|
|
|
2012-10-09 14:30:35 +02:00
|
|
|
Key NCursesUI::get_key()
|
|
|
|
{
|
2012-12-03 18:50:44 +01:00
|
|
|
const int c = getch();
|
2012-02-16 15:25:16 +01:00
|
|
|
if (c > 0 and c < 27)
|
|
|
|
{
|
2012-12-03 18:50:44 +01:00
|
|
|
return {Key::Modifiers::Control, Codepoint(c) - 1 + 'a'};
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
else if (c == 27)
|
|
|
|
{
|
|
|
|
timeout(0);
|
2012-10-09 19:15:05 +02:00
|
|
|
const Codepoint new_c = getch();
|
2012-02-16 15:25:16 +01:00
|
|
|
timeout(-1);
|
|
|
|
if (new_c != ERR)
|
2012-09-07 20:22:19 +02:00
|
|
|
return {Key::Modifiers::Alt, new_c};
|
|
|
|
else
|
|
|
|
return Key::Escape;
|
|
|
|
}
|
2012-12-03 18:50:44 +01:00
|
|
|
else if (c == KEY_RESIZE)
|
|
|
|
{
|
|
|
|
int fd = open("/dev/tty", O_RDWR);
|
|
|
|
winsize ws;
|
|
|
|
if (fd != -1 and ioctl(fd, TIOCGWINSZ, (void*)&ws) == 0)
|
|
|
|
{
|
|
|
|
close(fd);
|
|
|
|
resizeterm(ws.ws_row, ws.ws_col);
|
|
|
|
update_dimensions();
|
|
|
|
}
|
|
|
|
return Key::Invalid;
|
|
|
|
}
|
2012-09-07 20:22:19 +02:00
|
|
|
else switch (c)
|
|
|
|
{
|
2012-12-09 14:31:19 +01:00
|
|
|
case KEY_BACKSPACE: case 127: return Key::Backspace;
|
2012-09-07 20:22:19 +02:00
|
|
|
case KEY_UP: return Key::Up;
|
|
|
|
case KEY_DOWN: return Key::Down;
|
|
|
|
case KEY_LEFT: return Key::Left;
|
|
|
|
case KEY_RIGHT: return Key::Right;
|
2012-09-07 21:09:23 +02:00
|
|
|
case KEY_PPAGE: return Key::PageUp;
|
|
|
|
case KEY_NPAGE: return Key::PageDown;
|
2012-09-11 14:27:21 +02:00
|
|
|
case KEY_BTAB: return Key::BackTab;
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
2012-10-09 14:30:35 +02:00
|
|
|
|
2012-12-03 18:50:44 +01:00
|
|
|
if (c >= 0 and c < 256)
|
2012-10-18 19:56:57 +02:00
|
|
|
{
|
|
|
|
ungetch(c);
|
|
|
|
return utf8::codepoint(getch_iterator{});
|
|
|
|
}
|
|
|
|
return Key::Invalid;
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
|
2012-10-29 19:01:57 +01:00
|
|
|
void NCursesUI::draw_status()
|
2012-02-16 15:25:16 +01:00
|
|
|
{
|
2012-10-29 19:01:57 +01:00
|
|
|
move((int)m_dimensions.line, 0);
|
2012-02-16 15:25:16 +01:00
|
|
|
clrtoeol();
|
2012-10-29 19:01:57 +01:00
|
|
|
if (m_status_cursor == -1)
|
|
|
|
addutf8str(m_status_line.begin(), m_status_line.end());
|
2012-09-03 14:22:02 +02:00
|
|
|
else
|
|
|
|
{
|
2012-10-29 19:01:57 +01:00
|
|
|
auto cursor_it = utf8::advance(m_status_line.begin(), m_status_line.end(),
|
|
|
|
(int)m_status_cursor);
|
|
|
|
auto end = m_status_line.end();
|
|
|
|
addutf8str(m_status_line.begin(), cursor_it);
|
2012-10-11 00:41:48 +02:00
|
|
|
set_attribute(A_REVERSE, 1);
|
2012-10-13 18:31:29 +02:00
|
|
|
addch((cursor_it == end) ? ' ' : utf8::codepoint<Utf8Policy>(cursor_it));
|
2012-10-11 00:41:48 +02:00
|
|
|
set_attribute(A_REVERSE, 0);
|
|
|
|
if (cursor_it != end)
|
|
|
|
addutf8str(utf8::next(cursor_it), end);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-10-29 19:01:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void NCursesUI::print_status(const String& status, CharCount cursor_pos)
|
|
|
|
{
|
|
|
|
m_status_line = status;
|
|
|
|
m_status_cursor = cursor_pos;
|
|
|
|
draw_status();
|
2012-09-30 15:18:37 +02:00
|
|
|
redraw(m_menu_win);
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|
|
|
|
|
2012-09-30 15:18:37 +02:00
|
|
|
void NCursesUI::menu_show(const memoryview<String>& choices,
|
|
|
|
const DisplayCoord& anchor, MenuStyle style)
|
2012-08-30 21:14:28 +02:00
|
|
|
{
|
2012-08-30 21:53:22 +02:00
|
|
|
assert(m_menu == nullptr);
|
2012-09-30 15:18:37 +02:00
|
|
|
assert(m_menu_win == nullptr);
|
2012-11-21 19:01:13 +01:00
|
|
|
assert(m_choices.empty());
|
|
|
|
assert(m_items.empty());
|
|
|
|
|
|
|
|
int max_x,max_y;
|
|
|
|
getmaxyx(stdscr, max_y, max_x);
|
|
|
|
max_x -= (int)anchor.column;
|
|
|
|
|
|
|
|
m_choices.reserve(choices.size());
|
2012-08-31 14:14:16 +02:00
|
|
|
CharCount longest = 0;
|
2012-11-21 19:01:13 +01:00
|
|
|
for (auto& choice : choices)
|
2012-08-31 14:14:16 +02:00
|
|
|
{
|
2012-11-21 19:01:13 +01:00
|
|
|
m_choices.push_back(choice.substr(0_char, std::min(max_x-1, 200)));
|
|
|
|
m_items.emplace_back(new_item(m_choices.back().c_str(), ""));
|
|
|
|
longest = std::max(longest, m_choices.back().char_length());
|
2012-08-31 14:14:16 +02:00
|
|
|
}
|
2012-09-03 19:34:10 +02:00
|
|
|
m_items.push_back(nullptr);
|
2012-09-11 14:30:32 +02:00
|
|
|
longest += 1;
|
2012-08-31 14:14:16 +02:00
|
|
|
|
2012-11-21 19:01:13 +01:00
|
|
|
int columns = (style == MenuStyle::Prompt) ? (max_x / (int)longest) : 1;
|
2012-08-31 14:14:16 +02:00
|
|
|
int lines = std::min(10, (int)ceilf((float)m_choices.size()/columns));
|
|
|
|
|
2012-09-30 15:18:37 +02:00
|
|
|
m_menu_pos = { anchor.line+1, anchor.column };
|
|
|
|
if (m_menu_pos.line + lines >= max_y)
|
|
|
|
m_menu_pos.line = anchor.line - lines;
|
|
|
|
m_menu_size = { lines, columns == 1 ? longest : max_x };
|
|
|
|
|
2012-08-31 14:14:16 +02:00
|
|
|
m_menu = new_menu(&m_items[0]);
|
2012-09-30 15:18:37 +02:00
|
|
|
m_menu_win = newwin((int)m_menu_size.line, (int)m_menu_size.column,
|
|
|
|
(int)m_menu_pos.line, (int)m_menu_pos.column);
|
|
|
|
set_menu_win(m_menu, m_menu_win);
|
2012-08-31 14:14:16 +02:00
|
|
|
set_menu_format(m_menu, lines, columns);
|
2012-09-03 19:34:10 +02:00
|
|
|
set_menu_mark(m_menu, nullptr);
|
2012-09-05 00:49:59 +02:00
|
|
|
set_menu_fore(m_menu, COLOR_PAIR(m_menu_fg));
|
|
|
|
set_menu_back(m_menu, COLOR_PAIR(m_menu_bg));
|
2012-08-30 21:53:22 +02:00
|
|
|
post_menu(m_menu);
|
|
|
|
}
|
2012-08-30 21:14:28 +02:00
|
|
|
|
2012-09-24 19:24:27 +02:00
|
|
|
void NCursesUI::menu_select(int selected)
|
2012-08-30 21:53:22 +02:00
|
|
|
{
|
2012-09-11 14:28:54 +02:00
|
|
|
// last item in m_items is the nullptr, hence the - 1
|
|
|
|
if (selected >= 0 and selected < m_items.size() - 1)
|
2012-08-30 21:14:28 +02:00
|
|
|
{
|
2012-09-05 19:02:06 +02:00
|
|
|
set_menu_fore(m_menu, COLOR_PAIR(m_menu_fg));
|
|
|
|
set_current_item(m_menu, m_items[selected]);
|
2012-08-30 21:14:28 +02:00
|
|
|
}
|
2012-09-05 19:02:06 +02:00
|
|
|
else
|
|
|
|
set_menu_fore(m_menu, COLOR_PAIR(m_menu_bg));
|
|
|
|
}
|
|
|
|
|
2012-09-24 19:24:27 +02:00
|
|
|
void NCursesUI::menu_hide()
|
2012-09-05 19:02:06 +02:00
|
|
|
{
|
|
|
|
if (not m_menu)
|
|
|
|
return;
|
|
|
|
unpost_menu(m_menu);
|
|
|
|
free_menu(m_menu);
|
|
|
|
for (auto item : m_items)
|
|
|
|
if (item)
|
|
|
|
free_item(item);
|
|
|
|
m_menu = nullptr;
|
2012-09-30 15:18:37 +02:00
|
|
|
delwin(m_menu_win);
|
|
|
|
m_menu_win = nullptr;
|
2012-09-05 19:02:06 +02:00
|
|
|
m_items.clear();
|
2012-11-21 19:01:13 +01:00
|
|
|
m_choices.clear();
|
2012-08-30 21:14:28 +02:00
|
|
|
}
|
|
|
|
|
2012-10-20 20:15:20 +02:00
|
|
|
DisplayCoord NCursesUI::dimensions()
|
|
|
|
{
|
2012-10-27 14:18:52 +02:00
|
|
|
return m_dimensions;
|
2012-10-20 20:15:20 +02:00
|
|
|
}
|
|
|
|
|
2012-02-16 15:25:16 +01:00
|
|
|
}
|