[683] | 1 | using System;
|
---|
[861] | 2 | using System.Collections.Generic;
|
---|
[697] | 3 | using HeuristicLab.Core;
|
---|
[683] | 4 |
|
---|
[861] | 5 | namespace HeuristicLab.Visualization {
|
---|
| 6 | public partial class LineChart : ViewBase {
|
---|
[697] | 7 | private readonly IChartDataRowsModel model;
|
---|
[684] | 8 |
|
---|
[697] | 9 | /// <summary>
|
---|
| 10 | /// This constructor shouldn't be called. Only required for the designer.
|
---|
| 11 | /// </summary>
|
---|
[861] | 12 | public LineChart() {
|
---|
[684] | 13 | InitializeComponent();
|
---|
| 14 | }
|
---|
| 15 |
|
---|
[697] | 16 | /// <summary>
|
---|
| 17 | /// Initializes the chart.
|
---|
| 18 | /// </summary>
|
---|
[754] | 19 | /// <param name="model">Referenz to the model, for data</param>
|
---|
[861] | 20 | public LineChart(IChartDataRowsModel model) : this() {
|
---|
[754] | 21 | if (model == null)
|
---|
[697] | 22 | throw new NullReferenceException("Model cannot be null.");
|
---|
[684] | 23 |
|
---|
[697] | 24 | this.model = model;
|
---|
[861] | 25 | this.Item = (IItem)model;
|
---|
[684] | 26 |
|
---|
[754] | 27 | //TODO: correct Rectangle to fit
|
---|
[861] | 28 | RectangleD clientRectangle = new RectangleD(-1, -1, 11, 11);
|
---|
[754] | 29 | canvasUI1.MainCanvas.WorldShape = new WorldShape(clientRectangle, clientRectangle);
|
---|
[697] | 30 | }
|
---|
[684] | 31 |
|
---|
[861] | 32 | #region Add-/RemoveItemEvents
|
---|
| 33 |
|
---|
| 34 | protected override void AddItemEvents() {
|
---|
| 35 | base.AddItemEvents();
|
---|
| 36 |
|
---|
| 37 | model.DataRowAdded += OnDataRowAdded;
|
---|
| 38 | model.DataRowRemoved += OnDataRowRemoved;
|
---|
| 39 | model.ModelChanged += OnModelChanged;
|
---|
[683] | 40 | }
|
---|
[684] | 41 |
|
---|
[861] | 42 | protected override void RemoveItemEvents() {
|
---|
| 43 | base.RemoveItemEvents();
|
---|
| 44 |
|
---|
| 45 | model.DataRowAdded -= OnDataRowAdded;
|
---|
| 46 | model.DataRowRemoved -= OnDataRowRemoved;
|
---|
| 47 | model.ModelChanged -= OnModelChanged;
|
---|
[697] | 48 | }
|
---|
| 49 |
|
---|
[861] | 50 | private void OnDataRowAdded(IDataRow row) {
|
---|
| 51 | row.ValueChanged += OnRowValueChanged;
|
---|
| 52 | row.ValuesChanged += OnRowValuesChanged;
|
---|
| 53 |
|
---|
| 54 | InitShapes(row);
|
---|
[684] | 55 | }
|
---|
[697] | 56 |
|
---|
[861] | 57 | private void InitShapes(IDataRow row) {
|
---|
| 58 | List<LineShape> lineShapes = new List<LineShape>();
|
---|
| 59 |
|
---|
| 60 | for (int i = 1; i < row.Count; i++) {
|
---|
| 61 | LineShape lineShape = new LineShape(i - 1, row[i - 1], i, row[i], 0, row.Color);
|
---|
| 62 | lineShapes.Add(lineShape);
|
---|
| 63 | canvasUI1.MainCanvas.WorldShape.AddShape(lineShape);
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | rowToLineShapes[row] = lineShapes;
|
---|
| 67 |
|
---|
| 68 | canvasUI1.Invalidate();
|
---|
[697] | 69 | }
|
---|
| 70 |
|
---|
[861] | 71 | private void OnDataRowRemoved(IDataRow row) {
|
---|
| 72 | row.ValueChanged -= OnRowValueChanged;
|
---|
| 73 | row.ValuesChanged -= OnRowValuesChanged;
|
---|
[697] | 74 | }
|
---|
| 75 |
|
---|
[861] | 76 | private readonly IDictionary<IDataRow, List<LineShape>> rowToLineShapes = new Dictionary<IDataRow, List<LineShape>>();
|
---|
[697] | 77 |
|
---|
[861] | 78 | private void OnRowValueChanged(IDataRow row, double value, int index) {
|
---|
| 79 | List<LineShape> lineShapes = rowToLineShapes[row];
|
---|
| 80 |
|
---|
| 81 | if (index > lineShapes.Count+1)
|
---|
| 82 | throw new NotImplementedException();
|
---|
| 83 |
|
---|
| 84 | // new value was added
|
---|
| 85 | if (index > 0 && index == lineShapes.Count+1) {
|
---|
| 86 | LineShape lineShape = new LineShape(index - 1, row[index - 1], index, row[index], 0, row.Color);
|
---|
| 87 | lineShapes.Add(lineShape);
|
---|
| 88 | canvasUI1.MainCanvas.WorldShape.AddShape(lineShape);
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | // not the first value
|
---|
| 92 | if (index > 0)
|
---|
| 93 | lineShapes[index-1].Y2 = value;
|
---|
| 94 |
|
---|
| 95 | // not the last value
|
---|
| 96 | if (index > 0 && index < row.Count)
|
---|
| 97 | lineShapes[index].Y1 = value;
|
---|
| 98 |
|
---|
| 99 | canvasUI1.Invalidate();
|
---|
[697] | 100 | }
|
---|
| 101 |
|
---|
[861] | 102 | private void OnRowValuesChanged(IDataRow row, double[] values, int index) {
|
---|
| 103 | foreach (double value in values) {
|
---|
| 104 | OnRowValueChanged(row, value, index++);
|
---|
| 105 | }
|
---|
| 106 | }
|
---|
[761] | 107 |
|
---|
[861] | 108 | private void OnModelChanged() {
|
---|
[697] | 109 | }
|
---|
| 110 |
|
---|
| 111 | #endregion
|
---|
| 112 |
|
---|
| 113 | #region Begin-/EndUpdate
|
---|
| 114 |
|
---|
| 115 | private int beginUpdateCount = 0;
|
---|
| 116 |
|
---|
[861] | 117 | public void BeginUpdate() {
|
---|
[697] | 118 | beginUpdateCount++;
|
---|
| 119 | }
|
---|
| 120 |
|
---|
[861] | 121 | public void EndUpdate() {
|
---|
[754] | 122 | if (beginUpdateCount == 0)
|
---|
[697] | 123 | throw new InvalidOperationException("Too many EndUpdates.");
|
---|
| 124 |
|
---|
| 125 | beginUpdateCount--;
|
---|
| 126 |
|
---|
[754] | 127 | if (beginUpdateCount == 0)
|
---|
[697] | 128 | Invalidate();
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | #endregion
|
---|
[684] | 132 | }
|
---|
| 133 | } |
---|