2016-03-06 02:37:20 +01:00
|
|
|
#ifndef json_ui_hh_INCLUDED
|
|
|
|
#define json_ui_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "user_interface.hh"
|
|
|
|
#include "event_manager.hh"
|
|
|
|
#include "coord.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2016-03-14 14:38:46 +01:00
|
|
|
struct Value;
|
2016-03-06 02:37:20 +01:00
|
|
|
|
|
|
|
class JsonUI : public UserInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JsonUI();
|
|
|
|
|
|
|
|
JsonUI(const JsonUI&) = delete;
|
|
|
|
JsonUI& operator=(const JsonUI&) = 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<DisplayLine> items,
|
|
|
|
CharCoord anchor, Face fg, Face bg,
|
|
|
|
MenuStyle style) override;
|
|
|
|
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;
|
|
|
|
|
2016-03-07 14:54:20 +01:00
|
|
|
void refresh(bool force) override;
|
2016-03-06 02:37:20 +01:00
|
|
|
|
|
|
|
void set_input_callback(InputCallback callback) override;
|
|
|
|
|
|
|
|
void set_ui_options(const Options& options) override;
|
|
|
|
|
|
|
|
CharCoord dimensions() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void parse_requests(EventMode mode);
|
|
|
|
void eval_json(const Value& value);
|
|
|
|
|
|
|
|
InputCallback m_input_callback;
|
|
|
|
FDWatcher m_stdin_watcher;
|
|
|
|
Vector<Key> m_pending_keys;
|
|
|
|
CharCoord m_dimensions;
|
2016-03-06 15:23:56 +01:00
|
|
|
String m_requests;
|
2016-03-06 02:37:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // json_ui_hh_INCLUDED
|