mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
e7907c494f
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>
40 lines
830 B
C++
40 lines
830 B
C++
// 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;
|
|
class StatsView;
|
|
|
|
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);
|
|
void featureChanged(int, bool);
|
|
private:
|
|
Ui::StatsWidget ui;
|
|
StatsState state;
|
|
StatsView *view;
|
|
void updateUi();
|
|
std::vector<std::unique_ptr<QCheckBox>> features;
|
|
|
|
ChartListModel charts;
|
|
//QStringListModel charts;
|
|
void showEvent(QShowEvent *) override;
|
|
};
|
|
|
|
#endif // STATSWIDGET_H
|