mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +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
23 changed files with 9 additions and 9 deletions
20
Applications/SystemMonitor/NetworkStatisticsWidget.h
Normal file
20
Applications/SystemMonitor/NetworkStatisticsWidget.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibGUI/GWidget.h>
|
||||
|
||||
class GTableView;
|
||||
|
||||
class NetworkStatisticsWidget final : public GWidget {
|
||||
C_OBJECT(NetworkStatisticsWidget)
|
||||
public:
|
||||
explicit NetworkStatisticsWidget(GWidget* parent = nullptr);
|
||||
virtual ~NetworkStatisticsWidget() override;
|
||||
|
||||
private:
|
||||
void update_models();
|
||||
|
||||
GTableView* m_adapter_table_view { nullptr };
|
||||
GTableView* m_socket_table_view { nullptr };
|
||||
CTimer* m_update_timer { nullptr };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue