mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: Add QMLProfile class
Add a C++ class to render the dive profile. The rendered image is then passed on to QML. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
df1a1f7034
commit
59232ca172
2 changed files with 70 additions and 0 deletions
43
qt-mobile/qmlprofile.cpp
Normal file
43
qt-mobile/qmlprofile.cpp
Normal file
|
@ -0,0 +1,43 @@
|
|||
#include "qmlprofile.h"
|
||||
#include "profilewidget2.h"
|
||||
#include "dive.h"
|
||||
|
||||
QMLProfile::QMLProfile(QQuickItem *parent) :
|
||||
QQuickPaintedItem(parent)
|
||||
{
|
||||
profile = new ProfileWidget2(0);
|
||||
profile->setProfileState();
|
||||
profile->setToolTipVisibile(false);
|
||||
}
|
||||
|
||||
void QMLProfile::paint(QPainter *painter)
|
||||
{
|
||||
if (m_diveId.toInt() < 1)
|
||||
return;
|
||||
|
||||
struct dive *d;
|
||||
d = get_dive_by_uniq_id(m_diveId.toInt());
|
||||
if (!d)
|
||||
return;
|
||||
|
||||
int old_animation_speed = prefs.animation_speed;
|
||||
prefs.animation_speed = 0; // no animations while rendering the QGraphicsView
|
||||
profile->plotDive(d);
|
||||
// we need to show the widget so it gets populated, but then
|
||||
// hide it right away so we get to draw it ourselves below
|
||||
profile->show();
|
||||
profile->hide();
|
||||
profile->resize(this->width(), this->height());
|
||||
profile->render(painter, profile->geometry());
|
||||
prefs.animation_speed = old_animation_speed;
|
||||
}
|
||||
|
||||
QString QMLProfile::diveId() const
|
||||
{
|
||||
return m_diveId;
|
||||
}
|
||||
|
||||
void QMLProfile::setDiveId(const QString &diveId)
|
||||
{
|
||||
m_diveId = diveId;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue