summaryrefslogtreecommitdiffstats
path: root/subsurface.pro
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2014-01-14 17:17:17 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-16 10:12:30 +0700
commit581faa598e07f87de2f1dd23b383faad9cb18a51 (patch)
treecdfc7dec6e8f71160f7898dab423f46682db5567 /subsurface.pro
parent7d5cf325016925f4072aa31b92beaae4f9a59695 (diff)
downloadsubsurface-581faa598e07f87de2f1dd23b383faad9cb18a51.tar.gz
Added the DiveProfileItem that uses the DiveProfileModel to diplay data.
I've used the paint() method on it ( even if it's not necessary on a QGraphicsView ) to reduce absurdely the number of items that are inserted on the QGraphicsScene ( each small line of the profile should be an item if it was not for this, it's like that on the old profile. ) and thus reducing the memory consumption, speed and so on. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface.pro')
-rw-r--r--subsurface.pro6
1 files changed, 4 insertions, 2 deletions
diff --git a/subsurface.pro b/subsurface.pro
index f0238b6b1..68982b6a8 100644
--- a/subsurface.pro
+++ b/subsurface.pro
@@ -70,7 +70,8 @@ HEADERS = \
qt-ui/profile/divetextitem.h \
qt-ui/profile/animationfunctions.h \
qt-ui/profile/divecartesianaxis.h \
- qt-ui/profile/diveplotdatamodel.h
+ qt-ui/profile/diveplotdatamodel.h \
+ qt-ui/profile/diveprofileitem.h
SOURCES = \
deco.c \
@@ -128,7 +129,8 @@ SOURCES = \
qt-ui/profile/divetextitem.cpp \
qt-ui/profile/animationfunctions.cpp \
qt-ui/profile/divecartesianaxis.cpp \
- qt-ui/profile/diveplotdatamodel.cpp
+ qt-ui/profile/diveplotdatamodel.cpp \
+ qt-ui/profile/diveprofileitem.cpp
linux*: SOURCES += linux.c
mac: SOURCES += macos.c