summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/AbstractButton.cpp
AgeCommit message (Collapse)Author
2020-06-10LibGfx: Rename Rect,Point,Size => IntRect,IntPoint,IntSizeAndreas Kling
This fits nicer with FloatRect,FloatPoint,FloatSize and gives a much better visual clue about what type of metric is being used.
2020-05-19LibGUI: Remove some ancient unused debug logging in AbstractButtonAndreas Kling
2020-05-12LibGUI: Include keyboard modifier state with button on_click callsAndreas Kling
This will allow you us to implement special behavior when Ctrl+clicking a button.
2020-04-29LibGUI: Remove unnecessary is_enabled() checks in mouse event handlersAndreas Kling
We never deliver mouse events to disabled widgets, so there's no need to check is_enabled() in these event handlers.
2020-03-05LibGUI: Implement set_property() on Widget and AbstractButtonAndreas Kling
This makes it possible for an RPC client to modify some interesting widget properties.
2020-03-03LibGUI: Save some more state from AbstractButtonAndreas Kling
The more stuff we save in save_to() overrides, the more interesting it becomes inspecting GUI programs. :^)
2020-02-23LibGUI: Remove parent parameter to GUI::Widget constructorAndreas Kling
2020-02-23LibGUI: Use Core::Object::add() a whole bunchAndreas Kling
2020-02-20LibGfx+LibGUI: Allow theming the focus outline of AbstractButtonTibor Nagy
2020-02-16LibGUI: Add forwarding headerAndreas Kling
This patch adds <LibGUI/Forward.h> and uses it a bunch. It also dragged various header dependency reduction changes into it.
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling