kakoune/src/ncurses_ui.hh

91 lines
2.1 KiB
C++
Raw Normal View History

#ifndef ncurses_hh_INCLUDED
#define ncurses_hh_INCLUDED
2014-11-12 22:27:07 +01:00
#include "coord.hh"
#include "event_manager.hh"
2014-11-12 22:27:07 +01:00
#include "face.hh"
2013-04-09 20:05:40 +02:00
#include "user_interface.hh"
#include "array_view.hh"
2013-04-09 20:05:40 +02:00
namespace Kakoune
{
2013-04-12 01:28:22 +02:00
struct NCursesWin;
class NCursesUI : public UserInterface
{
public:
NCursesUI();
~NCursesUI();
NCursesUI(const NCursesUI&) = delete;
NCursesUI& operator=(const NCursesUI&) = delete;
void draw(const DisplayBuffer& display_buffer,
const Face& default_face) override;
void draw_status(const DisplayLine& status_line,
const DisplayLine& mode_line,
const Face& default_face) override;
bool is_key_available() override;
Key get_key() override;
void menu_show(ConstArrayView<String> items,
CharCoord anchor, Face fg, Face bg,
MenuStyle style) override;
2012-09-05 19:02:06 +02:00
void menu_select(int selected) override;
void menu_hide() override;
void info_show(StringView title, StringView content,
CharCoord anchor, Face face,
InfoStyle style) override;
void info_hide() override;
void refresh() override;
void set_input_callback(InputCallback callback) override;
void set_ui_options(const Options& options) override;
CharCoord dimensions() override;
2013-04-12 01:28:22 +02:00
static void abort();
private:
void check_resize();
2013-01-15 14:16:45 +01:00
void redraw();
void draw_line(const DisplayLine& line, CharCount col_index,
const Face& default_face) const;
NCursesWin* m_window = nullptr;
CharCoord m_dimensions;
void update_dimensions();
2013-04-12 01:28:22 +02:00
NCursesWin* m_menu_win = nullptr;
2015-01-12 14:58:41 +01:00
Vector<String> m_items;
Face m_menu_fg;
Face m_menu_bg;
2013-10-17 19:48:12 +02:00
int m_selected_item = 0;
int m_menu_columns = 1;
LineCount m_menu_top_line = 0;
void draw_menu();
2013-04-12 01:28:22 +02:00
NCursesWin* m_info_win = nullptr;
FDWatcher m_stdin_watcher;
InputCallback m_input_callback;
bool m_status_on_top = false;
ConstArrayView<StringView> m_assistant;
int m_wheel_down_button = 2;
int m_wheel_up_button = 4;
bool m_dirty = false;
};
}
#endif // ncurses_hh_INCLUDED