diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-30 22:10:22 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-30 23:00:35 +0200 |
commit | e263dc8427aff08307faa02e1278d13c4901e810 (patch) | |
tree | e96dfc213309b6117d6ae1ed7dbd3f03f054425c /Services/Taskbar/TaskbarButton.h | |
parent | 1d6ec51beece130ed8b3c8787b45e83bfe35dbf9 (diff) | |
download | serenity-e263dc8427aff08307faa02e1278d13c4901e810.zip |
Taskbar: Show window progress as a progress bar behind the window title
If a window in the taskbar has progress, we'll now draw that progress
in the form of a progress bar behind the window title on the taskbar
button for the window.
Diffstat (limited to 'Services/Taskbar/TaskbarButton.h')
-rw-r--r-- | Services/Taskbar/TaskbarButton.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Services/Taskbar/TaskbarButton.h b/Services/Taskbar/TaskbarButton.h index d8852cfcc1..6a5583b25a 100644 --- a/Services/Taskbar/TaskbarButton.h +++ b/Services/Taskbar/TaskbarButton.h @@ -39,6 +39,7 @@ private: virtual void context_menu_event(GUI::ContextMenuEvent&) override; virtual void resize_event(GUI::ResizeEvent&) override; + virtual void paint_event(GUI::PaintEvent&) override; WindowIdentifier m_identifier; }; |