mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
bdecd98ef5
The old code didn't consider that labels can peak out of horizontal axes if labels are under ticks. This commit takes this into account. However, it must be noted that this is only heuristics: Before setting the size of the axes, the actual minimum and maximum label are not known, because we round to "nice" numbers. But the size of the axis can only be set after knowing the overhang, leading to a circular dependency. Therefore, the code currently simply uses the minimum and maximum value of the data, hoping that the "nice" values will not format to something significantly larger. We could do a multi-pass scheme, but let's not for now. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
116 lines
3.5 KiB
C++
116 lines
3.5 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef STATS_AXIS_H
|
|
#define STATS_AXIS_H
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <QFont>
|
|
#include <QGraphicsSimpleTextItem>
|
|
#include <QGraphicsLineItem>
|
|
|
|
class QGraphicsScene;
|
|
|
|
class StatsAxis : public QGraphicsLineItem {
|
|
public:
|
|
virtual ~StatsAxis();
|
|
// Returns minimum and maximum of shown range, not of data points.
|
|
std::pair<double, double> minMax() const;
|
|
std::pair<double, double> minMaxScreen() const; // minimum and maximum in screen coordinates
|
|
std::pair<double, double> horizontalOverhang() const; // space that labels peak out in horizontal axes
|
|
|
|
double width() const; // Only supported by vertical axes. Only valid after setSize().
|
|
double height() const; // Only supported for horizontal axes. Always valid.
|
|
void setSize(double size); // Width for horizontal and height for vertical.
|
|
void setPos(QPointF pos); // Must be called after setSize().
|
|
void setRange(double, double);
|
|
|
|
// Map x (horizontal) or y (vertical) coordinate to or from screen coordinate
|
|
double toScreen(double) const;
|
|
double toValue(double) const;
|
|
|
|
std::vector<double> ticksPositions() const; // Positions in screen coordinates
|
|
protected:
|
|
StatsAxis(const QString &title, bool horizontal, bool labelsBetweenTicks);
|
|
|
|
struct Label {
|
|
std::unique_ptr<QGraphicsSimpleTextItem> label;
|
|
double pos;
|
|
Label(const QString &name, double pos, QGraphicsScene *scene, const QFont &font);
|
|
};
|
|
std::vector<Label> labels;
|
|
void addLabel(const QString &label, double pos);
|
|
virtual void updateLabels() = 0;
|
|
virtual std::pair<QString, QString> getFirstLastLabel() const = 0;
|
|
|
|
struct Tick {
|
|
std::unique_ptr<QGraphicsLineItem> item;
|
|
double pos;
|
|
Tick(double pos, QGraphicsScene *scene);
|
|
};
|
|
std::vector<Tick> ticks;
|
|
void addTick(double pos);
|
|
|
|
int guessNumTicks(const std::vector<QString> &strings) const;
|
|
bool horizontal;
|
|
bool labelsBetweenTicks; // When labels are between ticks, they can be moved closer to the axis
|
|
|
|
QFont labelFont, titleFont;
|
|
std::unique_ptr<QGraphicsSimpleTextItem> title;
|
|
double size; // width for horizontal, height for vertical
|
|
double zeroOnScreen;
|
|
double min, max;
|
|
double labelWidth; // Maximum width of labels
|
|
private:
|
|
double titleSpace() const; // Space needed for title
|
|
};
|
|
|
|
class ValueAxis : public StatsAxis {
|
|
public:
|
|
ValueAxis(const QString &title, double min, double max, int decimals, bool horizontal);
|
|
private:
|
|
double min, max;
|
|
int decimals;
|
|
void updateLabels() override;
|
|
std::pair<QString, QString> getFirstLastLabel() const override;
|
|
};
|
|
|
|
class CountAxis : public ValueAxis {
|
|
public:
|
|
CountAxis(const QString &title, int count, bool horizontal);
|
|
private:
|
|
int count;
|
|
void updateLabels() override;
|
|
std::pair<QString, QString> getFirstLastLabel() const override;
|
|
};
|
|
|
|
class CategoryAxis : public StatsAxis {
|
|
public:
|
|
CategoryAxis(const QString &title, const std::vector<QString> &labels, bool horizontal);
|
|
private:
|
|
std::vector<QString> labelsText;
|
|
void updateLabels();
|
|
std::pair<QString, QString> getFirstLastLabel() const override;
|
|
};
|
|
|
|
struct HistogramAxisEntry {
|
|
QString name;
|
|
double value;
|
|
bool recommended;
|
|
};
|
|
|
|
class HistogramAxis : public StatsAxis {
|
|
public:
|
|
HistogramAxis(const QString &title, std::vector<HistogramAxisEntry> bin_values, bool horizontal);
|
|
private:
|
|
void updateLabels() override;
|
|
std::pair<QString, QString> getFirstLastLabel() const override;
|
|
std::vector<HistogramAxisEntry> bin_values;
|
|
int preferred_step;
|
|
};
|
|
|
|
class DateAxis : public HistogramAxis {
|
|
public:
|
|
DateAxis(const QString &title, double from, double to, bool horizontal);
|
|
};
|
|
|
|
#endif
|