aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/Annotations.formatted.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlformat/data/Annotations.formatted.qml')
-rw-r--r--tests/auto/qml/qmlformat/data/Annotations.formatted.qml71
1 files changed, 51 insertions, 20 deletions
diff --git a/tests/auto/qml/qmlformat/data/Annotations.formatted.qml b/tests/auto/qml/qmlformat/data/Annotations.formatted.qml
index ab56b5ce00..2fccb05e6e 100644
--- a/tests/auto/qml/qmlformat/data/Annotations.formatted.qml
+++ b/tests/auto/qml/qmlformat/data/Annotations.formatted.qml
@@ -39,69 +39,100 @@ import QtCharts 2.0
@Annotation2 {
}
Item {
- //![1]
+ @Annotate {
+ }
+ anchors.fill: parent
@AnnotateMore {
property int x: 5
}
@AnnotateALot {
}
-
property variant othersSlice: 0
- @Annotate {
- }
- anchors.fill: parent
- @SuperComplete {
- binding: late
- }
- Component.onCompleted: {
- // You can also manipulate slices dynamically, like append a slice or set a slice exploded
- othersSlice = pieSeries.append("Others", 52);
- pieSeries.find("Volkswagen").exploded = true;
- }
//![1]
ChartView {
id: chart
-
title: "Top-5 car brand shares in Finland"
anchors.fill: parent
legend.alignment: Qt.AlignBottom
antialiasing: true
@ExtraAnnotation {
- signal pippo()
+ signal pippo
}
PieSeries {
+ @IdAnnotation {
+ des: "pippo"
+ }
id: pieSeries
-
+ @Maximum {
+ nTied: 0
+ }
PieSlice {
label: "Volkswagen"
value: 13.5
}
-
PieSlice {
label: "Toyota"
value: 10.9
}
-
PieSlice {
label: "Ford"
value: 8.6
}
-
PieSlice {
label: "Skoda"
value: 8.2
}
-
PieSlice {
label: "Volvo"
value: 6.8
}
+ }
+ @SignalAnnotation {
+ implicit: true
+ }
+ signal pippo2 // nice signal
+ @MethodAnnotation {
+ important: true
+ }
+ function foo(x) {
+ return 42;
}
+ @BindingAnn {
+ bType: 1
+ }
+ val: 34
+ @BindingAnn {
+ bType: 2
+ }
+ val2: Item {
+ }
+ @BindingAnn {
+ bType: 3
+ }
+ val3: [
+ Item {
+ }
+ ]
+ @BindingAnn {
+ bType: 4
+ }
+ Animation on val {
+ duration: 34
+ }
}
+ @SuperComplete {
+ binding: late
+ }
+ Component.onCompleted: {
+ // You can also manipulate slices dynamically, like append a slice or set a slice exploded
+ othersSlice = pieSeries.append("Others", 52.0);
+ pieSeries.find("Volkswagen").exploded = true;
+ }
+ //![1]
}