summaryrefslogtreecommitdiff
path: root/LibGUI/GWindow.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-15 02:39:58 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-15 02:39:58 +0200
commitad731cc08f2cf84ec5fca5b1cf303fa0ac3cd390 (patch)
tree2a8a7e7bcbd269da0d3b16683189652e74a924a7 /LibGUI/GWindow.h
parent01ffcdfa31ba560fcceee82ba2158f867ad114ec (diff)
downloadserenity-ad731cc08f2cf84ec5fca5b1cf303fa0ac3cd390.zip
LibGUI: Support cycling through focusable widgets with Tab and Shift-Tab.
Diffstat (limited to 'LibGUI/GWindow.h')
-rw-r--r--LibGUI/GWindow.h2
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: