2020-10-28 13:36:09 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef STATSWIDGET_H
|
|
|
|
#define STATSWIDGET_H
|
|
|
|
|
|
|
|
#include "stats/statsstate.h"
|
|
|
|
#include "stats/chartlistmodel.h"
|
|
|
|
#include "ui_statswidget.h"
|
|
|
|
#include <vector>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
class QCheckBox;
|
statistics: convert chart to QQuickItem
It turns out that the wrong base class was used for the chart.
QQuickWidget can only be used on desktop, not in a mobile UI.
Therefore, turn this into a QQuickItem and move the container
QQuickWidget into desktop-only code.
Currently, this code is insane: The chart is rendered onto a
QGraphicsScene (as it was before), which is then rendered into
a QImage, which is transformed into a QSGTexture, which is then
projected onto the device. This is performed on every mouse
move event, since these events in general change the position
of the info-box.
The plan is to slowly convert elements such as the info-box into
QQuickItems. Browsing the QtQuick documentation, this will
not be much fun.
Also note that the rendering currently tears, flickers and has
antialiasing artifacts, most likely owing to integer (QImage)
to floating point (QGraphicsScene, QQuickItem) conversion
problems. The data flow is
QGraphicsScene (float) -> QImage (int) -> QQuickItem (float).
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-01-07 13:38:37 +00:00
|
|
|
class StatsView;
|
2020-10-28 13:36:09 +00:00
|
|
|
|
|
|
|
class StatsWidget : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
StatsWidget(QWidget *parent = 0);
|
|
|
|
private
|
|
|
|
slots:
|
|
|
|
void closeStats();
|
|
|
|
void chartTypeChanged(int);
|
|
|
|
void var1Changed(int);
|
|
|
|
void var2Changed(int);
|
|
|
|
void var1BinnerChanged(int);
|
|
|
|
void var2BinnerChanged(int);
|
|
|
|
void var2OperationChanged(int);
|
2021-12-31 17:29:06 +00:00
|
|
|
void var1SortChanged(int);
|
2020-10-28 13:36:09 +00:00
|
|
|
void featureChanged(int, bool);
|
2021-02-12 09:56:48 +00:00
|
|
|
void restrict();
|
|
|
|
void unrestrict();
|
2020-10-28 13:36:09 +00:00
|
|
|
private:
|
|
|
|
Ui::StatsWidget ui;
|
|
|
|
StatsState state;
|
2022-02-16 23:42:21 +00:00
|
|
|
StatsView *getView();
|
2020-10-28 13:36:09 +00:00
|
|
|
void updateUi();
|
2021-02-12 09:56:48 +00:00
|
|
|
void updateRestrictionLabel();
|
2020-10-28 13:36:09 +00:00
|
|
|
std::vector<std::unique_ptr<QCheckBox>> features;
|
|
|
|
|
|
|
|
ChartListModel charts;
|
|
|
|
void showEvent(QShowEvent *) override;
|
2021-03-30 21:18:15 +00:00
|
|
|
void hideEvent(QHideEvent *) override;
|
2020-10-28 13:36:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // STATSWIDGET_H
|