mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
e4e5fa74d0
There's no such supervisor pages concept, so there's no need to call physical pages with the "user_physical" prefix anymore.
45 lines
1 KiB
C++
45 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace SystemMonitor {
|
|
|
|
class GraphWidget;
|
|
|
|
class MemoryStatsWidget final : public GUI::Widget {
|
|
C_OBJECT(MemoryStatsWidget)
|
|
public:
|
|
static MemoryStatsWidget* the();
|
|
|
|
virtual ~MemoryStatsWidget() override = default;
|
|
|
|
void set_graph_widget(GraphWidget& graph);
|
|
|
|
void set_graph_widget_via_name(String name);
|
|
String graph_widget_name();
|
|
|
|
void refresh();
|
|
|
|
private:
|
|
MemoryStatsWidget(GraphWidget* graph);
|
|
MemoryStatsWidget();
|
|
|
|
GraphWidget* m_graph;
|
|
// Is null if we have a valid graph
|
|
String m_graph_widget_name {};
|
|
RefPtr<GUI::Label> m_physical_pages_label;
|
|
RefPtr<GUI::Label> m_physical_pages_committed_label;
|
|
RefPtr<GUI::Label> m_kmalloc_space_label;
|
|
RefPtr<GUI::Label> m_kmalloc_count_label;
|
|
RefPtr<GUI::Label> m_kfree_count_label;
|
|
RefPtr<GUI::Label> m_kmalloc_difference_label;
|
|
};
|
|
|
|
}
|