77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
#ifndef user_interface_hh_INCLUDED
|
|
#define user_interface_hh_INCLUDED
|
|
|
|
#include "array_view.hh"
|
|
#include "safe_ptr.hh"
|
|
#include "unordered_map.hh"
|
|
|
|
#include <functional>
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class String;
|
|
class DisplayBuffer;
|
|
class DisplayLine;
|
|
struct CharCoord;
|
|
struct Face;
|
|
struct Key;
|
|
|
|
enum class MenuStyle
|
|
{
|
|
Prompt,
|
|
Inline
|
|
};
|
|
|
|
enum class InfoStyle
|
|
{
|
|
Prompt,
|
|
Inline,
|
|
InlineAbove,
|
|
InlineBelow,
|
|
MenuDoc
|
|
};
|
|
|
|
enum class EventMode;
|
|
|
|
using InputCallback = std::function<void(EventMode mode)>;
|
|
|
|
class UserInterface : public SafeCountable
|
|
{
|
|
public:
|
|
virtual ~UserInterface() {}
|
|
|
|
virtual void menu_show(ConstArrayView<String> choices,
|
|
CharCoord anchor, Face fg, Face bg,
|
|
MenuStyle style) = 0;
|
|
virtual void menu_select(int selected) = 0;
|
|
virtual void menu_hide() = 0;
|
|
|
|
virtual void info_show(StringView title, StringView content,
|
|
CharCoord anchor, Face face,
|
|
InfoStyle style) = 0;
|
|
virtual void info_hide() = 0;
|
|
|
|
virtual void draw(const DisplayBuffer& display_buffer,
|
|
const Face& default_face) = 0;
|
|
|
|
virtual void draw_status(const DisplayLine& status_line,
|
|
const DisplayLine& mode_line,
|
|
const Face& default_face) = 0;
|
|
|
|
virtual CharCoord dimensions() = 0;
|
|
virtual bool is_key_available() = 0;
|
|
virtual Key get_key() = 0;
|
|
|
|
virtual void refresh() = 0;
|
|
|
|
virtual void set_input_callback(InputCallback callback) = 0;
|
|
|
|
using Options = UnorderedMap<String, String, MemoryDomain::Options>;
|
|
virtual void set_ui_options(const Options& options) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // user_interface_hh_INCLUDED
|