1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

LibGUI: Add highlighting to UrlBox

This commit is contained in:
Cameron Youell 2023-02-16 18:23:26 +11:00 committed by Sam Atkins
parent dad70d8d6e
commit cb96c892cc
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 };
};