kakoune/src/context.hh

74 lines
1.8 KiB
C++
Raw Normal View History

2011-11-26 19:32:57 +01:00
#ifndef context_hh_INCLUDED
#define context_hh_INCLUDED
#include "dynamic_selection_list.hh"
2012-02-13 22:32:54 +01:00
2011-11-26 19:32:57 +01:00
namespace Kakoune
{
class Editor;
class Window;
class Buffer;
2013-01-28 13:48:34 +01:00
class InputHandler;
class UserInterface;
class DisplayLine;
2013-01-28 13:48:34 +01:00
// A Context is used to access non singleton objects for various services
// in commands.
//
2012-10-17 13:14:03 +02:00
// The Context object links an InputHandler, an Editor (which may be a Window),
// and a UserInterface. It may represent an interactive user window, or
// a hook execution or a macro replay.
2011-11-26 19:32:57 +01:00
struct Context
{
Context();
explicit Context(Editor& editor);
Context(InputHandler& input_handler, UserInterface& ui);
~Context();
2012-09-26 14:27:23 +02:00
Context(const Context&) = delete;
2012-08-15 22:36:45 +02:00
Context& operator=(const Context&) = delete;
Buffer& buffer() const;
bool has_buffer() const { return (bool)m_editor; }
Editor& editor() const;
bool has_editor() const { return (bool)m_editor; }
Window& window() const;
bool has_window() const;
InputHandler& input_handler() const;
2012-10-17 13:14:03 +02:00
bool has_input_handler() const { return (bool)m_input_handler; }
2012-08-15 22:36:45 +02:00
UserInterface& ui() const;
bool has_ui() const { return (bool)m_ui; }
void change_editor(Editor& editor);
OptionManager& options() const;
HookManager& hooks() const;
void print_status(const DisplayLine& status) const;
void push_jump();
const DynamicSelectionList& jump_forward();
const DynamicSelectionList& jump_backward();
void forget_jumps_to_buffer(Buffer& buffer);
int& numeric_param() { return m_numeric_param; }
private:
safe_ptr<Editor> m_editor;
safe_ptr<InputHandler> m_input_handler;
safe_ptr<UserInterface> m_ui;
2012-08-05 16:46:10 +02:00
int m_numeric_param = 0;
using JumpList = std::vector<DynamicSelectionList>;
JumpList m_jump_list;
JumpList::iterator m_current_jump = m_jump_list.begin();
2011-11-26 19:32:57 +01:00
};
}
#endif // context_hh_INCLUDED