MARSHAL327

Untitled

Nov 22nd, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.24 KB | None | 0 0
  1. // названия пунктов
  2. const string items[5] = {
  3.     "   Ввод данных            ",
  4.     "   Печать данных          ",
  5.     "   Запись данных в файл   ",
  6.     "   Поиск                  ",
  7.     "   Выбрать другой файл    " };
  8.  
  9. menu(current, items, 6); // пример вызова
  10.  
  11. // ==========ШАБЛОН ПЕЧАТИ МЕНЮ==========
  12. void print_menu(int sym, const string items[], const int N_ITEMS) {
  13.     for (int i = 1; i <= N_ITEMS; i++) {
  14.         SetColor(7, 0);
  15.         gotoxy((width / 2) - 6, (height / 2) + i - 3); // ставим меню в центр
  16.         if (i == sym) {
  17.             SetColor(7, 5);
  18.         }
  19.         cout << items[i - 1] << endl;
  20.         SetColor(7, 0);
  21.     }
  22. }
  23.  
  24. // ==========МЕНЮ==========
  25. int menu(int& active, const string items[], int num_el) {
  26.     wint_t buf;
  27.  
  28.     do {
  29.         cls();
  30.         print_menu(active, items, num_el - 1);
  31.  
  32.         buf = _getwch();
  33.         switch (buf) {
  34.         case up: // клавиша вверх
  35.             if (active > 1) active--;
  36.             break;
  37.         case down: // клавиша вниз
  38.             if (active < num_el - 1) active++;
  39.             break;
  40.         case enter: // клавиша enter
  41.             if (active == 5) return -1;
  42.             return active;
  43.         case esc: // клавиша escape
  44.             return -1;
  45.         }
  46.     } while (1);
  47. }
Add Comment
Please, Sign In to add comment