mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 07:41:01 +00:00
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:
parent
c7040cee62
commit
cbdda91065
Notes:
sideshowbarker
2024-07-19 12:41:14 +09:00
Author: https://github.com/bugaevc
Commit: cbdda91065
Pull-request: https://github.com/SerenityOS/serenity/pull/453
Reviewed-by: https://github.com/awesomekling
23 changed files with 9 additions and 9 deletions
18
Applications/SystemMonitor/ProcessMemoryMapWidget.h
Normal file
18
Applications/SystemMonitor/ProcessMemoryMapWidget.h
Normal 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 };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue