2011-09-02 20:51:20 +04:00
|
|
|
#ifndef window_hh_INCLUDED
|
|
|
|
#define window_hh_INCLUDED
|
|
|
|
|
2016-05-09 15:48:48 +03:00
|
|
|
#include "client.hh"
|
2013-04-09 22:05:40 +04:00
|
|
|
#include "display_buffer.hh"
|
2014-06-10 22:58:02 +04:00
|
|
|
#include "highlighter_group.hh"
|
2014-11-13 00:27:07 +03:00
|
|
|
#include "option_manager.hh"
|
2017-06-16 12:19:08 +03:00
|
|
|
#include "optional.hh"
|
2014-08-12 03:30:13 +04:00
|
|
|
#include "safe_ptr.hh"
|
2014-10-30 17:00:42 +03:00
|
|
|
#include "scope.hh"
|
2011-09-02 20:51:20 +04:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
2011-09-20 01:56:29 +04:00
|
|
|
|
2013-12-21 00:10:08 +04:00
|
|
|
// A Window is a view onto a Buffer
|
2014-10-30 17:00:42 +03:00
|
|
|
class Window : public SafeCountable, public OptionManagerWatcher, public Scope
|
2011-09-02 20:51:20 +04:00
|
|
|
{
|
|
|
|
public:
|
2012-11-22 17:08:55 +04:00
|
|
|
Window(Buffer& buffer);
|
2017-05-22 12:31:56 +03:00
|
|
|
~Window();
|
2012-06-14 17:19:38 +04:00
|
|
|
|
2016-09-22 22:36:26 +03:00
|
|
|
const DisplayCoord& position() const { return m_position; }
|
|
|
|
void set_position(DisplayCoord position);
|
2012-01-31 23:12:06 +04:00
|
|
|
|
2017-05-07 15:43:43 +03:00
|
|
|
const DisplayCoord& range() const { return m_range; }
|
|
|
|
|
2016-09-22 22:36:26 +03:00
|
|
|
const DisplayCoord& dimensions() const { return m_dimensions; }
|
|
|
|
void set_dimensions(DisplayCoord dimensions);
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2015-11-02 22:49:58 +03:00
|
|
|
void scroll(LineCount offset);
|
2013-12-16 18:01:40 +04:00
|
|
|
void center_line(LineCount buffer_line);
|
|
|
|
void display_line_at(LineCount buffer_line, LineCount display_line);
|
2015-11-02 22:49:58 +03:00
|
|
|
|
2016-09-22 22:36:26 +03:00
|
|
|
void scroll(ColumnCount offset);
|
|
|
|
void center_column(ColumnCount buffer_column);
|
|
|
|
void display_column_at(ColumnCount buffer_column, ColumnCount display_column);
|
2015-06-22 15:34:22 +03:00
|
|
|
|
|
|
|
const DisplayBuffer& update_display_buffer(const Context& context);
|
2011-09-05 22:54:17 +04:00
|
|
|
|
2017-06-16 12:19:08 +03:00
|
|
|
Optional<DisplayCoord> display_position(BufferCoord coord) const;
|
2016-09-22 22:36:26 +03:00
|
|
|
BufferCoord buffer_coord(DisplayCoord coord) const;
|
2012-09-30 18:22:03 +04:00
|
|
|
|
2013-12-21 00:10:08 +04:00
|
|
|
Buffer& buffer() const { return *m_buffer; }
|
|
|
|
|
2015-06-21 21:56:23 +03:00
|
|
|
bool needs_redraw(const Context& context) const;
|
2016-02-03 12:51:56 +03:00
|
|
|
void force_redraw() { m_last_setup = Setup{}; }
|
2012-01-23 17:57:24 +04:00
|
|
|
|
2016-05-09 15:48:48 +03:00
|
|
|
void set_client(Client* client) { m_client = client; }
|
|
|
|
|
2015-06-04 15:49:28 +03:00
|
|
|
void clear_display_buffer();
|
2011-09-02 20:51:20 +04:00
|
|
|
private:
|
2011-09-08 18:30:36 +04:00
|
|
|
Window(const Window&) = delete;
|
|
|
|
|
2013-03-03 20:25:40 +04:00
|
|
|
void on_option_changed(const Option& option) override;
|
2017-06-09 18:00:22 +03:00
|
|
|
DisplaySetup compute_display_setup(const Context& context);
|
2011-12-21 23:06:26 +04:00
|
|
|
|
2016-11-24 16:35:42 +03:00
|
|
|
void run_hook_in_own_context(StringView hook_name, StringView param,
|
|
|
|
String client_name = "");
|
2014-12-19 02:12:58 +03:00
|
|
|
|
2015-02-19 16:58:25 +03:00
|
|
|
SafePtr<Buffer> m_buffer;
|
2016-05-09 15:48:48 +03:00
|
|
|
SafePtr<Client> m_client;
|
2011-09-20 01:56:29 +04:00
|
|
|
|
2016-09-22 22:36:26 +03:00
|
|
|
DisplayCoord m_position;
|
2017-05-07 15:43:43 +03:00
|
|
|
DisplayCoord m_range;
|
2016-09-22 22:36:26 +03:00
|
|
|
DisplayCoord m_dimensions;
|
2017-05-01 22:55:18 +03:00
|
|
|
DisplayBuffer m_display_buffer;
|
2011-09-29 00:54:11 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
Highlighters m_builtin_highlighters;
|
2013-04-02 15:58:04 +04:00
|
|
|
|
2016-02-03 12:51:56 +03:00
|
|
|
struct Setup
|
|
|
|
{
|
2016-09-22 22:36:26 +03:00
|
|
|
DisplayCoord position;
|
|
|
|
DisplayCoord dimensions;
|
2016-02-03 12:51:56 +03:00
|
|
|
size_t timestamp;
|
|
|
|
size_t main_selection;
|
2016-11-28 16:59:55 +03:00
|
|
|
Vector<BufferRange, MemoryDomain::Display> selections;
|
2016-02-03 12:51:56 +03:00
|
|
|
};
|
|
|
|
Setup build_setup(const Context& context) const;
|
|
|
|
Setup m_last_setup;
|
2011-09-02 20:51:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // window_hh_INCLUDED
|