mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:08:12 +00:00
SystemMonitor: Enable sorting by column in the process memory map view
This commit is contained in:
parent
7970b594d5
commit
b9f58a0e2e
2 changed files with 8 additions and 3 deletions
|
@ -3,6 +3,7 @@
|
|||
#include <LibGUI/GWidget.h>
|
||||
|
||||
class CTimer;
|
||||
class GJsonArrayModel;
|
||||
class GTableView;
|
||||
|
||||
class ProcessMemoryMapWidget final : public GWidget {
|
||||
|
@ -16,6 +17,7 @@ public:
|
|||
private:
|
||||
explicit ProcessMemoryMapWidget(GWidget* parent);
|
||||
RefPtr<GTableView> m_table_view;
|
||||
RefPtr<GJsonArrayModel> m_json_model;
|
||||
pid_t m_pid { -1 };
|
||||
RefPtr<CTimer> m_timer;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue