diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-15 02:39:58 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-15 02:39:58 +0200 |
commit | ad731cc08f2cf84ec5fca5b1cf303fa0ac3cd390 (patch) | |
tree | 2a8a7e7bcbd269da0d3b16683189652e74a924a7 /LibGUI/GWindow.h | |
parent | 01ffcdfa31ba560fcceee82ba2158f867ad114ec (diff) | |
download | serenity-ad731cc08f2cf84ec5fca5b1cf303fa0ac3cd390.zip |
LibGUI: Support cycling through focusable widgets with Tab and Shift-Tab.
Diffstat (limited to 'LibGUI/GWindow.h')
-rw-r--r-- | LibGUI/GWindow.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/LibGUI/GWindow.h b/LibGUI/GWindow.h index 4adf2f7f9d..51c2981618 100644 --- a/LibGUI/GWindow.h +++ b/LibGUI/GWindow.h @@ -113,6 +113,8 @@ public: String icon_path() const { return m_icon_path; } void set_icon_path(const String&); + Vector<GWidget*> focusable_widgets() const; + virtual const char* class_name() const override { return "GWindow"; } protected: |