summaryrefslogtreecommitdiff
path: root/Applications/ProcessManager/MemoryStatsWidget.h
blob: 497930cb05f67e38ac4d0522482d0804f5a0d4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <LibGUI/GWidget.h>

class GLabel;

class MemoryStatsWidget final : public GWidget {
public:
    explicit MemoryStatsWidget(GWidget* parent);
    virtual ~MemoryStatsWidget() override;

    void refresh();

private:
    virtual void timer_event(GTimerEvent&) override;
    virtual void paint_event(GPaintEvent&) override;

    GLabel* m_user_physical_pages_label { nullptr };
    GLabel* m_supervisor_physical_pages_label { nullptr };
    GLabel* m_kmalloc_label { nullptr };
};