summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/memory.h
authormickeyl <mickeyl>2003-11-03 22:29:08 (UTC)
committer mickeyl <mickeyl>2003-11-03 22:29:08 (UTC)
commit28812a7f2c5bd370a55824a73f6a0010f8ea9f7e (patch) (unidiff)
tree0f90e62371740645a631f06c01750b9c2bd7b381 /noncore/settings/sysinfo/memory.h
parentfd87de118d519108b99125f190f3aa6bd2a0b4cb (diff)
downloadopie-28812a7f2c5bd370a55824a73f6a0010f8ea9f7e.zip
opie-28812a7f2c5bd370a55824a73f6a0010f8ea9f7e.tar.gz
opie-28812a7f2c5bd370a55824a73f6a0010f8ea9f7e.tar.bz2
show swap memory on Memory tab
Diffstat (limited to 'noncore/settings/sysinfo/memory.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/memory.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/memory.h b/noncore/settings/sysinfo/memory.h
index 696f97c..c2af948 100644
--- a/noncore/settings/sysinfo/memory.h
+++ b/noncore/settings/sysinfo/memory.h
@@ -26,23 +26,39 @@
26class GraphData; 26class GraphData;
27class Graph; 27class Graph;
28class GraphLegend; 28class GraphLegend;
29class QLabel; 29class QLabel;
30 30
31class MemoryInfo : public QWidget 31class MemoryInfo : public QWidget
32{ 32{
33 Q_OBJECT 33 Q_OBJECT
34public: 34public:
35 MemoryInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 35 MemoryInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
36 ~MemoryInfo(); 36 ~MemoryInfo();
37 37
38 unsigned long total;
39 unsigned long used;
40 unsigned long memfree;
41 unsigned long shared;
42 unsigned long buffers;
43 unsigned long cached;
44 unsigned long realUsed;
45 unsigned long swaptotal;
46 unsigned long swapused;
47 unsigned long swapfree;
48
38private slots: 49private slots:
39 void updateData(); 50 void updateData();
40 51
41private: 52private:
42 QLabel *totalMem; 53 QLabel *totalMem;
43 GraphData *data; 54 GraphData *data;
44 Graph *graph; 55 Graph *graph;
45 GraphLegend *legend; 56 GraphLegend *legend;
57
58 QLabel* swapMem;
59 GraphData *swapdata;
60 Graph *swapgraph;
61 GraphLegend *swaplegend;
46}; 62};
47 63
48#endif 64#endif