WARNING: USE THIS SOFTWARE AT YOUR OWN RISK! THIS IS EXPERIMENTAL SOFTWARE NOT INTENDED FOR PRODUCTION USE! Zuble is currently an early stage prototype. As such Zuble is minimally tested and inherently unstable. It is provided for experimental, development, and demonstration purposes only. Zuble QML Types   |  Zuble C++ Classes   |  Zuble Overview
Zuble  0.1
Zuble Framework C++/QML extension API
zbltestplugin.h
Go to the documentation of this file.
1 #ifndef ZBLTESTPLUGIN_H
2 #define ZBLTESTPLUGIN_H
3 
4 #include <QQuickItem>
5 
6 class ZblTestPlugin : public QQuickItem
7 {
8  Q_OBJECT
9  Q_DISABLE_COPY(ZblTestPlugin)
10 
11 public:
12  ZblTestPlugin(QQuickItem *parent = 0);
14 
15  Q_PROPERTY(QString text READ getText WRITE setText)
16 
17  QString getText();
18  void setText(const QString& text);
19 
20 protected:
21 
22  QString m_text;
23 
24 
25 
26 };
27 
28 #endif // ZBLTESTPLUGIN_H
29 
QString m_text
Definition: zbltestplugin.h:22
QString getText()
void setText(const QString &text)
ZblTestPlugin(QQuickItem *parent=0)