-
Notifications
You must be signed in to change notification settings - Fork 2
/
Options.xaml
283 lines (264 loc) · 15.4 KB
/
Options.xaml
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!--
Copyright (c) 2024 Dale Ghent <[email protected]>
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/-->
<ResourceDictionary
x:Class="DaleGhent.NINA.PlaneWaveTools.Options"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ninactrl="clr-namespace:NINA.CustomControlLibrary;assembly=NINA.CustomControlLibrary"
xmlns:rules="clr-namespace:NINA.Core.Utility.ValidationRules;assembly=NINA.Core">
<DataTemplate x:Key="PlaneWave Tools_Options">
<TabControl TabStripPlacement="Top">
<TabItem Name="Global" Header="Global Settings">
<StackPanel Margin="0,10,0,0" Orientation="Vertical">
<GroupBox Header="PWI4">
<StackPanel Margin="0,0,0,5" Orientation="Vertical">
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>PWI4 host</TextBlock.Text>
<TextBlock.ToolTip>PWI4 hostname or IP</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="400"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi4IpAddress" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>PWI4 port</TextBlock.Text>
<TextBlock.ToolTip>PWI4 port</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="75"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi4Port" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock Width="110" VerticalAlignment="Center">
<TextBlock.Text>PWI4 location</TextBlock.Text>
<TextBlock.ToolTip>The location of PWI4.exe if it is somewhere other than its default location</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="500"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi4ExePath" UpdateSourceTrigger="LostFocus">
<Binding.ValidationRules>
<rules:FileExistsRule />
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
<Button
Width="30"
Height="30"
Margin="5,0,0,0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Command="{Binding OpenPwi4ExePathDialogCommand}">
<Path
Margin="4,17,4,4"
Data="{StaticResource DotsSVG}"
Fill="{StaticResource ButtonForegroundBrush}"
Stretch="Uniform" />
</Button>
</StackPanel>
</StackPanel>
</GroupBox>
<StackPanel>
<TextBlock
Margin="0,10,0,10"
TextWrapping="Wrap"
FontStyle="Italic">
<TextBlock.Text>
The PWI3 and Shutter Control applications are deprecated in favor of using PWI 4.1.0 and newer. Support for these apps will be removed in a future release when full feature partiy is achieved in PWI4.
</TextBlock.Text>
</TextBlock>
</StackPanel>
<GroupBox Header="PWI3">
<StackPanel Margin="0,0,0,5" Orientation="Vertical">
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>PWI3 host</TextBlock.Text>
<TextBlock.ToolTip>PWI3 hostname or IP</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="400"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi3IpAddress" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>PWI3 port</TextBlock.Text>
<TextBlock.ToolTip>PWI3 port</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="75"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi3Port" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>Client ID</TextBlock.Text>
<TextBlock.ToolTip>Plugin client ID</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="75"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi3ClientId" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock Width="110" VerticalAlignment="Center">
<TextBlock.Text>PWI3 location</TextBlock.Text>
<TextBlock.ToolTip>The location of PWI3.exe if it is somewhere other than its default location</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="500"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="Pwi3ExePath" UpdateSourceTrigger="LostFocus">
<Binding.ValidationRules>
<rules:FileExistsRule />
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
<Button
Width="30"
Height="30"
Margin="5,0,0,0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Command="{Binding OpenPwi3ExePathDialogCommand}">
<Path
Margin="4,17,4,4"
Data="{StaticResource DotsSVG}"
Fill="{StaticResource ButtonForegroundBrush}"
Stretch="Uniform" />
</Button>
</StackPanel>
</StackPanel>
</GroupBox>
<GroupBox Header="Shutter Control">
<StackPanel Margin="0,0,0,5" Orientation="Vertical">
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>PWSC host</TextBlock.Text>
<TextBlock.ToolTip>PlaneWave Shutter Control hostname or IP</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="400"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="PwscIpAddress" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock
Width="110"
HorizontalAlignment="Right"
VerticalAlignment="Center">
<TextBlock.Text>PWSC port</TextBlock.Text>
<TextBlock.ToolTip>PlaneWave Shutter Control service port</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="75"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="PwscPort" />
</TextBox.Text>
</TextBox>
</StackPanel>
<StackPanel Margin="0,0,0,5" Orientation="Horizontal">
<TextBlock Width="110" VerticalAlignment="Center">
<TextBlock.Text>PWSC location</TextBlock.Text>
<TextBlock.ToolTip>The location of PWShutter.exe if it is somewhere other than its default location</TextBlock.ToolTip>
</TextBlock>
<TextBox
Width="500"
Margin="5,0,0,0"
VerticalAlignment="Center"
VerticalContentAlignment="Center">
<TextBox.Text>
<Binding Path="PwscExePath" UpdateSourceTrigger="LostFocus">
<Binding.ValidationRules>
<rules:FileExistsRule />
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
<Button
Width="30"
Height="30"
Margin="5,0,0,0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Command="{Binding OpenPwscExePathDialogCommand}">
<Path
Margin="4,17,4,4"
Data="{StaticResource DotsSVG}"
Fill="{StaticResource ButtonForegroundBrush}"
Stretch="Uniform" />
</Button>
</StackPanel>
</StackPanel>
</GroupBox>
</StackPanel>
</TabItem>
</TabControl>
</DataTemplate>
</ResourceDictionary>