1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:58:11 +00:00

LibGUI: Add "Vector<GWidget*> GWidget::child_widgets()"

This is quite inefficient since it constructs a new Vector each time.
This commit is contained in:
Andreas Kling 2019-11-11 19:12:32 +01:00
parent 3ef287eb9f
commit 524da0ad01
2 changed files with 16 additions and 1 deletions

View file

@ -124,7 +124,8 @@ public:
bool is_focused() const;
void set_focus(bool);
enum class ShouldRespectGreediness { No = 0, Yes };
enum class ShouldRespectGreediness { No = 0,
Yes };
struct HitTestResult {
GWidget* widget { nullptr };
Point local_position;
@ -220,6 +221,8 @@ public:
});
}
Vector<GWidget*> child_widgets() const;
virtual bool is_radio_button() const { return false; }
virtual bool is_abstract_button() const { return false; }