Scaled icon's master image down.
[weightgraph] / weightgraph / weightstatsview.h
1 #ifndef WEIGHTSTATSVIEW_H
2 #define WEIGHTSTATSVIEW_H
3
4 #include <QWidget>
5 #include <QLabel>
6 #include "weightdata.h"
7
8 class WeightStatsView : public QWidget
9 {
10   Q_OBJECT
11 public:
12   explicit WeightStatsView(WeightDataModel *wdm, QWidget *parent = 0);
13
14
15 signals:
16
17 public slots:
18   void updateStats();
19 private:
20   WeightDataModel *wdm;
21   QLabel *last;
22   QLabel *change;
23 };
24
25 #endif // WEIGHTSTATSVIEW_H