File indexing completed on 2025-01-26 05:13:02

0001 /**
0002  * An item with readonly properties
0003  */
0004 class ReadOnlyProperty : public QtQuick.Item {
0005 public:
0006 /**
0007  * A readonly property
0008  */
0009 /** @remark This property is read-only */
0010 Q_PROPERTY(real gravity READ dummyGetter_gravity_ignore)
0011 /**
0012  * A read-write property
0013  */
0014 Q_PROPERTY(real speed READ dummyGetter_speed_ignore)
0015 };