mobile/statistics: make charts model available to UI

Create a QML ChartListModel in the StatisticsPage and pass that to the
StatsManager on initialization.

[extracted from a slightly larger commit]

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Berthold Stoeger 2021-01-12 10:28:04 -08:00 committed by Dirk Hohndel
parent e610fb2481
commit 12842f4a86
2 changed files with 20 additions and 6 deletions

View file

@ -7,6 +7,8 @@
#include <QStringList>
class ChartListModel;
class StatsManager : public QObject {
Q_OBJECT
public:
@ -23,13 +25,14 @@ public:
StatsManager();
~StatsManager();
Q_INVOKABLE void init(StatsView *v, QObject *o);
Q_INVOKABLE void init(StatsView *v, ChartListModel *charts);
Q_INVOKABLE void doit();
Q_INVOKABLE void var1Changed(int idx);
Q_INVOKABLE void var1BinnerChanged(int idx);
Q_INVOKABLE void var2Changed(int idx);
Q_INVOKABLE void var2BinnerChanged(int idx);
Q_INVOKABLE void var2OperationChanged(int idx);
Q_INVOKABLE void setChart(int idx);
signals:
void var1ListChanged();
void binner1ListChanged();
@ -43,6 +46,7 @@ signals:
void operation2IndexChanged();
private:
StatsView *view;
ChartListModel *charts;
StatsState state;
QStringList var1List;
QStringList binner1List;