Window: add selection_content method

it returns the content of the last selection, or the character under the
cursor if there are no selections.
This commit is contained in:
Maxime Coste 2011-09-23 14:31:15 +00:00
parent 8f70192875
commit 838ceb5958
2 changed files with 13 additions and 0 deletions

View File

@ -155,6 +155,18 @@ void Window::select(bool append, const Selector& selector)
scroll_to_keep_cursor_visible_ifn();
}
BufferString Window::selection_content() const
{
if (m_selections.empty())
{
BufferIterator it = iterator_at(m_cursor);
return m_buffer.string(it, it+1);
}
else
return m_buffer.string(m_selections.back().begin(),
m_selections.back().end());
}
void Window::move_cursor(const WindowCoord& offset)
{
move_cursor_to(m_cursor + offset);

View File

@ -65,6 +65,7 @@ public:
void empty_selections();
void select(bool append, const Selector& selector);
BufferString selection_content() const;
void set_dimensions(const WindowCoord& dimensions);