QML UI: obtain a reasonable margin from QML

This will be used later in the positioning of the profile.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-12-29 09:50:47 -08:00
parent 9df3835035
commit ef653b41f5
3 changed files with 13 additions and 2 deletions

View file

@ -4,7 +4,8 @@
#include <QTransform>
QMLProfile::QMLProfile(QQuickItem *parent) :
QQuickPaintedItem(parent)
QQuickPaintedItem(parent),
m_margin(0)
{
m_profileWidget = new ProfileWidget2(0);
m_profileWidget->setProfileState();
@ -23,6 +24,11 @@ void QMLProfile::paint(QPainter *painter)
m_profileWidget->render(painter);
}
void QMLProfile::setMargin(int margin)
{
m_margin = margin;
}
QString QMLProfile::diveId() const
{
return m_diveId;