GTextEditor: Add basic PageUp/PageDown navigation support.

This commit is contained in:
Andreas Kling 2019-03-07 17:11:17 +01:00
commit f8b72ab3ab
Notes: sideshowbarker 2024-07-19 15:08:11 +09:00

View file

@ -160,6 +160,22 @@ void GTextEditor::keydown_event(GKeyEvent& event)
}
return;
}
if (!event.modifiers() && event.key() == KeyCode::Key_PageUp) {
if (m_cursor.line() > 0) {
int new_line = max(0, m_cursor.line() - visible_content_rect().height() / line_height());
int new_column = min(m_cursor.column(), m_lines[new_line]->length());
set_cursor(new_line, new_column);
}
return;
}
if (!event.modifiers() && event.key() == KeyCode::Key_PageDown) {
if (m_cursor.line() < (m_lines.size() - 1)) {
int new_line = min(line_count() - 1, m_cursor.line() + visible_content_rect().height() / line_height());
int new_column = min(m_cursor.column(), m_lines[new_line]->length());
set_cursor(new_line, new_column);
}
return;
}
if (!event.modifiers() && event.key() == KeyCode::Key_Left) {
if (m_cursor.column() > 0) {
int new_column = m_cursor.column() - 1;