1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 13:27:34 +00:00

SystemMonitor: Display connection status icons in Network tab

This commit is contained in:
Maciej Zygmanowski 2021-07-26 13:00:05 +02:00 committed by Andreas Kling
parent c42f5a9e56
commit 13773d3ced
2 changed files with 22 additions and 0 deletions

View file

@ -25,4 +25,7 @@ private:
RefPtr<GUI::JsonArrayModel> m_tcp_socket_model;
RefPtr<GUI::JsonArrayModel> m_udp_socket_model;
RefPtr<Core::Timer> m_update_timer;
RefPtr<Gfx::Bitmap> m_network_connected_bitmap;
RefPtr<Gfx::Bitmap> m_network_disconnected_bitmap;
RefPtr<Gfx::Bitmap> m_network_link_down_bitmap;
};