85 lines
2.9 KiB
Plaintext
Executable File
85 lines
2.9 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.PathFileSettingsPrefPage"
|
|
x:Name="prefPageComp" background="COLOR_WIDGET_BACKGROUND">
|
|
<Composite.layout>
|
|
<GridLayout />
|
|
</Composite.layout>
|
|
<Group text="Percorsi salvataggio file:" background="COLOR_WIDGET_BACKGROUND">
|
|
<Group.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Group.layoutData>
|
|
<Group.layout>
|
|
<GridLayout numColumns="3" />
|
|
</Group.layout>
|
|
<Label text="Windows" background="COLOR_WIDGET_BACKGROUND">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT" />
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Text x:Style="BORDER" x:Name="windowsPath">
|
|
<Text.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Text.layoutData>
|
|
</Text>
|
|
<Button text="Sfoglia..." x:Name="winButton" />
|
|
<Label text="Linux" background="COLOR_WIDGET_BACKGROUND">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT" />
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Text x:Style="BORDER" x:Name="linuxPath">
|
|
<Text.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Text.layoutData>
|
|
</Text>
|
|
<Button text="Sfoglia..." x:Name="linuxButton" />
|
|
<Label text="OSX" background="COLOR_WIDGET_BACKGROUND">
|
|
<Label.layoutData>
|
|
<GridData horizontalAlignment="RIGHT" />
|
|
</Label.layoutData>
|
|
</Label>
|
|
<Text x:Style="BORDER" x:Name="osxPath">
|
|
<Text.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Text.layoutData>
|
|
</Text>
|
|
<Button text="Sfoglia..." x:Name="osxButton" />
|
|
</Group>
|
|
<Group text="Generazione documenti"
|
|
background="COLOR_WIDGET_BACKGROUND">
|
|
<Group.layout>
|
|
<GridLayout />
|
|
</Group.layout>
|
|
<Group.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true" />
|
|
</Group.layoutData>
|
|
<Label text="Dopo aver generato il file" background="COLOR_WIDGET_BACKGROUND"/>
|
|
<Button x:Style="RADIO" x:Name="btnOpenViewer"
|
|
text="Aprilo nel visualizzatore di sistema" bounds="0, 0, 111, 22"
|
|
selection="true" background="COLOR_WIDGET_BACKGROUND">
|
|
<Button.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Button.layoutData>
|
|
</Button>
|
|
<Button x:Style="RADIO" x:Name="btnOpenFolder"
|
|
text="Apri la cartella che lo contiene" bounds="0, 0, 111, 22" background="COLOR_WIDGET_BACKGROUND">
|
|
<Button.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Button.layoutData>
|
|
</Button>
|
|
<Button x:Style="RADIO" x:Name="btnDontOpen" text="Non fare nulla"
|
|
bounds="0, 0, 111, 22" background="COLOR_WIDGET_BACKGROUND">
|
|
<Button.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Button.layoutData>
|
|
</Button>
|
|
</Group>
|
|
</Composite>
|