Horizon – Diff between revs 1 and 7
?pathlinks?
Rev 1 | Rev 7 | |||
---|---|---|---|---|
Line 21... | Line 21... | |||
21 | |
21 | |
|
Line 22... | Line 22... | |||
22 | private bool _networkSharing = false; |
22 | private bool _networkSharing = false; |
|
Line -... | Line 23... | |||
- | 23 | |
||
- | 24 | private NotifyFilters _notifyFilters = NotifyFilters.LastWrite | NotifyFilters.Attributes; |
||
- | 25 | |
||
- | 26 | private NotifyEvent _notifyEvents = NotifyEvent.Create; |
||
- | 27 | |
||
- | 28 | private bool _enableGotify = false; |
||
23 | |
29 | |
|
24 | private NotifyFilters _notifyFilters = NotifyFilters.LastWrite | NotifyFilters.Attributes; |
30 | private string _gotifyURL = string.Empty; |
|
25 | |
31 | |
|
26 | public NotifyFilters NotifyFilters |
32 | public NotifyFilters NotifyFilters |
|
27 | { |
33 | { |
|
Line 36... | Line 42... | |||
36 | _notifyFilters = value; |
42 | _notifyFilters = value; |
|
37 | OnPropertyChanged(); |
43 | OnPropertyChanged(); |
|
38 | } |
44 | } |
|
39 | } |
45 | } |
|
Line -... | Line 46... | |||
- | 46 | |
||
- | 47 | public NotifyEvent NotifyEvents |
||
- | 48 | { |
||
- | 49 | get => _notifyEvents; |
||
- | 50 | set |
||
- | 51 | { |
||
- | 52 | if (value == _notifyEvents) |
||
- | 53 | { |
||
- | 54 | return; |
||
- | 55 | } |
||
- | 56 | |
||
- | 57 | _notifyEvents = value; |
||
- | 58 | OnPropertyChanged(); |
||
- | 59 | } |
||
- | 60 | } |
||
- | 61 | |
||
40 | |
62 | |
|
41 | public bool NetworkSharing |
63 | public bool NetworkSharing |
|
42 | { |
64 | { |
|
43 | get => _networkSharing; |
65 | get => _networkSharing; |
|
44 | set |
66 | set |
|
Line 126... | Line 148... | |||
126 | _atomicOperations = value; |
148 | _atomicOperations = value; |
|
127 | OnPropertyChanged(); |
149 | OnPropertyChanged(); |
|
128 | } |
150 | } |
|
129 | } |
151 | } |
|
Line -... | Line 152... | |||
- | 152 | |
||
- | 153 | public bool EnableGotify |
||
- | 154 | { |
||
- | 155 | get => _enableGotify; |
||
- | 156 | set |
||
- | 157 | { |
||
- | 158 | if (value == _enableGotify) |
||
- | 159 | { |
||
- | 160 | return; |
||
- | 161 | } |
||
- | 162 | |
||
- | 163 | _enableGotify = value; |
||
- | 164 | OnPropertyChanged(); |
||
- | 165 | } |
||
- | 166 | } |
||
- | 167 | |
||
- | 168 | public string GotifyURL |
||
- | 169 | { |
||
- | 170 | get => _gotifyURL; |
||
- | 171 | set |
||
- | 172 | { |
||
- | 173 | if (value == _gotifyURL) |
||
- | 174 | { |
||
- | 175 | return; |
||
- | 176 | } |
||
- | 177 | |
||
- | 178 | _gotifyURL = value; |
||
- | 179 | OnPropertyChanged(); |
||
- | 180 | } |
||
- | 181 | } |
||
130 | |
182 | |
|
Line 131... | Line 183... | |||
131 | public CaptureMode CaptureMode { get; set; } = CaptureMode.Window; |
183 | public CaptureMode CaptureMode { get; set; } = CaptureMode.Window; |
|
Line 132... | Line 184... | |||
132 | |
184 | |