67 lines
2.4 KiB
Plaintext
Executable File
67 lines
2.4 KiB
Plaintext
Executable File
<Composite xmlns="http://www.eclipse.org/xwt/presentation" xmlns:x="http://www.eclipse.org/xwt" x:Class="it.smi.adex.views.SendReceiveView2" x:Name="FORMVIEW" xmlns:p1="clr-namespace:java.lang">
|
|
<Composite.layout>
|
|
<FillLayout/>
|
|
</Composite.layout>
|
|
<!-- <ScrolledComposite x:Name="scrLayoutComposite" x:Style="BORDER | H_SCROLL | V_SCROLL"> -->
|
|
<ScrolledComposite x:Name="scrLayoutComposite" x:Style="BORDER | H_SCROLL | V_SCROLL">
|
|
<Composite x:Name="layoutComposite">
|
|
<Composite.layout>
|
|
<GridLayout numColumns="2"/>
|
|
</Composite.layout>
|
|
<Label text="Articolo:" bounds="0, 0, 55, 15" x:Name="testatina">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="LEFT" horizontalSpan="2" grabExcessHorizontalSpace="true"/>
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Label text="Attributo temperatura" bounds="0, 0, 55, 15">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT"/>
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Text x:Style="BORDER" bounds="0, 0, 76, 21" x:Name="ATTRIBUT" textLimit="60">
|
|
<Text.layoutData>
|
|
<GridData horizontalAlignment="FILL" grabExcessHorizontalSpace="true"/>
|
|
</Text.layoutData>
|
|
</Text>
|
|
<Label text="Unità misura temperatura (UN/ECE Rec 20)">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT"/>
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Text x:Style="BORDER" x:Name="UMTEMPER" textLimit="20">
|
|
<Text.layoutData>
|
|
<GridData horizontalAlignment="FILL" grabExcessHorizontalSpace="true"/>
|
|
</Text.layoutData>
|
|
</Text>
|
|
<Label text="Tipo" bounds="0, 0, 55, 15">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT"/>
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Combo x:Name="TPTEMPER" x:Style="READ_ONLY">
|
|
<Combo.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="LEFT" />
|
|
</Combo.layoutData>
|
|
<Combo.items>
|
|
<p1:String>Temperatura</p1:String>
|
|
<p1:String>Temperatura minima</p1:String>
|
|
<p1:String>Temperatura massima</p1:String>
|
|
</Combo.items>
|
|
</Combo>
|
|
<Label text="Temperatura">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT"/>
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Text x:Style="BORDER" x:Name="TEMPERAT">
|
|
<Text.layoutData>
|
|
<GridData horizontalAlignment="FILL" grabExcessHorizontalSpace="true"/>
|
|
</Text.layoutData>
|
|
</Text>
|
|
|
|
</Composite>
|
|
</ScrolledComposite>
|
|
<!--</ScrolledComposite> -->
|
|
</Composite>
|
|
<!-- Forms API --> |