mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: make DiveCartesianAxis functions const
A few DiveCartesianAxis functions that were pure accessors were not const. Make them so. Moreover, mark a few overridden virtual functions as such. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
7819683990
commit
bd01e91ea3
2 changed files with 18 additions and 18 deletions
|
@ -20,7 +20,7 @@ class DiveCartesianAxis : public QObject, public QGraphicsLineItem {
|
|||
Q_PROPERTY(qreal y WRITE setY READ y)
|
||||
private:
|
||||
bool printMode;
|
||||
QPen gridPen();
|
||||
QPen gridPen() const;
|
||||
public:
|
||||
enum Orientation {
|
||||
TopToBottom,
|
||||
|
@ -41,7 +41,7 @@ public:
|
|||
double maximum() const;
|
||||
double fontLabelScale() const;
|
||||
qreal valueAt(const QPointF &p) const;
|
||||
qreal posAtValue(qreal value);
|
||||
qreal posAtValue(qreal value) const;
|
||||
void setColor(const QColor &color);
|
||||
void setTextColor(const QColor &color);
|
||||
void animateChangeLine(const QLineF &newLine);
|
||||
|
@ -60,8 +60,8 @@ signals:
|
|||
|
||||
protected:
|
||||
ProfileWidget2 *profileWidget;
|
||||
virtual QString textForValue(double value);
|
||||
virtual QColor colorForValue(double value);
|
||||
virtual QString textForValue(double value) const;
|
||||
virtual QColor colorForValue(double value) const;
|
||||
Orientation orientation;
|
||||
QList<DiveTextItem *> labels;
|
||||
QList<DiveLineItem *> lines;
|
||||
|
@ -82,8 +82,8 @@ class DepthAxis : public DiveCartesianAxis {
|
|||
public:
|
||||
DepthAxis(ProfileWidget2 *widget);
|
||||
private:
|
||||
QString textForValue(double value);
|
||||
QColor colorForValue(double value);
|
||||
QString textForValue(double value) const override;
|
||||
QColor colorForValue(double value) const override;
|
||||
private
|
||||
slots:
|
||||
void settingsChanged();
|
||||
|
@ -95,8 +95,8 @@ public:
|
|||
TimeAxis(ProfileWidget2 *widget);
|
||||
void updateTicks(color_index_t color = TIME_GRID);
|
||||
private:
|
||||
QString textForValue(double value);
|
||||
QColor colorForValue(double value);
|
||||
QString textForValue(double value) const override;
|
||||
QColor colorForValue(double value) const override;
|
||||
};
|
||||
|
||||
class TemperatureAxis : public DiveCartesianAxis {
|
||||
|
@ -104,7 +104,7 @@ class TemperatureAxis : public DiveCartesianAxis {
|
|||
public:
|
||||
TemperatureAxis(ProfileWidget2 *widget);
|
||||
private:
|
||||
QString textForValue(double value);
|
||||
QString textForValue(double value) const override;
|
||||
};
|
||||
|
||||
class PartialGasPressureAxis : public DiveCartesianAxis {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue