kakoune/src/context.hh

94 lines
2.1 KiB
C++
Raw Normal View History

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-02-13 22:32:54 +01:00
2011-11-26 19:32:57 +01:00
namespace Kakoune
{
struct Context
{
Context() {}
Context(Editor& editor)
: m_editor(&editor) {}
2012-08-15 22:36:45 +02:00
Context(Client& client)
: m_client(&client) {}
// to allow func(Context(Editor(...)))
Context(Editor&& editor)
: m_editor(&editor) {}
2012-08-15 22:36:45 +02:00
Context& operator=(const Context&) = delete;
Buffer& buffer() const
{
if (not has_buffer())
throw runtime_error("no buffer in context");
return m_editor->buffer();
}
bool has_buffer() const { return m_editor; }
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; }
Window& window() const
{
if (not has_window())
throw runtime_error("no window in context");
return *dynamic_cast<Window*>(m_editor.get());
}
bool has_window() const { return m_editor and dynamic_cast<Window*>(m_editor.get()); }
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; }
void change_editor(Editor& editor)
{
m_editor.reset(&editor);
}
OptionManager& option_manager() const
{
if (has_window())
return window().option_manager();
if (has_buffer())
return buffer().option_manager();
return GlobalOptionManager::instance();
}
2012-08-15 22:36:45 +02:00
void draw_ifn() const
{
if (has_client() and has_window())
2012-08-15 22:36:45 +02:00
client().draw_window(window());
}
void print_status(const String& status) const
{
if (has_client())
client().print_status(status);
}
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; }
public:
safe_ptr<Editor> m_editor;
2012-08-15 22:36:45 +02:00
safe_ptr<Client> m_client;
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