forked from jupyter-xeus/cpp-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu_window.cpp
98 lines (92 loc) · 3.23 KB
/
menu_window.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include "cpp-terminal/exception.hpp"
#include "cpp-terminal/input.hpp"
#include "cpp-terminal/key.hpp"
#include "cpp-terminal/screen.hpp"
#include "cpp-terminal/terminal.hpp"
#include "cpp-terminal/tty.hpp"
#include "cpp-terminal/window.hpp"
#include <iostream>
std::string render(Term::Window& scr, const std::size_t& rows, const std::size_t& cols, const std::size_t& menuheight, const std::size_t& menuwidth, const std::size_t& menupos)
{
scr.clear();
std::size_t menux0 = (cols - menuwidth) / 2 + 1;
std::size_t menuy0 = (rows - menuheight) / 2 + 1;
scr.print_rect(menux0, menuy0, menux0 + menuwidth + 1, menuy0 + menuheight + 1);
for(std::size_t i = 1; i <= menuheight; i++)
{
std::string s = std::to_string(i) + ": item";
scr.print_str(menux0 + 1, menuy0 + i, s);
if(i == menupos)
{
scr.fill_fg(menux0 + 1, menuy0 + i, menux0 + s.size(), menuy0 + i, Term::Color::Name::Red); // FG
scr.fill_bg(menux0 + 1, menuy0 + i, menux0 + menuwidth, menuy0 + i, Term::Color::Name::Gray); // BG
scr.fill_style(menux0 + 1, menuy0 + i, menux0 + s.size(), menuy0 + i, Term::Style::BOLD);
}
else
{
scr.fill_fg(menux0 + 1, menuy0 + i, menux0 + s.size(), menuy0 + i, Term::Color::Name::Blue);
scr.fill_bg(menux0 + 1, menuy0 + i, menux0 + menuwidth, menuy0 + i, Term::Color::Name::Green);
}
}
std::size_t y = menuy0 + menuheight + 5;
scr.print_str(1, y, "Selected item: " + std::to_string(menupos));
scr.print_str(1, y + 1, "Menu width: " + std::to_string(menuwidth));
scr.print_str(1, y + 2, "Menu height: " + std::to_string(menuheight));
scr.print_str(1, y + 3, "Unicode test: Ondřej Čertík, ἐξήκοι");
return scr.render(1, 1, false);
}
int main()
{
try
{
// check if the terminal is capable of handling input
if(!Term::is_stdin_a_tty())
{
std::cout << "The terminal is not attached to a TTY and therefore can't catch user input. Exiting...\n";
return 1;
}
Term::terminal.setOptions({Term::Option::ClearScreen, Term::Option::NoSignalKeys, Term::Option::NoCursor, Term::Option::Raw});
Term::Screen term_size = Term::screen_size();
int pos = 5;
int h = 10;
std::size_t w{10};
bool on = true;
Term::Window scr(term_size.columns(), term_size.rows());
while(on)
{
std::cout << render(scr, term_size.rows(), term_size.columns(), h, w, pos) << std::flush;
Term::Key key = Term::read_event();
switch(key)
{
case Term::Key::ARROW_LEFT:
if(w > 10) w--;
break;
case Term::Key::ARROW_RIGHT:
if(w < term_size.columns() - 5) w++;
break;
case Term::Key::ARROW_UP:
if(pos > 1) pos--;
break;
case Term::Key::ARROW_DOWN:
if(pos < h) pos++;
break;
case Term::Key::HOME: pos = 1; break;
case Term::Key::END: pos = h; break;
case Term::Key::q:
case Term::Key::ESC:
case Term::Key::CTRL_C: on = false; break;
}
}
}
catch(const Term::Exception& re)
{
std::cerr << "cpp-terminal error: " << re.what() << std::endl;
return 2;
}
catch(...)
{
std::cerr << "Unknown error." << std::endl;
return 1;
}
return 0;
}