1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +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:
Sergey Bugaev 2019-08-14 14:06:43 +03:00 committed by Andreas Kling
parent c7040cee62
commit cbdda91065
23 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,21 @@
#pragma once
#include <LibGUI/GTextEditor.h>
#include <LibGUI/GWidget.h>
class CTimer;
class ProcessStacksWidget final : public GWidget {
C_OBJECT(ProcessStacksWidget)
public:
explicit ProcessStacksWidget(GWidget* parent);
virtual ~ProcessStacksWidget() override;
void set_pid(pid_t);
void refresh();
private:
pid_t m_pid { -1 };
GTextEditor* m_stacks_editor { nullptr };
CTimer* m_timer { nullptr };
};