HamBook – Diff between revs 14 and 21
?pathlinks?
Rev 14 | Rev 21 | |||
---|---|---|---|---|
Line 18... | Line 18... | |||
18 | private RJCP.IO.Ports.Parity _parity = RJCP.IO.Ports.Parity.None; |
18 | private RJCP.IO.Ports.Parity _parity = RJCP.IO.Ports.Parity.None; |
|
19 | private RJCP.IO.Ports.StopBits _stopBits = RJCP.IO.Ports.StopBits.One; |
19 | private RJCP.IO.Ports.StopBits _stopBits = RJCP.IO.Ports.StopBits.One; |
|
20 | private Definitions _definitions = new Definitions(); |
20 | private Definitions _definitions = new Definitions(); |
|
21 | private RJCP.IO.Ports.Handshake _handshake = RJCP.IO.Ports.Handshake.None; |
21 | private RJCP.IO.Ports.Handshake _handshake = RJCP.IO.Ports.Handshake.None; |
|
22 | private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout(); |
22 | private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout(); |
|
23 | private int _scanDetectPause = 10; |
- | ||
24 | private Audio _audio = new Audio(); |
23 | private Audio _audio = new Audio(); |
|
25 | private Notifications _notifications = new Notifications(); |
24 | private Notifications _notifications = new Notifications(); |
|
26 | private Visualisations _visualisations = new Visualisations(); |
25 | private Visualisations _visualisations = new Visualisations(); |
|
- | 26 | private Navigation _navigation = new Navigation(); |
||
Line 27... | Line 27... | |||
27 | |
27 | |
|
28 | public bool LaunchOnBoot |
28 | public bool LaunchOnBoot |
|
29 | { |
29 | { |
|
30 | get => _launchOnBoot; |
30 | get => _launchOnBoot; |
|
Line 96... | Line 96... | |||
96 | |
96 | |
|
97 | _dataBits = value; |
97 | _dataBits = value; |
|
98 | OnPropertyChanged(); |
98 | OnPropertyChanged(); |
|
99 | } |
99 | } |
|
100 | } |
- | ||
101 | public int ScanDetectPause |
- | ||
102 | { |
- | ||
103 | get => _scanDetectPause; |
- | ||
104 | set |
- | ||
105 | { |
- | ||
106 | if (value == _scanDetectPause) |
- | ||
107 | { |
- | ||
108 | return; |
- | ||
109 | } |
- | ||
110 | |
- | ||
111 | _scanDetectPause = value; |
- | ||
112 | OnPropertyChanged(); |
- | ||
113 | } |
- | ||
Line 114... | Line 100... | |||
114 | } |
100 | } |
|
115 | |
101 | |
|
116 | public RJCP.IO.Ports.Parity Parity |
102 | public RJCP.IO.Ports.Parity Parity |
|
117 | { |
103 | { |
|
Line 230... | Line 216... | |||
230 | _visualisations = value; |
216 | _visualisations = value; |
|
231 | OnPropertyChanged(); |
217 | OnPropertyChanged(); |
|
232 | } |
218 | } |
|
233 | } |
219 | } |
|
Line -... | Line 220... | |||
- | 220 | |
||
- | 221 | public Navigation Navigation |
||
- | 222 | { |
||
- | 223 | get => _navigation; |
||
- | 224 | set |
||
- | 225 | { |
||
- | 226 | if (value == _navigation) |
||
- | 227 | { |
||
- | 228 | return; |
||
- | 229 | } |
||
- | 230 | |
||
- | 231 | _navigation = value; |
||
- | 232 | OnPropertyChanged(); |
||
- | 233 | } |
||
- | 234 | } |
||
234 | |
235 | |
|
235 | public Configuration() |
236 | public Configuration() |
|
236 | { |
237 | { |
|
Line 237... | Line 238... | |||
237 | } |
238 | } |