kakoune/src/window.hh

74 lines
2.0 KiB
C++
Raw Normal View History

2011-09-02 18:51:20 +02:00
#ifndef window_hh_INCLUDED
#define window_hh_INCLUDED
#include "editor.hh"
2011-09-02 18:51:20 +02:00
#include "display_buffer.hh"
#include "completion.hh"
#include "highlighter.hh"
#include "highlighter_group.hh"
2012-04-03 14:01:01 +02:00
#include "hook_manager.hh"
#include "option_manager.hh"
2011-09-02 18:51:20 +02: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, public OptionManagerWatcher
2011-09-02 18:51:20 +02:00
{
public:
~Window();
const BufferCoord& position() const { return m_position; }
2012-09-07 21:09:23 +02:00
void set_position(const BufferCoord& position) { m_position = buffer().clamp(position); }
2012-09-07 21:09:23 +02:00
const DisplayCoord& dimensions() const { return m_dimensions; }
void set_dimensions(const DisplayCoord& dimensions);
2011-09-02 18:51:20 +02:00
const DisplayBuffer& display_buffer() const { return m_display_buffer; }
2012-08-21 20:05:56 +02:00
void center_selection();
2011-09-02 18:51:20 +02:00
void update_display_buffer();
DisplayCoord display_position(const BufferIterator& it);
String status_line() const;
2011-10-04 20:49:41 +02:00
HighlighterGroup& highlighters() { return m_highlighters; }
OptionManager& option_manager() { return m_option_manager; }
const OptionManager& option_manager() const { return m_option_manager; }
HookManager& hook_manager() { return m_hook_manager; }
const HookManager& hook_manager() const { return m_hook_manager; }
2012-01-23 14:57:24 +01:00
2011-09-02 18:51:20 +02:00
private:
friend class Buffer;
Window(Buffer& buffer);
Window(const Window&) = delete;
2012-09-04 00:17:41 +02:00
void on_incremental_insertion_end() override;
void on_option_changed(const String& name, const Option& option) override;
2011-12-21 20:06:26 +01:00
void scroll_to_keep_cursor_visible_ifn();
BufferCoord m_position;
DisplayCoord m_dimensions;
DisplayBuffer m_display_buffer;
HighlighterGroup m_highlighters;
2012-01-23 14:57:24 +01:00
2012-04-03 14:01:01 +02:00
HookManager m_hook_manager;
OptionManager m_option_manager;
2011-09-02 18:51:20 +02:00
};
}
#endif // window_hh_INCLUDED