39 lines
778 B
C++
39 lines
778 B
C++
#ifndef ncurses_hh_INCLUDED
|
|
#define ncurses_hh_INCLUDED
|
|
|
|
#include <ncurses.h>
|
|
#include <menu.h>
|
|
|
|
#include "client.hh"
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class NCursesClient : public Client
|
|
{
|
|
public:
|
|
NCursesClient();
|
|
~NCursesClient();
|
|
|
|
NCursesClient(const NCursesClient&) = delete;
|
|
NCursesClient& operator=(const NCursesClient&) = delete;
|
|
|
|
void draw_window(Window& window) override;
|
|
void print_status(const String& status, CharCount cursor_pos) override;
|
|
|
|
Key get_key() override;
|
|
|
|
void show_menu(const memoryview<String>& choices) override;
|
|
void menu_ctrl(MenuCommand command) override;
|
|
private:
|
|
MENU* m_menu;
|
|
std::vector<ITEM*> m_items;
|
|
std::vector<String> m_counts;
|
|
std::vector<String> m_choices;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // ncurses_hh_INCLUDED
|
|
|