mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
21 lines
478 B
C++
21 lines
478 B
C++
#pragma once
|
|
|
|
#include <LibCore/CTimer.h>
|
|
#include <LibGUI/GWidget.h>
|
|
|
|
class GTableView;
|
|
|
|
class NetworkStatisticsWidget final : public GWidget {
|
|
C_OBJECT(NetworkStatisticsWidget)
|
|
public:
|
|
virtual ~NetworkStatisticsWidget() override;
|
|
|
|
private:
|
|
explicit NetworkStatisticsWidget(GWidget* parent = nullptr);
|
|
void update_models();
|
|
|
|
ObjectPtr<GTableView> m_adapter_table_view;
|
|
ObjectPtr<GTableView> m_socket_table_view;
|
|
ObjectPtr<CTimer> m_update_timer;
|
|
};
|