2011-09-02 18:51:20 +02:00
|
|
|
#ifndef window_hh_INCLUDED
|
|
|
|
#define window_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <functional>
|
2011-09-05 21:06:31 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include "buffer.hh"
|
2011-10-24 16:26:21 +02:00
|
|
|
#include "dynamic_buffer_iterator.hh"
|
2011-09-02 18:51:20 +02:00
|
|
|
#include "display_buffer.hh"
|
2011-11-12 15:15:35 +01:00
|
|
|
#include "completion.hh"
|
2011-11-08 15:29:52 +01:00
|
|
|
#include "filter.hh"
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
struct Selection
|
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
Selection(const BufferIterator& first, const BufferIterator& last)
|
|
|
|
: m_first(first), m_last(last) {}
|
2011-09-17 16:57:35 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator begin() const;
|
|
|
|
BufferIterator end() const;
|
2011-09-17 16:57:35 +02:00
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
const BufferIterator& first() const { return m_first; }
|
|
|
|
const BufferIterator& last() const { return m_last; }
|
2011-09-17 16:57:35 +02:00
|
|
|
|
2011-10-27 16:22:17 +02:00
|
|
|
void merge_with(const Selection& selection);
|
2011-09-17 16:57:35 +02:00
|
|
|
|
|
|
|
private:
|
2011-10-24 16:26:21 +02:00
|
|
|
DynamicBufferIterator m_first;
|
|
|
|
DynamicBufferIterator m_last;
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Selection> SelectionList;
|
|
|
|
|
2011-09-19 23:56:29 +02:00
|
|
|
class IncrementalInserter;
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
class Window
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef BufferString String;
|
|
|
|
typedef std::function<Selection (const BufferIterator&)> Selector;
|
2011-11-16 15:04:45 +01:00
|
|
|
typedef std::function<SelectionList (const Selection&)> MultiSelector;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
void erase();
|
|
|
|
void insert(const String& string);
|
|
|
|
void append(const String& string);
|
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
const BufferCoord& position() const { return m_position; }
|
2011-10-15 06:45:49 +02:00
|
|
|
DisplayCoord cursor_position() const;
|
|
|
|
BufferIterator cursor_iterator() const;
|
2011-09-05 20:54:17 +02:00
|
|
|
|
2011-09-08 02:13:19 +02:00
|
|
|
Buffer& buffer() const { return m_buffer; }
|
2011-09-05 20:54:17 +02:00
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
BufferIterator iterator_at(const DisplayCoord& window_pos) const;
|
|
|
|
DisplayCoord line_and_column_at(const BufferIterator& iterator) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
void move_cursor(const DisplayCoord& offset, bool append = false);
|
2011-10-12 20:53:38 +02:00
|
|
|
void move_cursor_to(const BufferIterator& iterator);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-10-05 16:24:52 +02:00
|
|
|
void clear_selections();
|
2011-10-07 16:03:25 +02:00
|
|
|
void select(const Selector& selector, bool append = false);
|
2011-11-16 15:04:45 +01:00
|
|
|
void multi_select(const MultiSelector& selector);
|
2011-09-23 16:31:15 +02:00
|
|
|
BufferString selection_content() const;
|
2011-11-10 00:56:22 +01:00
|
|
|
const SelectionList selections() const { return m_selections; }
|
2011-09-05 20:54:17 +02:00
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
void set_dimensions(const DisplayCoord& dimensions);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
const DisplayBuffer& display_buffer() const { return m_display_buffer; }
|
|
|
|
|
|
|
|
void update_display_buffer();
|
2011-09-05 20:54:17 +02:00
|
|
|
|
2011-09-06 20:52:52 +02:00
|
|
|
bool undo();
|
|
|
|
bool redo();
|
|
|
|
|
2011-10-04 20:49:41 +02:00
|
|
|
std::string status_line() const;
|
|
|
|
|
2011-11-08 15:29:52 +01:00
|
|
|
struct filter_id_not_unique : public runtime_error
|
|
|
|
{
|
|
|
|
filter_id_not_unique(const std::string& id)
|
|
|
|
: runtime_error("filter id not unique: " + id) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
void add_filter(FilterAndId&& filter);
|
|
|
|
void remove_filter(const std::string& id);
|
|
|
|
|
2011-11-12 15:15:35 +01:00
|
|
|
CandidateList complete_filterid(const std::string& prefix,
|
|
|
|
size_t cursor_pos = std::string::npos);
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
private:
|
2011-09-08 16:30:36 +02:00
|
|
|
friend class Buffer;
|
|
|
|
|
|
|
|
Window(Buffer& buffer);
|
|
|
|
Window(const Window&) = delete;
|
|
|
|
|
2011-09-27 20:45:22 +02:00
|
|
|
void check_invariant() const;
|
2011-09-05 20:55:31 +02:00
|
|
|
void scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-27 20:45:22 +02:00
|
|
|
void erase_noundo();
|
|
|
|
void insert_noundo(const String& string);
|
|
|
|
void append_noundo(const String& string);
|
|
|
|
|
2011-09-19 23:56:29 +02:00
|
|
|
friend class IncrementalInserter;
|
|
|
|
IncrementalInserter* m_current_inserter;
|
|
|
|
|
2011-09-08 02:13:19 +02:00
|
|
|
Buffer& m_buffer;
|
|
|
|
BufferCoord m_position;
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord m_dimensions;
|
2011-09-08 02:13:19 +02:00
|
|
|
SelectionList m_selections;
|
|
|
|
DisplayBuffer m_display_buffer;
|
2011-09-28 22:54:11 +02:00
|
|
|
|
2011-11-08 15:29:52 +01:00
|
|
|
typedef std::vector<FilterAndId> FilterList;
|
2011-09-28 22:54:11 +02:00
|
|
|
FilterList m_filters;
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
2011-09-19 23:56:29 +02:00
|
|
|
class IncrementalInserter
|
|
|
|
{
|
|
|
|
public:
|
2011-09-28 21:14:39 +02:00
|
|
|
enum class Mode
|
|
|
|
{
|
|
|
|
Insert,
|
|
|
|
Append,
|
2011-10-06 23:12:55 +02:00
|
|
|
Change,
|
2011-11-02 21:03:41 +01:00
|
|
|
InsertAtLineBegin,
|
|
|
|
AppendAtLineEnd,
|
2011-10-06 23:12:55 +02:00
|
|
|
OpenLineBelow,
|
|
|
|
OpenLineAbove
|
2011-09-28 21:14:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
IncrementalInserter(Window& window, Mode mode = Mode::Insert);
|
2011-09-19 23:56:29 +02:00
|
|
|
~IncrementalInserter();
|
|
|
|
|
|
|
|
void insert(const Window::String& string);
|
|
|
|
void erase();
|
2011-10-14 16:29:53 +02:00
|
|
|
void move_cursor(const DisplayCoord& offset);
|
2011-09-19 23:56:29 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Window& m_window;
|
|
|
|
};
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // window_hh_INCLUDED
|