aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/boundaryRule.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/doc/snippets/qml/boundaryRule.qml')
-rw-r--r--src/quick/doc/snippets/qml/boundaryRule.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/quick/doc/snippets/qml/boundaryRule.qml b/src/quick/doc/snippets/qml/boundaryRule.qml
new file mode 100644
index 0000000000..2a1ad46f0a
--- /dev/null
+++ b/src/quick/doc/snippets/qml/boundaryRule.qml
@@ -0,0 +1,27 @@
+// Copyright (C) 2019 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+//![0]
+import QtQuick
+import Qt.labs.animation
+
+Rectangle {
+ id: root
+ width: 170; height: 120
+ color: "green"
+
+ DragHandler {
+ id: dragHandler
+ yAxis.minimum: -1000
+ xAxis.minimum: -1000
+ onActiveChanged: if (!active) xbr.returnToBounds();
+ }
+
+ BoundaryRule on x {
+ id: xbr
+ minimum: -50
+ maximum: 100
+ minimumOvershoot: 40
+ maximumOvershoot: 40
+ }
+}
+//![0]