From ad731cc08f2cf84ec5fca5b1cf303fa0ac3cd390 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 15 May 2019 02:39:58 +0200 Subject: LibGUI: Support cycling through focusable widgets with Tab and Shift-Tab. --- LibGUI/GWidget.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'LibGUI/GWidget.h') diff --git a/LibGUI/GWidget.h b/LibGUI/GWidget.h index daee5cbf8a..61e896fba1 100644 --- a/LibGUI/GWidget.h +++ b/LibGUI/GWidget.h @@ -194,6 +194,8 @@ private: void handle_enter_event(CEvent&); void handle_leave_event(CEvent&); void do_layout(); + void focus_previous_widget(); + void focus_next_widget(); CElapsedTimer& click_clock(GMouseButton); -- cgit v1.2.3