From 766546fc196dca9718c68ec1a57700322b8f626b Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sat, 28 Aug 2021 19:25:52 +0200 Subject: [PATCH] profile: Add a DiveCartesianAxis::Position enum To properly layout the axes, it is necessary to specify on which side of the chart they are located. There is already an "Orientation" enum. However, that gives the direction (top-to-bottom, etc.), but not the position. It might become obsolete in the future, since the direction can also be expressed by setting min and max accordingly. Signed-off-by: Berthold Stoeger --- profile-widget/divecartesianaxis.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profile-widget/divecartesianaxis.h b/profile-widget/divecartesianaxis.h index 98f7f157c..b0410d0ef 100644 --- a/profile-widget/divecartesianaxis.h +++ b/profile-widget/divecartesianaxis.h @@ -29,6 +29,9 @@ public: LeftToRight, RightToLeft }; + enum class Position { + Left, Right, Bottom + }; DiveCartesianAxis(double dpr, bool printMode, ProfileScene &scene); ~DiveCartesianAxis(); void setMinimum(double minimum);