diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-05 14:42:05 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-05 14:42:05 +0100 |
commit | e23c5b7e83fe6de92f5d4796ea50e368002a2d2e (patch) | |
tree | 53f67575945be08b276d709b269f0a8857bad4c0 /Libraries/LibGUI/Widget.h | |
parent | d16f8214d89348062c19908d8651ac94d13c5aa9 (diff) | |
download | serenity-e23c5b7e83fe6de92f5d4796ea50e368002a2d2e.zip |
LibGUI+Inspector: Highlight the currently remotely inspected widget
This patch adds a magenta rectangle around the currently inspected
widget. This allows you to browse an app's widget tree somewhat
visually using the Inspector. :^)
Diffstat (limited to 'Libraries/LibGUI/Widget.h')
-rw-r--r-- | Libraries/LibGUI/Widget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibGUI/Widget.h b/Libraries/LibGUI/Widget.h index b0e4b5e3cd..80d4f740cf 100644 --- a/Libraries/LibGUI/Widget.h +++ b/Libraries/LibGUI/Widget.h @@ -293,6 +293,9 @@ protected: virtual void drag_move_event(DragEvent&); virtual void drop_event(DropEvent&); + virtual void did_begin_inspection() override; + virtual void did_end_inspection() override; + private: void handle_paint_event(PaintEvent&); void handle_resize_event(ResizeEvent&); |