mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
cbdda91065
This is a more appropriate name now that it does a lot more than just manage processes ^)
21 lines
484 B
C++
21 lines
484 B
C++
#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 };
|
|
};
|