-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.cpp
146 lines (116 loc) · 3.47 KB
/
menu.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// file: menu.cpp
#include "menu.hpp"
#include <cstdio>
#include <curses.h>
#include <cwchar>
#include <exception>
#include <iostream>
#include <stdexcept>
#include <system_error>
#include <ncurses.h>
#include <locale>
#define K_ENTER 10
//typedef unsigned short ushort;
Menu::Menu ( std::string menu_header, menu_type mtype) : menu_header (menu_header)
{
// size > 0 ? this->size = size : throw std::invalid_argument ("Неверные размер меню");
// menu_header.empty () ? this->menu_header = "Меню:" : this->menu_header = menu_header;
// menu = new menu_item [size];
this->mtype = mtype;
bool corr_mtype = mtype == menu_type::SIMPLE_MENU or mtype == menu_type::SIMPLE_CONTEXT_MENU or mtype == menu_type::ADVANCED_MENU or mtype == menu_type::ADVANCED_CONTEXT_MENU;
corr_mtype ? this->mtype = mtype : throw std::invalid_argument ("Неизвестный тип меню");
//is_size_init = true;
}
void Menu::add_item (void (*exec) () , std::string item_str)
{
menu.push_back (menu_item (exec, item_str));
menu.back().is_init = true;
// if (inum >= 0 and inum < size)
// {
// menu[inum].exec = exec;
// menu[inum].str = item_str;
// menu[inum].is_init = true;
// }
// else
// {
// throw std::out_of_range("Неправильный номер пункта меню");
// }
}
bool Menu::is_all_init () const
{
for (auto item : menu)
{
if (not item.is_init)
return false;
}
return true;
}
void Menu::exec () const
{
if (!is_all_init())
{
throw std::logic_error ("Не все элементы меню инициализированы");
}
// Будет реализовано потом
// if (mtype != menu_type::SIMPLE_MENU)
// {
//
// }
// Инициализация ncurses
setlocale (LC_ALL, "ru_RU.UTF-8");
initscr();
cbreak();
noecho();
// Отключаю мигающий курсор
curs_set (0);
keypad(stdscr, true); // Включение режима обработки командных клавиш
// Иначе, продолжается выполнение метода:
ushort selected = 0;
int input;
// Запуск цикла меню
do
{
clear ();
printw ( "\t%s\n" , this->menu_header.c_str()); printw ("\n");
// Вывод пунктов меню в моменте
for (ushort i = 0; i < menu.size(); ++i)
{
if (i == selected)
{
printw ("\t==>%s", menu.at(i).str.c_str());
}
else
{
printw ("\t\t%s", menu.at(i).str.c_str());
}
printw ("\n");
}
printw ("\n\t\tДля выхода нажмите кнопку 'Q'\n");
refresh ();
// Ожидание нажатия клавиши пользователем
input = getch ();
switch (input)
{
case KEY_UP:
selected == 0 ? selected = menu.size() - 1 : --selected;
break;
case KEY_DOWN:
selected == menu.size() - 1 ? selected = 0 : ++selected;
break;
case K_ENTER:
clear ();
menu.at(selected).exec ();
getch ();
}
} while (input != KEY_q and input != KEY_Q);
refresh();
endwin ();
}
// void Menu::print_menu () const
// {
//
// }
Menu::~Menu ()
{
menu.clear();
}