ProcessManager: Add CPU/memory usage graphs in a separate tab.

Finally we get some real use for the new GTabWidget. :^)
This commit is contained in:
Andreas Kling 2019-05-06 03:21:23 +02:00
commit 25bb7a59ac
Notes: sideshowbarker 2024-07-19 14:13:32 +09:00
10 changed files with 140 additions and 19 deletions

View file

@ -4,11 +4,12 @@
#include <AK/Function.h>
#include <unistd.h>
class GraphWidget;
class ProcessModel;
class ProcessTableView final : public GTableView {
public:
explicit ProcessTableView(GWidget* parent);
ProcessTableView(GraphWidget&, GWidget* parent);
virtual ~ProcessTableView() override;
pid_t selected_pid() const;