blob: 00fbbd9d54816dbf322a94abb0ad9cd7b9431fd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version ="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
> <!--
||
|| S P E C I F I C M A I N P A N E L S
||
-->
<xsl:template match="function[parent::function]" mode ="main-panel">
<xsl:if test="ancestor::function/@step='function'">
<Title text="Scilab function">
<VBox>
<HBox><HTML><B>Discrete State
<Entry text="{@discrete-state}" listener="ActionListener">
<actionPerformed choose="context">
<xsl:call-template name="context"/>
</actionPerformed>
</Entry>
</HBox>
<VSpace height="25"/>
<HBox><HTML><B>Continuous State
<Entry text="{@discrete-state}" listener="ActionListener">
<actionPerformed choose="discrete-state">
<xsl:call-template name="context"/>
</actionPerformed>
</Entry>
</HBox>
<VSpace height="25"/>
<HBox>
<xsl:call-template name="BooleanCheckBox">
<xsl:with-param name="attr-name">always-active</xsl:with-param>
</xsl:call-template><HTML><B>Always active
</HBox>
</VBox>
</Title>
<VSpace height="300"/>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
|