blob: 62c60e5d45543458ff3b44e505eee20eea5c2ef7 (
plain) (
blame)
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
|
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Forms.DataVisualization.Charting;
namespace grapher
{
public class AccelCharts
{
public const int ChartSeparation = 10;
/// <summary> Needed to show full contents in form. Unsure why. </summary>
public const int FormHeightPadding = 35;
public AccelCharts(
Form form,
Chart sensitivityChart,
Chart velocityChart,
Chart gainChart,
ToolStripMenuItem enableVelocityAndGain)
{
ContaingForm = form;
SensitivityChart = sensitivityChart;
VelocityChart = velocityChart;
GainChart = gainChart;
EnableVelocityAndGain = enableVelocityAndGain;
SensitivityChart.Top = 0;
VelocityChart.Height = SensitivityChart.Height;
VelocityChart.Top = SensitivityChart.Height + ChartSeparation;
GainChart.Height = SensitivityChart.Height;
GainChart.Top = VelocityChart.Top + VelocityChart.Height + ChartSeparation;
Rectangle screenRectangle = ContaingForm.RectangleToScreen(ContaingForm.ClientRectangle);
FormBorderHeight = screenRectangle.Top - ContaingForm.Top;
EnableVelocityAndGain.Click += new System.EventHandler(OnEnableClick);
EnableVelocityAndGain.CheckedChanged += new System.EventHandler(OnEnableCheckStateChange);
HideVelocityAndGain();
}
public Form ContaingForm { get; }
public Chart SensitivityChart { get; }
public Chart VelocityChart { get; }
public Chart GainChart { get; }
public ToolStripMenuItem EnableVelocityAndGain { get; }
private int FormBorderHeight { get; }
private void OnEnableClick(object sender, EventArgs e)
{
EnableVelocityAndGain.Checked = !EnableVelocityAndGain.Checked;
}
private void OnEnableCheckStateChange(object sender, EventArgs e)
{
if (EnableVelocityAndGain.Checked)
{
ShowVelocityAndGain();
}
else
{
HideVelocityAndGain();
}
}
private void ShowVelocityAndGain()
{
VelocityChart.Show();
GainChart.Show();
ContaingForm.Height = SensitivityChart.Height +
ChartSeparation +
VelocityChart.Height +
ChartSeparation +
GainChart.Height +
FormBorderHeight;
}
private void HideVelocityAndGain()
{
VelocityChart.Hide();
GainChart.Hide();
ContaingForm.Height = SensitivityChart.Height + FormBorderHeight;
}
}
}
|