1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 13:07:35 +00:00

ProcessManager: Draw the graphs as lines.

This looks pretty neat. Also it exercises the diagonal line drawing code
so we get 2-for-1. :^)
This commit is contained in:
Andreas Kling 2019-05-07 17:11:48 +02:00
parent 5b2e122624
commit 1598a0a5cb
2 changed files with 9 additions and 4 deletions

View file

@ -54,7 +54,6 @@ int main(int argc, char** argv)
auto* memory_graph_group_box = new GGroupBox("Memory usage", graphs_container);
memory_graph_group_box->set_layout(make<GBoxLayout>(Orientation::Vertical));
memory_graph_group_box->layout()->set_margins({ 6, 16, 6, 6 });
tabwidget->add_widget("Graphs", graphs_container);
memory_graph_group_box->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
memory_graph_group_box->set_preferred_size({ 0, 120 });
auto* memory_graph = new GraphWidget(memory_graph_group_box);
@ -64,6 +63,8 @@ int main(int argc, char** argv)
return String::format("%d / %d KB", value, max);
};
tabwidget->add_widget("Graphs", graphs_container);
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
auto* toolbar = new GToolBar(widget);