15 Accessible.ignored: true
19 property var showAnimation
24 property var hideAnimation
26 onHideAnimationChanged: {
28 if (showAnimation && showAnimation.target != undefined)
29 showAnimation.target = root;
30 if (hideAnimation && hideAnimation.target != undefined)
31 hideAnimation.target = root;
35 hideAnimation.runningChanged.connect(function () {
36 if (!hideAnimation.running)
47 if (hideAnimation != undefined && hideAnimation.running)
54 if (showAnimation != undefined && !showAnimation.running)
55 showAnimation.restart();
63 if (showAnimation != undefined && showAnimation.running)
67 if (hideAnimation != undefined && !hideAnimation.running)
68 hideAnimation.restart();