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

86 lines
2.3 KiB
C++
Raw Normal View History

2011-09-02 20:51:20 +04:00
#ifndef window_hh_INCLUDED
#define window_hh_INCLUDED
#include "client.hh"
2013-04-09 22:05:40 +04:00
#include "display_buffer.hh"
#include "highlighter_group.hh"
2014-11-13 00:27:07 +03:00
#include "option_manager.hh"
#include "safe_ptr.hh"
#include "scope.hh"
2011-09-02 20:51:20 +04:00
namespace Kakoune
{
// A Window is a view onto a Buffer
class Window : public SafeCountable, public OptionManagerWatcher, public Scope
2011-09-02 20:51:20 +04:00
{
public:
Window(Buffer& buffer);
~Window();
const CharCoord& position() const { return m_position; }
void set_position(CharCoord position);
const CharCoord& dimensions() const { return m_dimensions; }
void set_dimensions(CharCoord dimensions);
2011-09-02 20:51:20 +04:00
void scroll(LineCount offset);
void center_line(LineCount buffer_line);
void display_line_at(LineCount buffer_line, LineCount display_line);
2013-07-24 03:38:30 +04:00
void scroll(CharCount offset);
void center_column(CharCount buffer_column);
void display_column_at(CharCount buffer_column, CharCount display_column);
2015-06-22 15:34:22 +03:00
const DisplayBuffer& update_display_buffer(const Context& context);
CharCoord display_position(ByteCoord coord) const;
ByteCoord buffer_coord(CharCoord coord) const;
Highlighter& highlighters() { return m_highlighters; }
Buffer& buffer() const { return *m_buffer; }
bool needs_redraw(const Context& context) const;
void force_redraw() { m_last_setup = Setup{}; }
2012-01-23 17:57:24 +04:00
ByteCoord offset_coord(ByteCoord coord, CharCount offset);
ByteCoordAndTarget offset_coord(ByteCoordAndTarget coord, LineCount offset);
void set_client(Client* client) { m_client = client; }
void clear_display_buffer();
2011-09-02 20:51:20 +04:00
private:
Window(const Window&) = delete;
void on_option_changed(const Option& option) override;
void scroll_to_keep_selection_visible_ifn(const Context& context);
2011-12-21 23:06:26 +04:00
void run_hook_in_own_context(StringView hook_name, StringView param);
SafePtr<Buffer> m_buffer;
SafePtr<Client> m_client;
CharCoord m_position;
CharCoord m_dimensions;
DisplayBuffer m_display_buffer;
HighlighterGroup m_highlighters;
HighlighterGroup m_builtin_highlighters;
struct Setup
{
CharCoord position;
CharCoord dimensions;
size_t timestamp;
size_t main_selection;
Vector<BufferRange> selections;
};
Setup build_setup(const Context& context) const;
Setup m_last_setup;
2011-09-02 20:51:20 +04:00
};
}
#endif // window_hh_INCLUDED