| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | class QQuickGradient; | - |
| 5 | class QQuickRectangle; | - |
| 6 | class QQuickRectanglePrivate : public QQuickItemPrivate | - |
| 7 | { | - |
| 8 | inline QQuickRectangle* q_func() { return static_cast<QQuickRectangle *>(q_ptr); } inline const QQuickRectangle* q_func() const { return static_cast<const QQuickRectangle *>(q_ptr); } friend class QQuickRectangle; | - |
| 9 | | - |
| 10 | public: | - |
| 11 | QQuickRectanglePrivate() : | - |
| 12 | color(Qt::white), gradient(0), pen(0), radius(0) | - |
| 13 | { | - |
| 14 | }executed 94806 times by 86 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinstantiator
- tst_qqmllistmodel
- tst_qqmlproperty
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlvaluetypes
- tst_qquickaccessible
- tst_qquickage
- tst_qquickanchors
- tst_qquickangleddirection
- tst_qquickanimatedimage
- tst_qquickanimatedsprite
- tst_qquickanimationcontroller
- tst_qquickanimations
- ...
| 94806 |
| 15 | | - |
| 16 | ~QQuickRectanglePrivate() | - |
| 17 | { | - |
| 18 | } | - |
| 19 | | - |
| 20 | QColor color; | - |
| 21 | QQuickGradient *gradient; | - |
| 22 | QQuickPen *pen; | - |
| 23 | qreal radius; | - |
| 24 | static int doUpdateSlotIdx; | - |
| 25 | }; | - |
| 26 | | - |
| 27 | | - |
| | |