#ifndef client_hh_INCLUDED #define client_hh_INCLUDED #include "keys.hh" #include "completion.hh" #include "utils.hh" #include "string.hh" namespace Kakoune { class Editor; class Window; class Context; enum class MenuCommand { SelectFirst, SelectLast, SelectPrev, SelectNext, SelectNone, Close, }; using MenuCallback = std::function; using PromptCallback = std::function; class Client : public SafeCountable { public: Client(); virtual ~Client() {} virtual void draw_window(Window& window) = 0; virtual void print_status(const String& status, CharCount cursor_pos = -1) = 0; void prompt(const String& prompt, Completer completer, PromptCallback callback); void menu(const memoryview& choices, MenuCallback callback); void handle_next_input(Context& context); virtual Key get_key() = 0; private: virtual void show_menu(const memoryview& choices) = 0; virtual void menu_ctrl(MenuCommand command) = 0; void reset_normal_mode(); class Mode { public: Mode(Client& client) : m_client(client) {} virtual ~Mode() {} virtual void on_key(const Key& key, Context& context) = 0; protected: Client& m_client; }; std::unique_ptr m_mode; class NormalMode; class MenuMode; class PromptMode; }; struct prompt_aborted {}; } #endif // client_hh_INCLUDED