-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserverUI.xml
94 lines (80 loc) · 2.51 KB
/
serverUI.xml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="iso-8859-1"?>
<application id="app">
<menubar id="menu">
<menu title="_File">
<item id="mn_start" shortcut="Ctrl-R">Sta_rt Server</item>
<item id="mn_stop" shortcut="Ctrl-P">Sto_p Server</item>
<item/>
<item id="mn_quitServer" shortcut="Ctrl-Q">_Quit</item>
</menu>
<menu title="Settings">
<item id="mn_settings" shortcut="Ctrl-O">_Edit Settings...</item>
</menu>
<menu title="Help">
<item id="mn_about" shortcut="Shift-F1">_About...</item>
</menu>
</menubar>
<window parent="main" id="settings" title="Settings" notify="closerequest" toolwindow="true" open="false">
<vgroup>
<pageview>
<hgroup title="Network Settings">
<vgroup>
<colgroup columns="4">
<Label>Nickname:</Label>
<TextEntry id="Nick">Server</TextEntry>
<Label>Alt. Nickname:</Label>
<TextEntry id="AltNick">[Server]</TextEntry>
<Label>Listening Port:</Label>
<TextEntry id="txtPort">2550</TextEntry>
<rectangle/>
<rectangle/>
</colgroup>
</vgroup>
</hgroup>
<hgroup title="Lightwave Settings">
<vgroup>
<colgroup columns="2">
<label>LWSN executable:</label>
<popfile id="LWSN" title="Please select the LWSN executable..." notify="file"/>
<label>Command Dir:</label>
<poppath id="CmdDir" title="Please select the Command directory..." notify="path"/>
<label>Projects Dir:</label>
<poppath id="ProjectsDir" title="Please select the Projects directory..." notify="path"/>
</colgroup>
</vgroup>
</hgroup>
</pageview>
<colgroup columns="2">
<button id="SaveSettings">Save</button>
<button id="Cancel">Cancel</button>
</colgroup>
</vgroup>
</window>
<window title="ScreamerNet3 Server" id="main" menubar="menu" width="480" height="256">
<vgroup>
<hgroup title="Server">
<button id="start">Start Server</button>
<button id="stop">Stop Server</button>
</hgroup>
<pageview>
<hgroup title="Messages">
<vgroup>
<ColGroup columns="2">
<TextView id="textviewMessages"></TextView>
<Listview id="lv_clients" width="50">
<column/>
</Listview>
<TextEntry id="txtMessage" notify="acknowledge"></TextEntry>
<Button id="send">Send</Button>
</ColGroup>
</vgroup>
</hgroup>
<hgroup title="Log">
<listview id="log">
<column/>
</listview>
</hgroup>
</pageview>
</vgroup>
</window>
</application>