-
Notifications
You must be signed in to change notification settings - Fork 3
/
example.gui
executable file
·75 lines (60 loc) · 2.46 KB
/
example.gui
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!--<?xml version="1.0" encoding="UTF-8"?>-->
<root rootid="blubb" intatt="111">
<window width="1000" height="1000" title="Example1">
<vgroup>
<hgroup>
<label title="example 2">Some text</label>
<input id="input1" hint="this is input1">Default</input>
</hgroup>
<!--<image id="img1" src="/home/users/joppich/ownCloud/markus/uni/publications/yeast/progress_Peptides/images/evidence_peptides_lengths.png"/>-->
<image id="img1" src="/cygdrive/c/ownCloud/markus/uni/publications/yeast/progress_Peptides/images/evidence_peptides_lengths.png"/>
<filedialog>Input File</filedialog>
<hgroup>
<group title="Select strategy:" hint="do not mess up">
<radiobutton hint="this should be selected">rbutton1</radiobutton>
<radiobutton>rbutton2</radiobutton>
<radiobutton>rbutton3</radiobutton>
<checkbox hint="i am disturbing">check1</checkbox>
</group>
<group id="selgroup" title="Select strategy:" hint="do not mess up" checkable="true">
<radiobutton hint="this should be selected">rbutton1</radiobutton>
<checkbox hint="i am disturbing">check1</checkbox>
</group>
</hgroup>
<streambox id="output1">
<stream id="outputstream1">OS1</stream>
<stream id="outputstream2">OS2</stream>
</streambox>
<combobox>
<comboitem>Select 1</comboitem>
<comboitem>Select 2</comboitem>
<comboitem>Select 3</comboitem>
</combobox>
<action id="runprog" hint="click here to run program">run program</action>
</vgroup>
</window>
<execution>
<add sep=" " id="cl">
<const>-bla</const>
<value id="valuenode1" from="input1"/>
<const>-num</const>
<math id="intres" op="int">
<math id="floatres" op="+">
<const type="number">2</const>
<const type="number">3</const>
</math>
</math>
</add>
<execute exec="splitter" location="/home/users/joppich/cpp/splitter/bin/" param="cl">
<output id="outcout" type="cout" color="green" to="outputstream1" />
<output id="outcerr" type="cerr" color="red" to="output1" />
<!--<output id="out2" type="file" src="" to="img1"/>-->
</execute>
<if comp="is_set" value1="selgroup" value2="true">
<execute exec="splitter" location="/home/users/joppich/cpp/splitter/bin/" param="valuenode1">
<output id="out3" type="STD" to="outputstream2" />
<!--<output id="out2" type="file" src="" to="img1"/>-->
</execute>
</if>
</execution>
</root>