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
27
qt-mobile/qmlprofile.h
Normal file
27
qt-mobile/qmlprofile.h
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue