summaryrefslogtreecommitdiff
path: root/Applications/SystemMonitor/MemoryStatsWidget.h
blob: f2ce8311880a34aa75e9b95278723042a7f51613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

#include <LibCore/CFile.h>
#include <LibGUI/GWidget.h>

class GLabel;
class GraphWidget;

class MemoryStatsWidget final : public GWidget {
    C_OBJECT(MemoryStatsWidget)
public:
    static MemoryStatsWidget* the();

    virtual ~MemoryStatsWidget() override;

    void refresh();

private:
    MemoryStatsWidget(GraphWidget& graph, GWidget* parent);

    virtual void timer_event(CTimerEvent&) override;

    GraphWidget& m_graph;
    RefPtr<GLabel> m_user_physical_pages_label;
    RefPtr<GLabel> m_supervisor_physical_pages_label;
    RefPtr<GLabel> m_kmalloc_label;
    RefPtr<GLabel> m_kmalloc_count_label;
    RefPtr<CFile> m_proc_memstat;
};