blob: a95c622abdab404523582d8a59247c3c55e95d6c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<widget id="tizen.audio" displayName="Audio"
smallIcon="audio_small.png" icon.16="audio_16.png"
category="Content"
description="The audio widget shows a player control that you can use to view and handle multimedia content"
helpCategory="Tizen_Widget"
helpContents="audio"
borderVisible="false">
<property name="id" type="string" displayName="ID" default="" category="Common">
<condition name="string-id" error="string-id"/>
</property>
<property name="data-control" type="boolean" displayName="Control" default="false"/>
<property name="data-fullscreen" type="boolean" displayName="Fullscreen" default="false"/>
<property name="style" type="string" displayName="Style" default=""/>
<property name="src" type="audio" displayName="Src" default=""/>
<property name="type" type="tizen.audio@type" displayName="Type" default="audio/mp4"/>
<property name="data-theme" type="string" displayName="Theme" default=""/>
<event name="ontap" displayName="Tap" eventType="event.defaultevent" />
<event name="ontaphold" displayName="TapHold" eventType="event.defaultevent" />
<event name="onswipe" displayName="Swipe" eventType="event.defaultevent" />
<event name="onswipeleft" displayName="SwipeLeft" eventType="event.defaultevent" />
<event name="onswiperight" displayName="SwipeRight" eventType="event.defaultevent" />
<event name="oncreate" displayName="Create" eventType="event.defaultevent" />
<xsl-for-output xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="tizen.audio">
<audio>
<xsl:call-template name="print-part-id"/>
<xsl:apply-templates select="@id" mode="simple-property"/>
<xsl:apply-templates select="@data-control" mode="simple-property"/>
<xsl:apply-templates select="@data-fullscreen" mode="simple-property"/>
<xsl:apply-templates select="@style" mode="simple-property"/>
<xsl:apply-templates select="@data-theme" mode="simple-property"/>
<source>
<xsl:apply-templates select="@src" mode="simple-property"/>
<xsl:apply-templates select="@type" mode="simple-property"/>
</source>
</audio>
</xsl:template>
</xsl-for-output>
</widget>