-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathPlotBase.cs
565 lines (493 loc) · 17.5 KB
/
PlotBase.cs
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PlotBase.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Represents a control that displays a <see cref="PlotModel" />.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
using Avalonia.Reactive;
namespace OxyPlot.Avalonia
{
using global::Avalonia;
using global::Avalonia.Controls;
using global::Avalonia.Controls.Presenters;
using global::Avalonia.Controls.Primitives;
using global::Avalonia.Input;
using global::Avalonia.Threading;
using global::Avalonia.VisualTree;
using System;
using System.Collections.ObjectModel;
using System.Linq;
using System.Threading;
/// <summary>
/// Represents a control that displays a <see cref="PlotModel" />.
/// </summary>
public abstract partial class PlotBase : TemplatedControl, IPlotView
{
/// <summary>
/// The Grid PART constant.
/// </summary>
protected const string PartPanel = "PART_Panel";
/// <summary>
/// The tracker definitions.
/// </summary>
private readonly ObservableCollection<TrackerDefinition> trackerDefinitions;
/// <summary>
/// The render context
/// </summary>
private CanvasRenderContext renderContext;
/// <summary>
/// The canvas.
/// </summary>
private Canvas canvas;
/// <summary>
/// The current tracker.
/// </summary>
private Control currentTracker;
/// <summary>
/// The grid.
/// </summary>
private Panel panel;
/// <summary>
/// Invalidation flag (0: no update, 1: update, 2: update date).
/// </summary>
private int isUpdateRequired;
/// <summary>
/// Invalidation flag (0: no update, 1: update visual elements).
/// </summary>
private int isPlotInvalidated;
/// <summary>
/// The mouse down point.
/// </summary>
private ScreenPoint mouseDownPoint;
/// <summary>
/// The overlays.
/// </summary>
private Canvas overlays;
/// <summary>
/// The zoom control.
/// </summary>
private ContentControl zoomControl;
/// <summary>
/// The is visible to user cache.
/// </summary>
private bool isVisibleToUserCache;
/// <summary>
/// The cached parent.
/// </summary>
private Control containerCache;
/// <summary>
/// Initializes a new instance of the <see cref="PlotBase" /> class.
/// </summary>
protected PlotBase()
{
DisconnectCanvasWhileUpdating = true;
trackerDefinitions = new ObservableCollection<TrackerDefinition>();
this.GetObservable(BoundsProperty).Subscribe(new AnonymousObserver<Rect>(OnSizeChanged));
}
/// <summary>
/// Gets or sets a value indicating whether to disconnect the canvas while updating.
/// </summary>
/// <value><c>true</c> if canvas should be disconnected while updating; otherwise, <c>false</c>.</value>
public bool DisconnectCanvasWhileUpdating { get; set; }
/// <summary>
/// Gets the actual model in the view.
/// </summary>
/// <value>
/// The actual model.
/// </value>
Model IView.ActualModel
{
get
{
return ActualModel;
}
}
/// <summary>
/// Gets the actual model.
/// </summary>
/// <value>The actual model.</value>
public abstract PlotModel ActualModel { get; }
/// <summary>
/// Gets the actual controller.
/// </summary>
/// <value>
/// The actual <see cref="IController" />.
/// </value>
IController IView.ActualController
{
get
{
return ActualController;
}
}
/// <summary>
/// Gets the actual PlotView controller.
/// </summary>
/// <value>The actual PlotView controller.</value>
public abstract IPlotController ActualController { get; }
/// <summary>
/// Gets the coordinates of the client area of the view.
/// </summary>
public OxyRect ClientArea
{
get
{
return new OxyRect(0, 0, Bounds.Width, Bounds.Height);
}
}
/// <summary>
/// Gets the tracker definitions.
/// </summary>
/// <value>The tracker definitions.</value>
public ObservableCollection<TrackerDefinition> TrackerDefinitions
{
get
{
return trackerDefinitions;
}
}
/// <summary>
/// Hides the tracker.
/// </summary>
public void HideTracker()
{
if (currentTracker != null)
{
overlays.Children.Remove(currentTracker);
currentTracker = null;
}
}
/// <summary>
/// Hides the zoom rectangle.
/// </summary>
public void HideZoomRectangle()
{
zoomControl.IsVisible = false;
}
/// <summary>
/// Pans all axes.
/// </summary>
/// <param name="delta">The delta.</param>
public void PanAllAxes(Vector delta)
{
ActualModel?.PanAllAxes(delta.X, delta.Y);
InvalidatePlot(false);
}
/// <summary>
/// Zooms all axes.
/// </summary>
/// <param name="factor">The zoom factor.</param>
public void ZoomAllAxes(double factor)
{
ActualModel?.ZoomAllAxes(factor);
InvalidatePlot(false);
}
/// <summary>
/// Resets all axes.
/// </summary>
public void ResetAllAxes()
{
ActualModel?.ResetAllAxes();
InvalidatePlot(false);
}
/// <summary>
/// Invalidate the PlotView (not blocking the UI thread)
/// </summary>
/// <param name="updateData">The update Data.</param>
public void InvalidatePlot(bool updateData = true)
{
// perform update on UI thread
var updateState = updateData ? 2 : 1;
int currentState = isUpdateRequired;
while (currentState < updateState)
{
if (Interlocked.CompareExchange(ref isUpdateRequired, updateState, currentState) == currentState)
{
BeginInvoke(() => UpdateModel(updateData));
break;
}
else
{
currentState = isUpdateRequired;
}
}
}
/// <summary>
/// When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass)
/// call <see cref="M:System.Windows.Controls.Control.ApplyTemplate" /> . In simplest terms, this means the method is called
/// just before a UI element displays in an application. For more information, see Remarks.
/// </summary>
/// <param name="e">Event data for applying the template.</param>
protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
{
base.OnApplyTemplate(e);
panel = e.NameScope.Find(PartPanel) as Panel;
if (panel == null)
{
return;
}
canvas = new Canvas();
panel.Children.Add(canvas);
renderContext = new CanvasRenderContext(canvas);
overlays = new Canvas { Name = "Overlays" };
panel.Children.Add(overlays);
zoomControl = new ContentControl();
overlays.Children.Add(zoomControl);
}
/// <summary>
/// Sets the cursor type.
/// </summary>
/// <param name="cursorType">The cursor type.</param>
public void SetCursorType(CursorType cursorType)
{
switch (cursorType)
{
case CursorType.Pan:
Cursor = PanCursor;
break;
case CursorType.ZoomRectangle:
Cursor = ZoomRectangleCursor;
break;
case CursorType.ZoomHorizontal:
Cursor = ZoomHorizontalCursor;
break;
case CursorType.ZoomVertical:
Cursor = ZoomVerticalCursor;
break;
default:
Cursor = Cursor.Default;
break;
}
}
/// <summary>
/// Shows the tracker.
/// </summary>
/// <param name="trackerHitResult">The tracker data.</param>
public void ShowTracker(TrackerHitResult trackerHitResult)
{
if (trackerHitResult == null)
{
HideTracker();
return;
}
var trackerTemplate = DefaultTrackerTemplate;
if (trackerHitResult.Series != null && !string.IsNullOrEmpty(trackerHitResult.Series.TrackerKey))
{
var match = TrackerDefinitions.FirstOrDefault(t => t.TrackerKey == trackerHitResult.Series.TrackerKey);
if (match != null)
{
trackerTemplate = match.TrackerTemplate;
}
}
if (trackerTemplate == null)
{
HideTracker();
return;
}
var tracker = trackerTemplate.Build(new ContentControl());
// ReSharper disable once RedundantNameQualifier
if (!object.ReferenceEquals(tracker, currentTracker))
{
HideTracker();
overlays.Children.Add(tracker.Result);
currentTracker = tracker.Result;
}
if (currentTracker != null)
{
currentTracker.DataContext = trackerHitResult;
}
}
/// <summary>
/// Shows the zoom rectangle.
/// </summary>
/// <param name="r">The rectangle.</param>
public void ShowZoomRectangle(OxyRect r)
{
zoomControl.Width = r.Width;
zoomControl.Height = r.Height;
Canvas.SetLeft(zoomControl, r.Left);
Canvas.SetTop(zoomControl, r.Top);
zoomControl.Template = ZoomRectangleTemplate;
zoomControl.IsVisible = true;
}
/// <summary>
/// Stores text on the clipboard.
/// </summary>
/// <param name="text">The text.</param>
public async void SetClipboardText(string text)
{
if (TopLevel.GetTopLevel(this) is { Clipboard: { } clipboard })
{
await clipboard.SetTextAsync(text).ConfigureAwait(true);
}
}
/// <summary>
/// Provides the behavior for the Arrange pass of Silverlight layout. Classes can override this method to define their own Arrange pass behavior.
/// </summary>
/// <param name="finalSize">The final area within the parent that this object should use to arrange itself and its children.</param>
/// <returns>The actual size that is used after the element is arranged in layout.</returns>
protected override Size ArrangeOverride(Size finalSize)
{
var actualSize = base.ArrangeOverride(finalSize);
if (actualSize.Width > 0 && actualSize.Height > 0)
{
if (Interlocked.CompareExchange(ref isPlotInvalidated, 0, 1) == 1)
{
UpdateVisuals();
}
}
return actualSize;
}
/// <summary>
/// Updates the model.
/// </summary>
/// <param name="updateData">The update Data.</param>
protected void UpdateModel(bool updateData = true)
{
if (Width <= 0 || Height <= 0 || ActualModel == null)
{
isUpdateRequired = 0;
return;
}
lock (this.ActualModel.SyncRoot)
{
var updateState = (Interlocked.Exchange(ref isUpdateRequired, 0));
if (updateState > 0)
{
((IPlotModel)ActualModel).Update(updateState == 2 || updateData);
}
}
if (Interlocked.CompareExchange(ref isPlotInvalidated, 1, 0) == 0)
{
// Invalidate the arrange state for the element.
// After the invalidation, the element will have its layout updated,
// which will occur asynchronously unless subsequently forced by UpdateLayout.
BeginInvoke(InvalidateArrange);
}
}
/// <summary>
/// Determines whether the plot is currently visible to the user.
/// </summary>
/// <returns><c>true</c> if the plot is currently visible to the user; otherwise, <c>false</c>.</returns>
protected bool IsVisibleToUser()
{
return IsUserVisible(this);
}
/// <summary>
/// Determines whether the specified element is currently visible to the user.
/// </summary>
/// <param name="element">The element.</param>
/// <returns><c>true</c> if the specified element is currently visible to the user; otherwise, <c>false</c>.</returns>
private static bool IsUserVisible(Control element)
{
return element.IsEffectivelyVisible;
}
/// <summary>
/// Called when the size of the control is changed.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="size">The new size</param>
private void OnSizeChanged(Rect size)
{
if (size.Height > 0 && size.Width > 0)
{
InvalidatePlot(false);
}
}
/// <summary>
/// Gets the relevant parent.
/// </summary>
/// <typeparam name="T">Type of the relevant parent</typeparam>
/// <param name="obj">The object.</param>
/// <returns>The relevant parent.</returns>
private Control GetRelevantParent<T>(Visual obj)
where T : Control
{
var container = obj.GetVisualParent();
if (container is ContentPresenter contentPresenter)
{
container = GetRelevantParent<T>(contentPresenter);
}
if (container is Panel panel)
{
container = GetRelevantParent<ScrollViewer>(panel);
}
if (!(container is T) && (container != null))
{
container = GetRelevantParent<T>(container);
}
return (Control)container;
}
/// <summary>
/// Updates the visuals.
/// </summary>
private void UpdateVisuals()
{
if (canvas == null || renderContext == null)
{
return;
}
if (!IsVisibleToUser())
{
return;
}
// Clear the canvas
canvas.Children.Clear();
if (ActualModel?.Background.IsVisible() == true)
{
canvas.Background = ActualModel.Background.ToBrush();
}
else
{
canvas.Background = null;
}
if (ActualModel != null)
{
lock (this.ActualModel.SyncRoot)
{
var updateState = (Interlocked.Exchange(ref isUpdateRequired, 0));
if (updateState > 0)
{
((IPlotModel)ActualModel).Update(updateState == 2);
}
if (DisconnectCanvasWhileUpdating)
{
// TODO: profile... not sure if this makes any difference
var idx = panel.Children.IndexOf(canvas);
if (idx != -1)
{
panel.Children.RemoveAt(idx);
}
((IPlotModel)ActualModel).Render(renderContext, new OxyRect(0, 0, canvas.Bounds.Width, canvas.Bounds.Height));
// reinsert the canvas again
if (idx != -1)
{
panel.Children.Insert(idx, canvas);
}
}
else
{
((IPlotModel)ActualModel).Render(renderContext, new OxyRect(0, 0, canvas.Bounds.Width, canvas.Bounds.Height));
}
}
}
}
/// <summary>
/// Invokes the specified action on the dispatcher, if necessary.
/// </summary>
/// <param name="action">The action.</param>
private static void BeginInvoke(Action action)
{
if (Dispatcher.UIThread.CheckAccess())
{
action?.Invoke();
}
else
{
Dispatcher.UIThread.InvokeAsync(action, DispatcherPriority.Loaded);
}
}
}
}