LibGUI: Factor out Splitter hit testing into a separate function

This commit is contained in:
Andreas Kling 2020-02-11 10:56:26 +01:00
commit 7aa62665a3
Notes: sideshowbarker 2024-07-19 09:26:47 +09:00
2 changed files with 24 additions and 14 deletions

View file

@ -45,6 +45,8 @@ protected:
virtual void leave_event(Core::Event&) override;
private:
void get_resize_candidates_at(const Gfx::Point&, Widget*&, Widget*&);
Orientation m_orientation;
bool m_resizing { false };
Gfx::Point m_resize_origin;