2011-11-26 19:32:57 +01:00
|
|
|
#ifndef context_hh_INCLUDED
|
|
|
|
#define context_hh_INCLUDED
|
|
|
|
|
2012-02-13 22:32:54 +01:00
|
|
|
#include "window.hh"
|
2012-08-15 22:36:45 +02:00
|
|
|
#include "client.hh"
|
2012-09-26 14:13:04 +02:00
|
|
|
#include "user_interface.hh"
|
2012-02-13 22:32:54 +01:00
|
|
|
|
2011-11-26 19:32:57 +01:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-09-24 19:24:27 +02:00
|
|
|
// A Context is provided to all commands, it permits
|
|
|
|
// to access a client, window, editor or buffer if available.
|
2011-11-26 19:32:57 +01:00
|
|
|
struct Context
|
|
|
|
{
|
2012-08-05 18:23:37 +02:00
|
|
|
Context() {}
|
|
|
|
Context(Editor& editor)
|
2012-08-15 17:32:46 +02:00
|
|
|
: m_editor(&editor) {}
|
2012-08-05 20:12:43 +02:00
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
Context(Client& client)
|
|
|
|
: m_client(&client) {}
|
|
|
|
|
2012-08-05 20:12:43 +02:00
|
|
|
// to allow func(Context(Editor(...)))
|
|
|
|
Context(Editor&& editor)
|
2012-08-15 17:32:46 +02:00
|
|
|
: m_editor(&editor) {}
|
2012-01-15 22:33:35 +01:00
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
Context& operator=(const Context&) = delete;
|
|
|
|
|
2012-01-15 22:33:35 +01:00
|
|
|
Buffer& buffer() const
|
|
|
|
{
|
2012-08-05 18:23:37 +02:00
|
|
|
if (not has_buffer())
|
2012-01-15 22:33:35 +01:00
|
|
|
throw runtime_error("no buffer in context");
|
2012-08-15 17:32:46 +02:00
|
|
|
return m_editor->buffer();
|
2012-01-15 22:33:35 +01:00
|
|
|
}
|
2012-08-15 17:32:46 +02:00
|
|
|
bool has_buffer() const { return m_editor; }
|
2012-01-31 14:38:06 +01:00
|
|
|
|
2012-08-05 18:23:37 +02:00
|
|
|
Editor& editor() const
|
|
|
|
{
|
|
|
|
if (not has_editor())
|
|
|
|
throw runtime_error("no editor in context");
|
|
|
|
return *m_editor.get();
|
|
|
|
}
|
|
|
|
bool has_editor() const { return m_editor; }
|
|
|
|
|
2012-01-15 22:33:35 +01:00
|
|
|
Window& window() const
|
|
|
|
{
|
2012-08-05 18:23:37 +02:00
|
|
|
if (not has_window())
|
2012-01-15 22:33:35 +01:00
|
|
|
throw runtime_error("no window in context");
|
2012-08-05 18:23:37 +02:00
|
|
|
return *dynamic_cast<Window*>(m_editor.get());
|
2012-01-15 22:33:35 +01:00
|
|
|
}
|
2012-08-05 18:23:37 +02:00
|
|
|
bool has_window() const { return m_editor and dynamic_cast<Window*>(m_editor.get()); }
|
2012-06-28 14:01:37 +02:00
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
Client& client() const
|
|
|
|
{
|
|
|
|
if (not has_client())
|
|
|
|
throw runtime_error("no client in context");
|
|
|
|
return *m_client;
|
|
|
|
}
|
|
|
|
bool has_client() const { return m_client; }
|
|
|
|
|
2012-09-26 14:13:04 +02:00
|
|
|
UserInterface& ui() const
|
|
|
|
{
|
|
|
|
if (not has_ui())
|
|
|
|
throw runtime_error("no user interface in context");
|
|
|
|
return *m_ui;
|
|
|
|
}
|
|
|
|
bool has_ui() const { return m_ui; }
|
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
void change_editor(Editor& editor)
|
|
|
|
{
|
|
|
|
m_editor.reset(&editor);
|
|
|
|
}
|
|
|
|
|
2012-09-26 14:13:04 +02:00
|
|
|
void change_ui(UserInterface& ui)
|
|
|
|
{
|
|
|
|
m_ui.reset(&ui);
|
|
|
|
}
|
|
|
|
|
2012-06-28 14:01:37 +02:00
|
|
|
OptionManager& option_manager() const
|
|
|
|
{
|
2012-08-05 18:23:37 +02:00
|
|
|
if (has_window())
|
|
|
|
return window().option_manager();
|
|
|
|
if (has_buffer())
|
|
|
|
return buffer().option_manager();
|
2012-06-28 14:01:37 +02:00
|
|
|
return GlobalOptionManager::instance();
|
|
|
|
}
|
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
void draw_ifn() const
|
|
|
|
{
|
2012-09-26 14:13:04 +02:00
|
|
|
if (has_ui() and has_window())
|
|
|
|
ui().draw_window(window());
|
2012-08-15 22:36:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void print_status(const String& status) const
|
|
|
|
{
|
2012-09-26 14:13:04 +02:00
|
|
|
if (has_ui())
|
|
|
|
ui().print_status(status);
|
2012-08-15 22:36:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-05 16:46:10 +02:00
|
|
|
int numeric_param() const { return m_numeric_param; }
|
|
|
|
void numeric_param(int param) { m_numeric_param = param; }
|
|
|
|
|
2012-01-15 22:33:35 +01:00
|
|
|
public:
|
2012-09-26 14:13:04 +02:00
|
|
|
safe_ptr<Editor> m_editor;
|
|
|
|
safe_ptr<Client> m_client;
|
|
|
|
safe_ptr<UserInterface> m_ui;
|
2012-08-05 16:46:10 +02:00
|
|
|
int m_numeric_param = 0;
|
2011-11-26 19:32:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // context_hh_INCLUDED
|