2011-09-02 18:51:20 +02:00
|
|
|
#include "window.hh"
|
|
|
|
|
2011-09-19 23:56:29 +02:00
|
|
|
#include "assert.hh"
|
2011-11-29 23:37:20 +01:00
|
|
|
#include "highlighter_registry.hh"
|
2012-04-03 14:01:01 +02:00
|
|
|
#include "hook_manager.hh"
|
2012-01-23 14:56:43 +01:00
|
|
|
#include "context.hh"
|
2011-09-19 23:56:29 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include <algorithm>
|
2011-10-04 20:49:41 +02:00
|
|
|
#include <sstream>
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-08 02:13:19 +02:00
|
|
|
Window::Window(Buffer& buffer)
|
2012-01-31 20:12:06 +01:00
|
|
|
: Editor(buffer),
|
2011-09-02 18:51:20 +02:00
|
|
|
m_position(0, 0),
|
2012-04-03 15:39:20 +02:00
|
|
|
m_dimensions(0, 0),
|
2012-06-07 15:29:44 +02:00
|
|
|
m_hook_manager(buffer.hook_manager()),
|
2012-04-03 15:39:20 +02:00
|
|
|
m_option_manager(buffer.option_manager())
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-11-29 23:37:20 +01:00
|
|
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
2011-11-26 19:39:59 +01:00
|
|
|
|
2012-06-07 15:29:44 +02:00
|
|
|
m_hook_manager.run_hook("WinCreate", buffer.name(), Context(*this));
|
2012-06-14 15:19:38 +02:00
|
|
|
m_option_manager.register_watcher(*this);
|
2011-11-26 19:39:59 +01:00
|
|
|
|
2012-06-12 20:24:29 +02:00
|
|
|
registry.add_highlighter_to_group(*this, m_highlighters, "expand_tabs", HighlighterParameters());
|
|
|
|
registry.add_highlighter_to_group(*this, m_highlighters, "highlight_selections", HighlighterParameters());
|
2012-06-14 15:19:38 +02:00
|
|
|
|
|
|
|
for (auto& option : m_option_manager.flatten_options())
|
|
|
|
on_option_changed(option.first, option.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
Window::~Window()
|
|
|
|
{
|
|
|
|
m_option_manager.unregister_watcher(*this);
|
2011-09-27 20:45:22 +02:00
|
|
|
}
|
|
|
|
|
2012-01-31 20:12:06 +01:00
|
|
|
void Window::update_display_buffer()
|
2011-09-22 16:00:04 +02:00
|
|
|
{
|
2011-09-05 20:54:17 +02:00
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
DisplayBuffer::LineList& lines = m_display_buffer.lines();
|
|
|
|
lines.clear();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-07-03 23:23:07 +02:00
|
|
|
for (auto line = 0; line < m_dimensions.line; ++line)
|
|
|
|
{
|
|
|
|
auto buffer_line = m_position.line + line;
|
|
|
|
if (buffer_line >= buffer().line_count())
|
|
|
|
break;
|
|
|
|
BufferIterator pos = buffer().iterator_at({ buffer_line, m_position.column });
|
|
|
|
BufferIterator line_begin = buffer().iterator_at_line_begin(pos);
|
|
|
|
BufferIterator line_end = buffer().iterator_at_line_end(pos);
|
|
|
|
|
2012-07-12 23:19:10 +02:00
|
|
|
BufferIterator end;
|
|
|
|
if (line_end - pos > m_dimensions.column)
|
|
|
|
end = pos + m_dimensions.column;
|
|
|
|
else
|
|
|
|
end = line_end;
|
|
|
|
|
|
|
|
lines.push_back(DisplayLine(buffer_line));
|
|
|
|
lines.back().push_back(DisplayAtom(AtomContent(pos,end)));
|
2012-07-03 23:23:07 +02:00
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-07-12 23:51:13 +02:00
|
|
|
m_display_buffer.compute_range();
|
2012-01-19 21:37:29 +01:00
|
|
|
m_highlighters(m_display_buffer);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
void Window::set_dimensions(const DisplayCoord& dimensions)
|
2011-09-05 20:54:17 +02:00
|
|
|
{
|
|
|
|
m_dimensions = dimensions;
|
|
|
|
}
|
|
|
|
|
2011-09-05 20:55:31 +02:00
|
|
|
void Window::scroll_to_keep_cursor_visible_ifn()
|
|
|
|
{
|
2012-07-15 01:48:50 +02:00
|
|
|
BufferIterator cursor = selections().back().last();
|
|
|
|
|
|
|
|
// scroll lines if needed
|
|
|
|
if (cursor.line() < m_position.line)
|
|
|
|
m_position.line = cursor.line();
|
|
|
|
else if (cursor.line() >= m_position.line + m_dimensions.line)
|
|
|
|
m_position.line = cursor.line() - (m_dimensions.line - 1);
|
|
|
|
|
|
|
|
// highlight only the line containing the cursor
|
|
|
|
DisplayBuffer display_buffer;
|
|
|
|
DisplayBuffer::LineList& lines = display_buffer.lines();
|
|
|
|
lines.push_back(DisplayLine(cursor.line()));
|
|
|
|
|
|
|
|
BufferIterator line_begin = buffer().iterator_at_line_begin(cursor);
|
|
|
|
BufferIterator line_end = buffer().iterator_at_line_end(cursor);
|
|
|
|
lines.back().push_back(DisplayAtom(AtomContent(line_begin, line_end)));
|
|
|
|
|
|
|
|
display_buffer.compute_range();
|
|
|
|
m_highlighters(display_buffer);
|
|
|
|
|
|
|
|
// now we can compute where the cursor is in display columns
|
|
|
|
// (this is only valid if highlighting one line and multiple lines put
|
|
|
|
// the cursor in the same position, however I do not find any sane example
|
|
|
|
// of highlighters not doing that)
|
|
|
|
int column = 0;
|
|
|
|
for (auto& atom : lines.back())
|
|
|
|
{
|
|
|
|
if (atom.content.has_buffer_range() and
|
|
|
|
atom.content.begin() <= cursor and atom.content.end() > cursor)
|
|
|
|
{
|
|
|
|
if (atom.content.type() == AtomContent::BufferRange)
|
|
|
|
column += cursor - atom.content.begin();
|
|
|
|
else
|
|
|
|
column += atom.content.content().length();
|
|
|
|
|
|
|
|
// we could early out on this, but having scrolling left
|
|
|
|
// faster than not scrolling at all is not really useful.
|
|
|
|
if (cursor.column() < m_position.column)
|
|
|
|
m_position.column = cursor.column();
|
|
|
|
else if (column >= m_position.column + m_dimensions.column)
|
|
|
|
m_position.column = column - (m_dimensions.column - 1);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
column += atom.content.content().length();
|
|
|
|
}
|
|
|
|
// the cursor should always be visible.
|
|
|
|
assert(false);
|
2011-09-05 20:55:31 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String Window::status_line() const
|
2011-10-04 20:49:41 +02:00
|
|
|
{
|
2012-01-31 20:12:06 +01:00
|
|
|
BufferCoord cursor = buffer().line_and_column_at(selections().back().last());
|
2011-10-04 20:49:41 +02:00
|
|
|
std::ostringstream oss;
|
2012-01-31 20:12:06 +01:00
|
|
|
oss << buffer().name();
|
|
|
|
if (buffer().is_modified())
|
2011-10-05 16:21:24 +02:00
|
|
|
oss << " [+]";
|
2011-10-27 16:27:39 +02:00
|
|
|
oss << " -- " << cursor.line+1 << "," << cursor.column+1
|
2011-12-21 20:06:26 +01:00
|
|
|
<< " -- " << selections().size() << " sel -- ";
|
2012-02-08 00:41:10 +01:00
|
|
|
if (is_editing())
|
2011-10-05 16:21:24 +02:00
|
|
|
oss << "[Insert]";
|
2011-10-04 20:49:41 +02:00
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
2012-02-08 00:41:10 +01:00
|
|
|
void Window::on_incremental_insertion_end()
|
2011-09-19 23:56:29 +02:00
|
|
|
{
|
2012-01-31 20:12:06 +01:00
|
|
|
push_selections();
|
2012-04-03 14:01:01 +02:00
|
|
|
hook_manager().run_hook("InsertEnd", "", Context(*this));
|
2012-01-31 20:12:06 +01:00
|
|
|
pop_selections();
|
2011-09-19 23:56:29 +02:00
|
|
|
}
|
|
|
|
|
2012-06-14 15:19:38 +02:00
|
|
|
void Window::on_option_changed(const String& name, const Option& option)
|
|
|
|
{
|
|
|
|
String desc = name + "=" + option.as_string();
|
|
|
|
m_hook_manager.run_hook("WinSetOption", desc, Context(*this));
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|