2011-11-26 19:32:57 +01:00
|
|
|
#ifndef context_hh_INCLUDED
|
|
|
|
#define context_hh_INCLUDED
|
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "dynamic_selection_list.hh"
|
2012-02-13 22:32:54 +01:00
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
#include <boost/optional.hpp>
|
|
|
|
|
2011-11-26 19:32:57 +01:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
class Editor;
|
|
|
|
class Window;
|
|
|
|
class Buffer;
|
2013-09-12 23:47:23 +02:00
|
|
|
class Client;
|
2013-11-14 19:09:15 +01:00
|
|
|
class InputHandler;
|
2013-04-09 19:39:03 +02:00
|
|
|
class UserInterface;
|
|
|
|
class DisplayLine;
|
2013-10-25 01:01:17 +02:00
|
|
|
class KeymapManager;
|
2013-01-28 13:48:34 +01:00
|
|
|
|
2012-10-10 13:57:15 +02:00
|
|
|
// A Context is used to access non singleton objects for various services
|
|
|
|
// in commands.
|
|
|
|
//
|
2013-09-12 23:47:23 +02:00
|
|
|
// The Context object links an Client, an Editor (which may be a Window),
|
2012-10-10 13:57:15 +02:00
|
|
|
// and a UserInterface. It may represent an interactive user window, or
|
|
|
|
// a hook execution or a macro replay.
|
2013-11-11 20:10:49 +01:00
|
|
|
class Context
|
2011-11-26 19:32:57 +01:00
|
|
|
{
|
2013-11-11 20:10:49 +01:00
|
|
|
public:
|
2013-04-09 19:39:03 +02:00
|
|
|
Context();
|
2013-12-20 21:10:08 +01:00
|
|
|
Context(InputHandler& input_handler, Buffer& buffer, SelectionList selections, String name = "");
|
2013-04-09 19:39:03 +02:00
|
|
|
~Context();
|
2012-01-15 22:33:35 +01:00
|
|
|
|
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;
|
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
Buffer& buffer() const;
|
2013-12-20 21:10:08 +01:00
|
|
|
bool has_buffer() const { return m_selections; }
|
2012-08-05 18:23:37 +02:00
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
Window& window() const;
|
2013-12-20 21:10:08 +01:00
|
|
|
bool has_window() const { return (bool)m_window; }
|
2013-04-09 19:39:03 +02:00
|
|
|
|
2013-09-12 23:47:23 +02:00
|
|
|
Client& client() const;
|
|
|
|
bool has_client() const { return (bool)m_client; }
|
2012-08-15 22:36:45 +02:00
|
|
|
|
2013-11-14 19:09:15 +01:00
|
|
|
InputHandler& input_handler() const;
|
|
|
|
bool has_input_handler() const { return (bool)m_input_handler; }
|
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
UserInterface& ui() const;
|
2013-11-14 19:09:15 +01:00
|
|
|
bool has_ui() const { return has_client(); }
|
2012-09-26 14:13:04 +02:00
|
|
|
|
2013-12-15 15:25:23 +01:00
|
|
|
SelectionList& selections();
|
|
|
|
const SelectionList& selections() const;
|
2013-12-15 21:37:07 +01:00
|
|
|
std::vector<String> selections_content() const;
|
2013-12-15 15:25:23 +01:00
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
void change_buffer(Buffer& buffer);
|
2013-04-09 19:39:03 +02:00
|
|
|
|
2013-11-14 19:09:15 +01:00
|
|
|
void set_client(Client& client);
|
2013-12-20 21:10:08 +01:00
|
|
|
void set_window(Window& window);
|
2013-11-14 19:09:15 +01:00
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
OptionManager& options() const;
|
|
|
|
HookManager& hooks() const;
|
2013-10-25 01:01:17 +02:00
|
|
|
KeymapManager& keymaps() const;
|
2013-04-09 19:39:03 +02:00
|
|
|
|
2013-09-16 20:15:13 +02:00
|
|
|
void print_status(DisplayLine status) const;
|
2013-04-09 19:39:03 +02:00
|
|
|
|
|
|
|
void push_jump();
|
2013-05-27 19:23:59 +02:00
|
|
|
const DynamicSelectionList& jump_forward();
|
|
|
|
const DynamicSelectionList& jump_backward();
|
2013-04-09 19:39:03 +02:00
|
|
|
void forget_jumps_to_buffer(Buffer& buffer);
|
2012-11-12 19:59:25 +01:00
|
|
|
|
2013-11-14 21:51:25 +01:00
|
|
|
const String& name() const { return m_name; }
|
|
|
|
void set_name(String name) { m_name = std::move(name); }
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
bool is_editing() const { return m_edition_level!= 0; }
|
|
|
|
void disable_undo_handling() { ++m_edition_level; }
|
2012-09-26 20:07:06 +02:00
|
|
|
private:
|
2013-12-15 19:07:51 +01:00
|
|
|
void begin_edition();
|
|
|
|
void end_edition();
|
|
|
|
int m_edition_level = 0;
|
|
|
|
|
|
|
|
friend struct ScopedEdition;
|
|
|
|
|
2013-11-14 19:09:15 +01:00
|
|
|
safe_ptr<InputHandler> m_input_handler;
|
2013-12-20 21:10:08 +01:00
|
|
|
safe_ptr<Window> m_window;
|
2013-11-14 19:09:15 +01:00
|
|
|
safe_ptr<Client> m_client;
|
2012-09-26 20:07:06 +02:00
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
friend class Client;
|
|
|
|
boost::optional<DynamicSelectionList> m_selections;
|
|
|
|
|
2013-11-14 21:51:25 +01:00
|
|
|
String m_name;
|
|
|
|
|
2012-12-11 19:51:59 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
struct ScopedEdition
|
|
|
|
{
|
|
|
|
ScopedEdition(Context& context)
|
|
|
|
: m_context(context)
|
|
|
|
{ m_context.begin_edition(); }
|
|
|
|
|
|
|
|
~ScopedEdition()
|
|
|
|
{ m_context.end_edition(); }
|
|
|
|
|
|
|
|
Context& context() const { return m_context; }
|
|
|
|
private:
|
|
|
|
Context& m_context;
|
|
|
|
};
|
|
|
|
|
2011-11-26 19:32:57 +01:00
|
|
|
}
|
|
|
|
#endif // context_hh_INCLUDED
|