2021-01-03 11:46:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef ROUNDRECTITEM_H
|
|
|
|
#define ROUNDRECTITEM_H
|
|
|
|
|
|
|
|
#include <QGraphicsRectItem>
|
|
|
|
|
|
|
|
class RoundRectItem : public QGraphicsRectItem {
|
|
|
|
public:
|
|
|
|
RoundRectItem(double radius, QGraphicsItem *parent);
|
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
|
|
|
RoundRectItem(double radius);
|
2021-01-03 11:46:56 +00:00
|
|
|
private:
|
|
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
|
|
double radius;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|