LibGUI: Add highlighting to UrlBox

This commit is contained in:
Cameron Youell 2023-02-16 18:23:26 +11:00 committed by Sam Atkins
commit cb96c892cc
Notes: sideshowbarker 2024-07-17 03:03:44 +09:00
2 changed files with 62 additions and 0 deletions

View file

@ -72,8 +72,11 @@ public:
private:
UrlBox();
void highlight_url();
virtual void mousedown_event(GUI::MouseEvent&) override;
virtual void focusout_event(GUI::FocusEvent&) override;
virtual void focusin_event(GUI::FocusEvent&) override;
bool m_focus_transition { true };
};