aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypes/data/rectf_compare.qml
blob: eb61755bcffcc6201438ae6cfc3c2ddb80ab6d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Test 1.0

MyTypeObject {
    property variant copy: rectf
    property string tostring: rectf.toString()

    // compare to string
    property bool equalsString: (rectf == tostring)

    // compare rectfs to various value types
    property bool equalsColor: (rectf == Qt.rgba(0.2, 0.88, 0.6, 0.34))   // false
    property bool equalsVector3d: (rectf == Qt.vector3d(1, 2, 3))         // false
    property bool equalsSize: (rectf == Qt.size(1912, 1913))              // false
    property bool equalsPoint: (rectf == Qt.point(10, 4))                 // false
    property bool equalsRect: (rectf == Qt.rect(103.8, 99.2, 88.1, 77.6)) // true

    property bool equalsSelf: (rectf == rectf)                            // true
    property bool equalsOther: (rectf == Qt.rect(13.8, 9.2, 78.7, 96.2))  // false
    property bool rectfEqualsRect: (rectfrect == rect)                    // true
}