summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/LinkLabel.h
AgeCommit message (Collapse)Author
2020-12-29LibGUI: Set default value of LinkLabel text argument to a null stringLinus Groh
The regular Label also does this, being able to call the constructor with no arguments is required for REGISTER_WIDGET(GUI, LinkLabel).
2020-12-26LibGUI: Make the LinkLabel widget keyboard-friendlyAndreas Kling
Make it tab-focusable and activate it with the return key. :^)
2020-12-26LibGUI: Set LinkLabel tooltip if text can't fit the widgetAndreas Kling
We were setting a tooltip when the text overflowed the *window* width, make this more general by basing it on the *widget* width.
2020-12-26LibGUI: Minor tweaks to the GUI::LinkLabelAndreas Kling
Remove some unnecessary includes and make the constructor private.
2020-12-26LibGUI: Rename Link => LinkLabelAndreas Kling