kakoune/src/context.hh

53 lines
1.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"
2011-11-26 19:32:57 +01:00
namespace Kakoune
{
class Buffer;
2011-11-26 19:32:57 +01:00
struct Context
{
Context()
: m_window(nullptr), m_buffer(nullptr) {}
2011-11-26 19:32:57 +01:00
Context(Window& window)
: m_window(&window), m_buffer(&window.buffer()) {}
2011-11-26 19:32:57 +01:00
Context(Buffer& buffer)
: m_window(nullptr), m_buffer(&buffer) {}
Buffer& buffer() const
{
if (not m_buffer)
throw runtime_error("no buffer in context");
return *m_buffer;
}
bool has_buffer() const { return m_buffer; }
Window& window() const
{
if (not m_window)
throw runtime_error("no window in context");
return *m_window;
}
bool has_window() const { return m_window; }
OptionManager& option_manager() const
{
if (m_window)
return m_window->option_manager();
if (m_buffer)
return m_buffer->option_manager();
return GlobalOptionManager::instance();
}
public:
safe_ptr<Window> m_window;
safe_ptr<Buffer> m_buffer;
2011-11-26 19:32:57 +01:00
};
}
#endif // context_hh_INCLUDED