2021-01-01 21:26:52 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
// A pie chart series, which displays percentual information.
|
|
|
|
#ifndef PIE_SERIES_H
|
|
|
|
#define PIE_SERIES_H
|
|
|
|
|
2021-01-18 21:29:34 +00:00
|
|
|
#include "statshelper.h"
|
2021-01-01 21:26:52 +00:00
|
|
|
#include "statsseries.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include <QString>
|
|
|
|
|
2021-01-20 13:36:59 +00:00
|
|
|
struct dive;
|
2021-01-11 12:22:39 +00:00
|
|
|
struct InformationBox;
|
2021-12-17 17:30:59 +00:00
|
|
|
class ChartPieItem;
|
|
|
|
class ChartTextItem;
|
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 QRectF;
|
2021-12-31 17:29:06 +00:00
|
|
|
enum class ChartSortMode : int;
|
2021-01-01 21:26:52 +00:00
|
|
|
|
|
|
|
class PieSeries : public StatsSeries {
|
|
|
|
public:
|
|
|
|
// The pie series is initialized with (name, count) pairs.
|
|
|
|
// If keepOrder is false, bins will be sorted by size, otherwise the sorting
|
|
|
|
// of the shown bins will be retained. Small bins are omitted for clarity.
|
2021-01-18 11:35:22 +00:00
|
|
|
PieSeries(StatsView &view, StatsAxis *xAxis, StatsAxis *yAxis, const QString &categoryName,
|
2021-12-31 17:29:06 +00:00
|
|
|
std::vector<std::pair<QString, std::vector<dive *>>> data, ChartSortMode sortMode);
|
2021-01-01 21:26:52 +00:00
|
|
|
~PieSeries();
|
|
|
|
|
|
|
|
void updatePositions() override;
|
|
|
|
bool hover(QPointF pos) override;
|
|
|
|
void unhighlight() override;
|
2021-02-08 16:07:37 +00:00
|
|
|
bool selectItemsUnderMouse(const QPointF &point, SelectionModifier modifier) override;
|
2021-01-01 21:26:52 +00:00
|
|
|
|
|
|
|
std::vector<QString> binNames();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Get item under mouse pointer, or -1 if none
|
|
|
|
int getItemUnderMouse(const QPointF &f) const;
|
|
|
|
|
2021-01-18 21:29:34 +00:00
|
|
|
ChartItemPtr<ChartPieItem> item;
|
2021-01-01 21:26:52 +00:00
|
|
|
QString categoryName;
|
|
|
|
std::vector<QString> makeInfo(int idx) const;
|
|
|
|
|
|
|
|
struct Item {
|
2021-01-18 21:29:34 +00:00
|
|
|
ChartItemPtr<ChartTextItem> innerLabel, outerLabel;
|
2021-01-01 21:26:52 +00:00
|
|
|
QString name;
|
2021-01-18 11:08:46 +00:00
|
|
|
double angleFrom, angleTo; // In fraction of total
|
2021-01-20 13:36:59 +00:00
|
|
|
std::vector<dive *> dives;
|
2021-01-01 21:26:52 +00:00
|
|
|
QPointF innerLabelPos, outerLabelPos; // With respect to a (-1, -1)-(1, 1) rectangle.
|
2021-02-07 19:48:43 +00:00
|
|
|
bool selected;
|
2021-01-20 13:36:59 +00:00
|
|
|
Item(StatsView &view, const QString &name, int from, std::vector<dive *> dives, int totalCount,
|
2021-02-16 16:05:39 +00:00
|
|
|
int bin_nr, int numBins, const StatsTheme &theme);
|
2021-01-18 11:08:46 +00:00
|
|
|
void updatePositions(const QPointF ¢er, double radius);
|
2021-02-16 16:05:39 +00:00
|
|
|
void highlight(ChartPieItem &item, int bin_nr, bool highlight, int numBins, const StatsTheme &theme);
|
2021-01-01 21:26:52 +00:00
|
|
|
};
|
|
|
|
std::vector<Item> items;
|
|
|
|
int totalCount;
|
|
|
|
|
|
|
|
// Entries in the "other" group. If empty, there is no "other" group.
|
|
|
|
struct OtherItem {
|
|
|
|
QString name;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
std::vector<OtherItem> other;
|
|
|
|
|
2021-01-18 21:29:34 +00:00
|
|
|
ChartItemPtr<InformationBox> information;
|
2021-01-01 21:26:52 +00:00
|
|
|
QPointF center; // center of drawing area
|
|
|
|
double radius; // radius of pie
|
2021-02-10 19:59:34 +00:00
|
|
|
int highlighted; // -1: no item highlighted
|
|
|
|
int lastClicked; // -1: no item clicked
|
2021-02-07 19:48:43 +00:00
|
|
|
void divesSelected(const QVector<dive *> &) override;
|
2021-01-01 21:26:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|