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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
<Window
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="800"
d:DesignHeight="450"
x:Class="manager.MainWindow"
Title="DMVOP Manager"
Width="800"
MinWidth="500"
>
<Grid ColumnDefinitions="Auto,*">
<ScrollViewer Grid.Column="0" Width="300" Background="#2d2d2d">
<StackPanel Margin="10" Spacing="12">
<StackPanel Spacing="4">
<TextBlock
Text="Device"
FontWeight="Bold"
Foreground="White"
/>
<TextBox
x:Name="DeviceBox"
Text="auto"
Watermark="device name or auto"
/>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Output Format"
FontWeight="Bold"
Foreground="White"
/>
<TextBox
x:Name="FormatBox"
Text="%{vol},%{word}"
Watermark="e.g. %{vol},%{word}"
/>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Model"
FontWeight="Bold"
Foreground="White"
/>
<Grid ColumnDefinitions="*,Auto" ColumnSpacing="6">
<ComboBox
x:Name="ModelBox"
Grid.Column="0"
SelectedIndex="0"
>
<ComboBoxItem Content="tiny.en" />
<ComboBoxItem Content="tiny" />
<ComboBoxItem Content="base.en" />
<ComboBoxItem Content="base" />
<ComboBoxItem Content="small.en" />
<ComboBoxItem Content="small" />
<ComboBoxItem Content="medium.en" />
<ComboBoxItem Content="medium" />
<ComboBoxItem Content="large_v3_turbo" />
<ComboBoxItem Content="large_v3" />
</ComboBox>
<Button
x:Name="DownloadModelButton"
Grid.Column="1"
Content="Download"
Width="60"
/>
</Grid>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Language"
FontWeight="Bold"
Foreground="White"
/>
<TextBox
x:Name="LangBox"
Text="en"
Watermark="e.g. en, zh, ja"
/>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Output Modes"
FontWeight="Bold"
Foreground="White"
/>
<CheckBox
x:Name="StdoutCheck"
Content="stdout"
IsChecked="True"
/>
<CheckBox
x:Name="TcpCheck"
Content="tcp"
IsChecked="True"
/>
<CheckBox x:Name="UdpCheck" Content="udp" />
<CheckBox
x:Name="UdpBroadcastCheck"
Content="udp-broadcast"
/>
<CheckBox x:Name="IpcCheck" Content="ipc (Unix only)" />
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Port"
FontWeight="Bold"
Foreground="White"
/>
<TextBox
x:Name="PortBox"
Text="5117"
Watermark="port number"
/>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Instant Mode"
FontWeight="Bold"
Foreground="White"
/>
<CheckBox
x:Name="InstantCheck"
IsChecked="False"
Content="Enable"
/>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Subnet Mask"
FontWeight="Bold"
Foreground="White"
/>
<TextBox
x:Name="SubnetMaskBox"
Text="255.255.255.0"
Watermark="e.g. 255.255.255.0"
/>
</StackPanel>
<StackPanel x:Name="SocketFilePanel" Spacing="4">
<TextBlock
Text="Socket File"
FontWeight="Bold"
Foreground="White"
/>
<TextBox
x:Name="SocketFileBox"
Text="./dmvop.sock"
Watermark="path to socket file"
/>
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Models Directory"
FontWeight="Bold"
Foreground="White"
/>
<TextBox x:Name="ModelsDirBox" Watermark="./models" />
</StackPanel>
<StackPanel Spacing="4">
<TextBlock
Text="Post-processor"
FontWeight="Bold"
Foreground="White"
/>
<TextBox x:Name="PostBox" Watermark="e.g. +pinyin(tone)" />
</StackPanel>
<TextBlock
x:Name="StatusLabel"
Text="Ready"
Foreground="#aaa"
FontSize="12"
/>
<TextBlock Height="8" />
</StackPanel>
</ScrollViewer>
<Grid Grid.Column="1" Background="#1e1e1e" RowDefinitions="Auto,*">
<Border Grid.Row="0" Background="#252525" Padding="12,8">
<Grid ColumnDefinitions="Auto,Auto,*">
<Ellipse
x:Name="StatusLight"
Width="14"
Height="14"
Fill="Red"
VerticalAlignment="Center"
Margin="0,0,8,0"
/>
<TextBlock
x:Name="StatusTextRight"
Grid.Column="1"
Text="Stopped"
Foreground="#888"
FontSize="14"
VerticalAlignment="Center"
/>
<Button
x:Name="ActionButton"
Grid.Column="2"
Content="Start"
Width="90"
Height="28"
FontSize="13"
HorizontalAlignment="Right"
VerticalAlignment="Center"
/>
</Grid>
</Border>
<ScrollViewer Grid.Row="1" Background="#1a1a1a" Margin="0,1,0,0">
<TextBlock
x:Name="OutputArea"
FontFamily="Consolas, Courier New, monospace"
FontSize="12"
Foreground="#aaa"
Text=""
TextWrapping="Wrap"
Margin="8"
/>
</ScrollViewer>
</Grid>
</Grid>
</Window>
|