summaryrefslogtreecommitdiffstats
path: root/tests/excl_timings.smil
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:54:13 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:54:13 +0000
commit092be7678b67552cb3161fe162242bf8d3aeed2f (patch)
treebe0693f45b101252c370e40f6e84da2cd7a52f75 /tests/excl_timings.smil
downloadkmplayer-092be7678b67552cb3161fe162242bf8d3aeed2f.tar.gz
kmplayer-092be7678b67552cb3161fe162242bf8d3aeed2f.zip
Added old abandoned KDE3 version of kmplayer
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmplayer@1091557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'tests/excl_timings.smil')
-rw-r--r--tests/excl_timings.smil84
1 files changed, 84 insertions, 0 deletions
diff --git a/tests/excl_timings.smil b/tests/excl_timings.smil
new file mode 100644
index 0000000..5e8f66e
--- /dev/null
+++ b/tests/excl_timings.smil
@@ -0,0 +1,84 @@
+<smil>
+ <head>
+ <meta name="title" content="excl group test"/>
+ <layout>
+ <root-layout width="320" height="240" background-color="yellow"/>
+ <region id="reg_but1" left="5" top="15" width="80" height="30" background-color="red"/>
+ <region id="reg_but2" left="5" top="55" width="80" height="30" background-color="red"/>
+ <region id="reg_but3" left="5" top="95" width="80" height="30" background-color="red"/>
+ <region left="5" top="135" width="80" height="40">
+ <region id="reg_text" left="5" top="0" width="70" height="18""/>
+ <region id="reg_ext" left="5" top="22" width="30" height="18""/>
+ <region id="reg_int" left="45" top="22" width="30" height="18"/>
+ </region>
+ <region id="reg_but4" left="5" top="185" width="80" height="30" background-color="red"/>
+ <region left="95" top="15" width="210" height="210" background-color="blue">
+ <region id="reg_img" left="5" top="5" width="64" height="24" background-color="orange"/>
+ </region>
+ </layout>
+ </head>
+ <body>
+ <par end="but4.activateEvent">
+ <text src="data:,Horizontal" id="but1" region="reg_but1" fill="freeze">
+ <param name="fontColor" value="yellow"/>
+ <param name="fontSize" value="+1"/>
+ <param name="backgroundColor" value="blue"/>
+ </text>
+ <set targetElement="but1" attributeName="backgroundColor" to="red" begin="but1.activateEvent" dur="0.1"/>
+ <text src="data:,Vertical" id="but2" region="reg_but2" fill="freeze">
+ <param name="fontColor" value="yellow"/>
+ <param name="fontSize" value="+1"/>
+ <param name="backgroundColor" value="blue"/>
+ </text>
+ <set targetElement="but2" attributeName="backgroundColor" to="red" begin="but2.activateEvent" dur="0.1"/>
+ <text src="data:,Diagonal" id="but3" region="reg_but3" fill="freeze">
+ <param name="fontColor" value="yellow"/>
+ <param name="fontSize" value="+1"/>
+ <param name="backgroundColor" value="blue"/>
+ </text>
+ <set targetElement="but3" attributeName="backgroundColor" to="red" begin="but3.activateEvent" dur="0.1"/>
+ <text src="data:,Repeat" id="but_rep" region="reg_text" fill="freeze">
+ <param name="backgroundColor" value="cyan"/>
+ </text>
+ <text src="data:,Ext" id="but_ext" region="reg_ext" fill="freeze">
+ <param name="backgroundColor" value="green"/>
+ <param name="fontColor" value="white"/>
+ </text>
+ <text src="data:,Int" id="but_int" region="reg_int" fill="freeze">
+ <param name="backgroundColor" value="green"/>
+ <param name="fontColor" value="white"/>
+ </text>
+ <excl>
+ <set targetElement="but_ext" attributeName="backgroundColor" to="red"
+ begin="0" dur="indefinite"/>
+ <set targetElement="but_ext" attributeName="backgroundColor" to="red"
+ begin="but_ext.activateEvent" dur="indefinite"/>
+ <set targetElement="but_int" attributeName="backgroundColor" to="red"
+ begin="but_int.activateEvent" dur="indefinite"/>
+ </excl>
+ <excl>
+ <set targetElement="vid" attributeName="src" to="img_scale_rep.smil"
+ begin="but_ext.activateEvent" dur="indefinite"/>
+ <set targetElement="vid" attributeName="src" to="img_scale.smil"
+ begin="but_int.activateEvent" dur="indefinite"/>
+ </excl>
+ <text src="data:,Stop" id="but4" region="reg_but4" fill="freeze">
+ <param name="fontColor" value="green"/>
+ <param name="fontSize" value="+1"/>
+ <param name="backgroundColor" value="red"/>
+ </text>
+ <video src="img_scale_rep.smil" id="vid" region="reg_img" fill="freeze" fit="meet" repeatCount="indefinite"/>
+ <excl dur="indefinite">
+ <animateMotion targetElement="reg_img" from="5,5" to="140,5"
+ begin="but1.activateEvent" dur="2" fill="freeze"
+ calcMode="spline" keySplines="0 .75 .25 1"/>
+ <animateMotion targetElement="reg_img" from="5,5" to="5,180"
+ begin="reg_but2.activateEvent" dur="2" fill="freeze"
+ calcMode="spline" keySplines="0.75 0 1 0.25"/>
+ <animateMotion targetElement="reg_img" from="5,5" to="140,180"
+ begin="reg_but3.activateEvent" dur="2" fill="freeze"
+ calcMode="spline" keySplines=".5 0 .5 1"/>
+ </excl>
+ </par>
+ </body>
+</smil>