diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-20 20:22:22 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-20 20:22:22 +0200 |
commit | 21cfa9acd4d65058214e2a439e9610c5228ba16d (patch) | |
tree | 75e2f54dd16324c35d7e313bf7683e9d1f7e96d0 /MenuApplets/ResourceGraph | |
parent | 57b86fd082ca78b396d611dc1812921c69107b5e (diff) | |
download | serenity-21cfa9acd4d65058214e2a439e9610c5228ba16d.zip |
ResourceGraph: Add a thin frame around the graphs
Make the graph widgets into 1px GUI::Frames for a pleasant 90's feel.
Diffstat (limited to 'MenuApplets/ResourceGraph')
-rw-r--r-- | MenuApplets/ResourceGraph/main.cpp | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/MenuApplets/ResourceGraph/main.cpp b/MenuApplets/ResourceGraph/main.cpp index 7ff12a6d5a..d982d9f9e9 100644 --- a/MenuApplets/ResourceGraph/main.cpp +++ b/MenuApplets/ResourceGraph/main.cpp @@ -31,8 +31,8 @@ #include <LibCore/File.h> #include <LibCore/ProcessStatisticsReader.h> #include <LibGUI/Application.h> +#include <LibGUI/Frame.h> #include <LibGUI/Painter.h> -#include <LibGUI/Widget.h> #include <LibGUI/Window.h> #include <LibGfx/Palette.h> #include <stdio.h> @@ -42,18 +42,18 @@ enum class GraphType { Memory, }; -class GraphWidget final : public GUI::Widget { - C_OBJECT(GraphWidget) +class GraphWidget final : public GUI::Frame { + C_OBJECT(GraphWidget); + public: GraphWidget(GraphType graph_type, Optional<Gfx::Color> graph_color) : m_graph_type(graph_type) { + set_frame_thickness(1); m_graph_color = graph_color.value_or(palette().menu_selection()); start_timer(1000); } - virtual ~GraphWidget() override {} - private: virtual void timer_event(Core::TimerEvent&) override { @@ -86,14 +86,17 @@ private: virtual void paint_event(GUI::PaintEvent& event) override { + GUI::Frame::paint_event(event); GUI::Painter painter(*this); painter.add_clip_rect(event.rect()); + painter.add_clip_rect(frame_inner_rect()); painter.fill_rect(event.rect(), Color::Black); int i = m_history.capacity() - m_history.size(); + auto rect = frame_inner_rect(); for (auto value : m_history) { painter.draw_line( - { i, rect().bottom() }, - { i, (int)(height() - (value * (float)height())) }, + { i, rect.bottom() }, + { i, (int)(rect.height() - (value * (float)rect.height())) }, m_graph_color); ++i; } |