add new methods to textbox for line count

This commit is contained in:
Jinhao
2017-06-18 05:08:51 +08:00
parent 33321d73de
commit b5db21567f
4 changed files with 41 additions and 0 deletions

View File

@@ -1872,6 +1872,14 @@ namespace nana{ namespace widgets
select_.move_to_end = move_to_end;
}
std::size_t text_editor::line_count(bool text_lines) const
{
if (text_lines)
return textbase().lines();
return impl_->capacities.behavior->take_lines();
}
void text_editor::draw_corner()
{
impl_->cview->draw_corner(graph_);