mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Move settings of the Ruler to the Ruler.
As with any other graphics object, the settings for the ruler should be managed by the ruler, clearing up the Profile logic and making the code easier to read. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6aab69b298
commit
119950b6db
4 changed files with 18 additions and 7 deletions
|
@ -31,7 +31,8 @@ private:
|
|||
DiveCartesianAxis *depthAxis;
|
||||
};
|
||||
|
||||
class RulerItem2 : public QGraphicsLineItem {
|
||||
class RulerItem2 :public QObject, public QGraphicsLineItem {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit RulerItem2();
|
||||
void recalculate();
|
||||
|
@ -41,6 +42,10 @@ public:
|
|||
RulerNodeItem2 *destNode() const;
|
||||
void setAxis(DiveCartesianAxis *time, DiveCartesianAxis *depth);
|
||||
void setVisible(bool visible);
|
||||
|
||||
public slots:
|
||||
void settingsChanged();
|
||||
|
||||
private:
|
||||
struct plot_info pInfo;
|
||||
QPointF startPoint, endPoint;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue