2011-09-02 18:51:20 +02:00
|
|
|
#ifndef window_hh_INCLUDED
|
|
|
|
#define window_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <functional>
|
2011-09-05 21:06:31 +02:00
|
|
|
|
|
|
|
#include "utils.hh"
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include "buffer.hh"
|
|
|
|
#include "display_buffer.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
struct WindowCoord : LineAndColumn
|
|
|
|
{
|
|
|
|
WindowCoord(int line = 0, int column = 0)
|
|
|
|
: LineAndColumn(line, column) {}
|
|
|
|
};
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
struct Selection
|
|
|
|
{
|
|
|
|
Selection(const BufferIterator& begin, const BufferIterator& end)
|
|
|
|
: begin(begin), end(end) {}
|
|
|
|
|
|
|
|
BufferIterator begin;
|
|
|
|
BufferIterator end;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Selection> SelectionList;
|
|
|
|
|
|
|
|
class Window
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef BufferString String;
|
|
|
|
typedef std::function<Selection (const BufferIterator&)> Selector;
|
|
|
|
|
|
|
|
Window(const std::shared_ptr<Buffer> buffer);
|
|
|
|
Window(const Window&) = delete;
|
|
|
|
|
|
|
|
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; }
|
|
|
|
const WindowCoord& cursor_position() const { return m_cursor; }
|
2011-09-05 20:54:17 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
const std::shared_ptr<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-09-05 21:06:31 +02:00
|
|
|
void move_cursor(const WindowCoord& offset);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
const SelectionList& selections() const { return m_selections; }
|
|
|
|
|
2011-09-05 20:54:17 +02:00
|
|
|
void empty_selections();
|
|
|
|
void select(bool append, const Selector& selector);
|
|
|
|
|
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-09-02 18:51:20 +02:00
|
|
|
private:
|
2011-09-05 20:55:31 +02:00
|
|
|
void scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
std::shared_ptr<Buffer> m_buffer;
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferCoord m_position;
|
|
|
|
WindowCoord m_cursor;
|
|
|
|
WindowCoord m_dimensions;
|
2011-09-02 18:51:20 +02:00
|
|
|
SelectionList m_selections;
|
|
|
|
DisplayBuffer m_display_buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // window_hh_INCLUDED
|