2011-09-02 20:51:20 +04:00
|
|
|
#ifndef window_hh_INCLUDED
|
|
|
|
#define window_hh_INCLUDED
|
|
|
|
|
2012-01-31 23:12:06 +04:00
|
|
|
#include "editor.hh"
|
2011-09-02 20:51:20 +04:00
|
|
|
#include "display_buffer.hh"
|
2011-11-12 18:15:35 +04:00
|
|
|
#include "completion.hh"
|
2011-11-30 02:37:20 +04:00
|
|
|
#include "highlighter.hh"
|
2012-01-20 00:37:29 +04:00
|
|
|
#include "highlighter_group.hh"
|
2012-04-03 16:01:01 +04:00
|
|
|
#include "hook_manager.hh"
|
2012-04-03 17:39:20 +04:00
|
|
|
#include "option_manager.hh"
|
2011-09-02 20:51:20 +04:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
2012-01-15 17:46:12 +04:00
|
|
|
class HighlighterGroup;
|
2011-09-20 01:56:29 +04:00
|
|
|
|
2012-01-11 18:21:58 +04:00
|
|
|
// A Window is an editing view onto a Buffer
|
|
|
|
//
|
2012-01-31 23:12:06 +04:00
|
|
|
// 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
|
2012-08-05 20:23:09 +04:00
|
|
|
class Window : public Editor, public OptionManagerWatcher
|
2011-09-02 20:51:20 +04:00
|
|
|
{
|
|
|
|
public:
|
2012-06-14 17:19:38 +04:00
|
|
|
~Window();
|
|
|
|
|
2011-09-05 23:06:31 +04:00
|
|
|
const BufferCoord& position() const { return m_position; }
|
2012-01-31 23:12:06 +04:00
|
|
|
|
2011-10-14 18:29:53 +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-09-05 22:54:17 +04:00
|
|
|
|
2012-04-14 05:17:09 +04:00
|
|
|
String status_line() const;
|
2011-10-04 22:49:41 +04:00
|
|
|
|
2012-01-20 00:37:29 +04:00
|
|
|
HighlighterGroup& highlighters() { return m_highlighters; }
|
2011-11-12 18:15:35 +04:00
|
|
|
|
2012-04-03 17:39:20 +04:00
|
|
|
HookManager& hook_manager() { return m_hook_manager; }
|
|
|
|
OptionManager& option_manager() { return m_option_manager; }
|
2012-01-23 17:57:24 +04:00
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
private:
|
2011-09-08 18:30:36 +04:00
|
|
|
friend class Buffer;
|
|
|
|
|
|
|
|
Window(Buffer& buffer);
|
|
|
|
Window(const Window&) = delete;
|
|
|
|
|
2012-02-08 03:41:10 +04:00
|
|
|
void on_incremental_insertion_end();
|
2012-06-14 17:19:38 +04:00
|
|
|
void on_option_changed(const String& name, const Option& option);
|
2011-12-21 23:06:26 +04:00
|
|
|
|
2012-01-31 23:12:06 +04:00
|
|
|
void scroll_to_keep_cursor_visible_ifn();
|
2011-09-20 01:56:29 +04:00
|
|
|
|
2011-09-08 04:13:19 +04:00
|
|
|
BufferCoord m_position;
|
2011-10-14 18:29:53 +04:00
|
|
|
DisplayCoord m_dimensions;
|
2011-09-08 04:13:19 +04:00
|
|
|
DisplayBuffer m_display_buffer;
|
2011-09-29 00:54:11 +04:00
|
|
|
|
2012-01-20 00:37:29 +04:00
|
|
|
HighlighterGroup m_highlighters;
|
2012-01-23 17:57:24 +04:00
|
|
|
|
2012-04-03 16:01:01 +04:00
|
|
|
HookManager m_hook_manager;
|
2012-04-03 17:39:20 +04:00
|
|
|
OptionManager m_option_manager;
|
2011-09-02 20:51:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // window_hh_INCLUDED
|