diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2014-01-16 19:28:33 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-17 06:18:56 +0700 |
commit | f9784d876e70277d92d7607cd7699756e2f64d6d (patch) | |
tree | cbef5aba645c9225ce9d706bfd44359c5fe72aed /qt-ui/profile/profilewidget2.cpp | |
parent | 58aeb6ce4014899e040a3ef8f4483f18fb44b432 (diff) | |
download | subsurface-f9784d876e70277d92d7607cd7699756e2f64d6d.tar.gz |
Made the Axis be aware of Direction.
Now we can create an axis that's topToBottom, BottomToTop, LeftToRight and
RightToLeft.
This was needed for the Temperature Plot, because it should be inverted
(starting on the bottom).
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 2276c1aa8..a7e41ac18 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -46,9 +46,9 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : // Creating the needed items. // ORDER: {BACKGROUND, PROFILE_Y_AXIS, GAS_Y_AXIS, TIME_AXIS, DEPTH_CONTROLLER, TIME_CONTROLLER, COLUMNS}; - profileYAxis->setOrientation(Qt::Vertical); - gasYAxis->setOrientation(Qt::Vertical); - timeAxis->setOrientation(Qt::Horizontal); + profileYAxis->setOrientation(DiveCartesianAxis::TopToBottom); + gasYAxis->setOrientation(DiveCartesianAxis::TopToBottom); + timeAxis->setOrientation(DiveCartesianAxis::LeftToRight); // Defaults of the Axis Coordinates: profileYAxis->setMinimum(0); @@ -62,7 +62,7 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : profileYAxis->setTickSize(1); gasYAxis->setLine(0, 0, 0, 20); - temperatureAxis->setOrientation(Qt::Vertical); + temperatureAxis->setOrientation(DiveCartesianAxis::BottomToTop); temperatureAxis->setLine(0, 60, 0, 90); temperatureAxis->setX(3); temperatureAxis->setTickSize(2); |