mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Added the Temperature Graph.
Added the Temperature Graph with its related classes. A Temperature Axis is also created so the item is plotted on the right place. Currently the Temperature Axis is just like the depth axis - top is zero, wich means that the graph is inverted. Also, the Temperature axis is being displayed as this helps debugging. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
254beef5d4
commit
58aeb6ce40
6 changed files with 94 additions and 10 deletions
|
@ -15,6 +15,7 @@
|
|||
// */
|
||||
#include "graphicsview-common.h"
|
||||
|
||||
class TemperatureAxis;
|
||||
class DiveEventItem;
|
||||
struct DivePlotDataModel;
|
||||
struct DivePixmapItem;
|
||||
|
@ -26,6 +27,7 @@ struct TimeAxis;
|
|||
struct dive;
|
||||
struct QStateMachine;
|
||||
struct DiveCartesianPlane;
|
||||
struct DiveTemperatureItem;
|
||||
struct plot_info;
|
||||
|
||||
class ProfileWidget2 : public QGraphicsView {
|
||||
|
@ -66,11 +68,13 @@ private:
|
|||
struct plot_info *plotInfo;
|
||||
DepthAxis *profileYAxis ;
|
||||
DiveCartesianAxis *gasYAxis;
|
||||
TemperatureAxis *temperatureAxis;
|
||||
TimeAxis *timeAxis;
|
||||
DiveRectItem *depthController;
|
||||
DiveRectItem *timeController;
|
||||
DiveProfileItem *diveProfileItem;
|
||||
DiveCartesianPlane *cartesianPlane;
|
||||
DiveTemperatureItem *temperatureItem;
|
||||
QList<DiveEventItem*> eventItems;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue