Fix:Android:Corrected and added keycodes
[navit-package] / navit / xslt / osd_minimum.xslt
1 <?xml version="1.0"?>
2 <xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xi="http://www.w3.org/2001/XInclude">
3         <xsl:template match="/config/navit/osd[1]">
4                 <xsl:variable name="OSD_SIZE_">
5                         <xsl:choose>
6                                 <xsl:when test="string-length($OSD_SIZE)"><xsl:value-of select="$OSD_SIZE"/></xsl:when>
7                                 <xsl:otherwise>1</xsl:otherwise>
8                         </xsl:choose>
9                 </xsl:variable>
10                 <osd type="compass" enabled="yes" x="{round(-60*number($OSD_SIZE_))}" y="{round(-80*number($OSD_SIZE_))}" w="{round(60*number($OSD_SIZE_))}" h="{round(80*number($OSD_SIZE_))}" font_size="{round(200*number($OSD_SIZE_))}"/>
11                 <xsl:text>&#x0A;        </xsl:text>
12                 <osd type="text" label="${{navigation.item.destination_length[named]}}\n${{navigation.item.destination_time[arrival]}}" x="{round(-60*number($OSD_SIZE_))}" y="0" w="{round(60*number($OSD_SIZE_))}" h="{round(40*number($OSD_SIZE_))}" font_size="{round(200*number($OSD_SIZE_))}"/>
13                 <xsl:text>&#x0A;        </xsl:text>
14                 <osd type="navigation_next_turn" x="0" y="{round(-60*number($OSD_SIZE_))}" w="{round(60*number($OSD_SIZE_))}" h="{round(40*number($OSD_SIZE_))}" icon_src="%s_wh_{round(44*number($OSD_SIZE_))}_{round(44*number($OSD_SIZE_))}.png"/>
15                 <xsl:text>&#x0A;        </xsl:text>
16                 <osd type="text" label="${{navigation.item[1].length[named]}}" x="0" y="{round(-20*number($OSD_SIZE_))}" w="{round(60*number($OSD_SIZE_))}" h="{round(20*number($OSD_SIZE_))}" font_size="{round(200*number($OSD_SIZE_))}"/>
17                 <xsl:text>&#x0A;        </xsl:text>
18                 <osd type="button" src="gui_zoom_in_{round(48*number($OSD_SIZE_))}_{round(48*number($OSD_SIZE_))}.png" command="zoom_in()" x="0" y="0"/>
19                 <xsl:text>&#x0A;        </xsl:text>
20                 <osd type="button" src="gui_zoom_out_{round(48*number($OSD_SIZE_))}_{round(48*number($OSD_SIZE_))}.png" command="zoom_out()" x="0" y="{round(53*number($OSD_SIZE_))}"/>
21                 <xsl:text>&#x0A;        </xsl:text>
22                 <xsl:copy><xsl:copy-of select="@*|node()"/></xsl:copy>
23         </xsl:template>
24 </xsl:transform>