blob: 029580a103564459d21f42ed0401a86e70f4d331 (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
using Tango.BL.Entities;
using Tango.MachineStudio.Technician.Editors;
using Tango.MachineStudio.Technician.Helpers;
using Tango.SharedUI.Helpers;
namespace Tango.MachineStudio.Technician.TechItems
{
/// <summary>
/// Represents a multi channel real-time graph item.
/// </summary>
/// <seealso cref="Tango.MachineStudio.Technician.TechItems.TechItem" />
[TechItem(5)]
public class MultiGraphItem : TechItem
{
private TechMonitor _techMonitor;
/// <summary>
/// Gets or sets the db tech monitor.
/// </summary>
[XmlIgnore]
public TechMonitor TechMonitor
{
get { return _techMonitor; }
set
{
TechMonitor old = _techMonitor;
_techMonitor = value;
RaisePropertyChangedAuto();
if (_techMonitor != old && Editor != null)
{
Editor.InnerGraph.InnerGraph.MaxPoints = GraphsHelper.GetMaxPoints(TechMonitor.PointsPerFrame);
Editor.InnerGraph.InvalidateGraph();
}
ItemGuid = value != null ? value.Guid : null;
TechName = _techMonitor != null ? _techMonitor.Description : null;
}
}
/// <summary>
/// Gets or sets the item editor.
/// </summary>
[XmlIgnore]
public MultiGraphElementEditor Editor { get; set; }
private double _min;
/// <summary>
/// Gets or sets the minimum graph value.
/// </summary>
public double Min
{
get { return _min; }
set { _min = value; RaisePropertyChangedAuto(); }
}
private double _max;
/// <summary>
/// Gets or sets the maximum graph value.
/// </summary>
public double Max
{
get { return _max; }
set { _max = value; RaisePropertyChangedAuto(); }
}
private bool _useMinMax;
/// <summary>
/// Gets or sets a value indicating whether [use minimum maximum].
/// </summary>
public bool UseMinMax
{
get { return _useMinMax; }
set { _useMinMax = value; RaisePropertyChangedAuto(); }
}
/// <summary>
/// Initializes a new instance of the <see cref="MultiGraphItem"/> class.
/// </summary>
public MultiGraphItem() : base()
{
Max = 100;
Name = "Multi Channel Graph";
Description = "Multi channel real-time graph";
Image = ResourceHelper.GetImageFromResources("Images/multi-graph.png");
}
/// <summary>
/// Initializes a new instance of the <see cref="MultiGraphItem"/> class.
/// </summary>
/// <param name="techMonitor">The db tech monitor.</param>
public MultiGraphItem(TechMonitor techMonitor) : this()
{
TechMonitor = techMonitor;
}
/// <summary>
/// Clones this instance.
/// </summary>
/// <returns></returns>
public override TechItem Clone()
{
MultiGraphItem cloned = base.Clone() as MultiGraphItem;
cloned.TechMonitor = TechMonitor;
return cloned;
}
}
}
|