1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-19 09:21:30 +03:00
kakoune/src/window.hh

65 lines
1.5 KiB
C++
Raw Normal View History

2011-09-02 20:51:20 +04:00
#ifndef window_hh_INCLUDED
#define window_hh_INCLUDED
#include <functional>
#include "editor.hh"
2011-09-02 20:51:20 +04:00
#include "display_buffer.hh"
#include "completion.hh"
#include "highlighter.hh"
#include "highlighter_group.hh"
2012-04-03 16:01:01 +04:00
#include "hook_manager.hh"
2011-09-02 20:51:20 +04:00
namespace Kakoune
{
class HighlighterGroup;
// A Window is an editing view onto a Buffer
//
// The Window class is an interactive Editor adding display functionalities
// to the editing ones already provided by the Editor class.
// Display can be customized through the use of highlighters handled by
// the window's HighlighterGroup
class Window : public Editor
2011-09-02 20:51:20 +04:00
{
public:
const BufferCoord& position() const { return m_position; }
BufferIterator iterator_at(const DisplayCoord& window_pos) const;
DisplayCoord line_and_column_at(const BufferIterator& iterator) const;
2011-09-02 20:51:20 +04:00
void set_dimensions(const DisplayCoord& dimensions);
2011-09-02 20:51:20 +04:00
const DisplayBuffer& display_buffer() const { return m_display_buffer; }
void update_display_buffer();
2011-10-04 22:49:41 +04:00
std::string status_line() const;
HighlighterGroup& highlighters() { return m_highlighters; }
2012-04-03 16:01:01 +04:00
HookManager& hook_manager() { return m_hook_manager; }
2012-01-23 17:57:24 +04:00
2011-09-02 20:51:20 +04:00
private:
friend class Buffer;
Window(Buffer& buffer);
Window(const Window&) = delete;
void on_incremental_insertion_end();
2011-12-21 23:06:26 +04:00
void scroll_to_keep_cursor_visible_ifn();
BufferCoord m_position;
DisplayCoord m_dimensions;
DisplayBuffer m_display_buffer;
HighlighterGroup m_highlighters;
2012-01-23 17:57:24 +04:00
2012-04-03 16:01:01 +04:00
HookManager m_hook_manager;
2011-09-02 20:51:20 +04:00
};
}
#endif // window_hh_INCLUDED