ProcessManager: Rename it to SystemMonitor

This is a more appropriate name now that it does a lot
more than just manage processes ^)
This commit is contained in:
Sergey Bugaev 2019-08-14 14:06:43 +03:00 committed by Andreas Kling
commit cbdda91065
Notes: sideshowbarker 2024-07-19 12:41:14 +09:00
23 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,18 @@
#pragma once
#include <LibGUI/GWidget.h>
class GTableView;
class ProcessMemoryMapWidget final : public GWidget {
C_OBJECT(ProcessMemoryMapWidget);
public:
explicit ProcessMemoryMapWidget(GWidget* parent);
virtual ~ProcessMemoryMapWidget() override;
void set_pid(pid_t);
private:
GTableView* m_table_view { nullptr };
pid_t m_pid { -1 };
};