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-17 16:13:33 +02:00
|
|
|
#include "line_and_column.hh"
|
2011-09-05 21:06:31 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include "buffer.hh"
|
|
|
|
#include "display_buffer.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-17 16:13:33 +02:00
|
|
|
struct WindowCoord : LineAndColumn<WindowCoord>
|
2011-09-05 21:06:31 +02:00
|
|
|
{
|
|
|
|
WindowCoord(int line = 0, int column = 0)
|
|
|
|
: LineAndColumn(line, column) {}
|
|
|
|
};
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
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-09-23 11:17:19 +02:00
|
|
|
void offset(int offset);
|
2011-09-17 16:57:35 +02:00
|
|
|
|
|
|
|
private:
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator m_first;
|
|
|
|
BufferIterator 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;
|
|
|
|
|
|
|
|
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-09-27 20:45:22 +02:00
|
|
|
WindowCoord cursor_position() 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-09-05 21:06:31 +02:00
|
|
|
BufferCoord window_to_buffer(const WindowCoord& window_pos) const;
|
|
|
|
WindowCoord buffer_to_window(const BufferCoord& buffer_pos) const;
|
|
|
|
|
|
|
|
BufferIterator iterator_at(const WindowCoord& window_pos) const;
|
|
|
|
WindowCoord line_and_column_at(const BufferIterator& iterator) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-10-07 16:03:25 +02:00
|
|
|
void move_cursor(const WindowCoord& offset, bool append = false);
|
2011-09-22 16:00:04 +02:00
|
|
|
void move_cursor_to(const WindowCoord& new_pos);
|
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-09-23 16:31:15 +02:00
|
|
|
BufferString selection_content() const;
|
2011-09-05 20:54:17 +02:00
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
void set_dimensions(const WindowCoord& 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-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-28 22:54:11 +02:00
|
|
|
friend class HighlightSelections;
|
|
|
|
|
2011-09-08 02:13:19 +02:00
|
|
|
Buffer& m_buffer;
|
|
|
|
BufferCoord m_position;
|
|
|
|
WindowCoord m_dimensions;
|
|
|
|
SelectionList m_selections;
|
|
|
|
DisplayBuffer m_display_buffer;
|
2011-09-28 22:54:11 +02:00
|
|
|
|
|
|
|
typedef std::vector<std::function<void (DisplayBuffer&)>> FilterList;
|
|
|
|
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,
|
|
|
|
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();
|
|
|
|
void move_cursor(const WindowCoord& offset);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Window& m_window;
|
|
|
|
};
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // window_hh_INCLUDED
|