diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-07-17 19:09:42 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-17 12:00:29 -0700 |
commit | 59232ca17237c67254038b8d2abdf13cf6701449 (patch) | |
tree | ca8793268734fc587a2f8a58117e2610cbffeb4d /qt-mobile/qmlprofile.h | |
parent | df1a1f7034c6c332f7f71a64ab45955c089cd56b (diff) | |
download | subsurface-59232ca17237c67254038b8d2abdf13cf6701449.tar.gz |
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>
Diffstat (limited to 'qt-mobile/qmlprofile.h')
-rw-r--r-- | qt-mobile/qmlprofile.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qt-mobile/qmlprofile.h b/qt-mobile/qmlprofile.h new file mode 100644 index 000000000..b5192913a --- /dev/null +++ b/qt-mobile/qmlprofile.h @@ -0,0 +1,27 @@ +#ifndef QMLPROFILE_H +#define QMLPROFILE_H + +#include <QQuickPaintedItem> + +class ProfileWidget2; + +class QMLProfile : public QQuickPaintedItem +{ + Q_OBJECT + Q_PROPERTY(QString diveId READ diveId WRITE setDiveId NOTIFY diveIdChanged) +public: + explicit QMLProfile(QQuickItem *parent = 0); + void paint(QPainter *painter); + + QString diveId() const; + void setDiveId(const QString &diveId); + +private: + QString m_diveId; + ProfileWidget2 *profile; +signals: + void rightAlignedChanged(); + void diveIdChanged(); +}; + +#endif // QMLPROFILE_H |