[2669] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2669] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
[4068] | 23 | using System.Collections.Generic;
|
---|
[2669] | 24 | using System.ComponentModel;
|
---|
[4652] | 25 | using System.Drawing;
|
---|
[3312] | 26 | using System.Linq;
|
---|
[4178] | 27 | using System.Text;
|
---|
[2669] | 28 | using System.Windows.Forms;
|
---|
| 29 | using HeuristicLab.Common;
|
---|
| 30 | using HeuristicLab.MainForm;
|
---|
[2713] | 31 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[2669] | 32 |
|
---|
| 33 | namespace HeuristicLab.Data.Views {
|
---|
[3048] | 34 | [View("StringConvertibleMatrix View")]
|
---|
| 35 | [Content(typeof(IStringConvertibleMatrix), true)]
|
---|
[3228] | 36 | public partial class StringConvertibleMatrixView : AsynchronousContentView {
|
---|
[8833] | 37 | protected int[] virtualRowIndices;
|
---|
[11114] | 38 | protected List<KeyValuePair<int, SortOrder>> sortedColumnIndices;
|
---|
[3430] | 39 | private RowComparer rowComparer;
|
---|
| 40 |
|
---|
[3048] | 41 | public new IStringConvertibleMatrix Content {
|
---|
| 42 | get { return (IStringConvertibleMatrix)base.Content; }
|
---|
[2713] | 43 | set { base.Content = value; }
|
---|
[2669] | 44 | }
|
---|
| 45 |
|
---|
[6680] | 46 | public DataGridView DataGridView {
|
---|
| 47 | get { return dataGridView; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[3430] | 50 | public override bool ReadOnly {
|
---|
| 51 | get {
|
---|
| 52 | if ((Content != null) && Content.ReadOnly) return true;
|
---|
| 53 | return base.ReadOnly;
|
---|
| 54 | }
|
---|
| 55 | set { base.ReadOnly = value; }
|
---|
| 56 | }
|
---|
[3314] | 57 |
|
---|
[4652] | 58 | private bool showRowsAndColumnsTextBox;
|
---|
| 59 | public bool ShowRowsAndColumnsTextBox {
|
---|
| 60 | get { return showRowsAndColumnsTextBox; }
|
---|
| 61 | set {
|
---|
[4709] | 62 | showRowsAndColumnsTextBox = value;
|
---|
| 63 | UpdateVisibilityOfTextBoxes();
|
---|
[4652] | 64 | }
|
---|
| 65 | }
|
---|
| 66 |
|
---|
[4709] | 67 | private bool showStatisticalInformation;
|
---|
| 68 | public bool ShowStatisticalInformation {
|
---|
| 69 | get { return showStatisticalInformation; }
|
---|
| 70 | set {
|
---|
| 71 | showStatisticalInformation = value;
|
---|
| 72 | UpdateVisibilityOfStatisticalInformation();
|
---|
| 73 | }
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[3048] | 76 | public StringConvertibleMatrixView() {
|
---|
[2669] | 77 | InitializeComponent();
|
---|
[4709] | 78 | ShowRowsAndColumnsTextBox = true;
|
---|
[4720] | 79 | ShowStatisticalInformation = true;
|
---|
[2677] | 80 | errorProvider.SetIconAlignment(rowsTextBox, ErrorIconAlignment.MiddleLeft);
|
---|
| 81 | errorProvider.SetIconPadding(rowsTextBox, 2);
|
---|
| 82 | errorProvider.SetIconAlignment(columnsTextBox, ErrorIconAlignment.MiddleLeft);
|
---|
| 83 | errorProvider.SetIconPadding(columnsTextBox, 2);
|
---|
[8139] | 84 | sortedColumnIndices = new List<KeyValuePair<int, SortOrder>>();
|
---|
[3314] | 85 | rowComparer = new RowComparer();
|
---|
[2669] | 86 | }
|
---|
| 87 |
|
---|
[2713] | 88 | protected override void DeregisterContentEvents() {
|
---|
| 89 | Content.ItemChanged -= new EventHandler<EventArgs<int, int>>(Content_ItemChanged);
|
---|
| 90 | Content.Reset -= new EventHandler(Content_Reset);
|
---|
[3320] | 91 | Content.ColumnNamesChanged -= new EventHandler(Content_ColumnNamesChanged);
|
---|
| 92 | Content.RowNamesChanged -= new EventHandler(Content_RowNamesChanged);
|
---|
[2713] | 93 | base.DeregisterContentEvents();
|
---|
[2669] | 94 | }
|
---|
[2713] | 95 | protected override void RegisterContentEvents() {
|
---|
| 96 | base.RegisterContentEvents();
|
---|
| 97 | Content.ItemChanged += new EventHandler<EventArgs<int, int>>(Content_ItemChanged);
|
---|
| 98 | Content.Reset += new EventHandler(Content_Reset);
|
---|
[3320] | 99 | Content.ColumnNamesChanged += new EventHandler(Content_ColumnNamesChanged);
|
---|
| 100 | Content.RowNamesChanged += new EventHandler(Content_RowNamesChanged);
|
---|
[2669] | 101 | }
|
---|
| 102 |
|
---|
[2713] | 103 | protected override void OnContentChanged() {
|
---|
| 104 | base.OnContentChanged();
|
---|
| 105 | if (Content == null) {
|
---|
[2677] | 106 | rowsTextBox.Text = "";
|
---|
| 107 | columnsTextBox.Text = "";
|
---|
[2669] | 108 | dataGridView.Rows.Clear();
|
---|
[2677] | 109 | dataGridView.Columns.Clear();
|
---|
[8139] | 110 | virtualRowIndices = new int[0];
|
---|
[12676] | 111 | } else if (!dataGridView.IsCurrentCellInEditMode) {
|
---|
[2713] | 112 | UpdateData();
|
---|
[12676] | 113 | }
|
---|
[3904] | 114 | }
|
---|
[3764] | 115 |
|
---|
[3904] | 116 | protected override void SetEnabledStateOfControls() {
|
---|
| 117 | base.SetEnabledStateOfControls();
|
---|
[3454] | 118 | rowsTextBox.Enabled = Content != null;
|
---|
| 119 | columnsTextBox.Enabled = Content != null;
|
---|
| 120 | dataGridView.Enabled = Content != null;
|
---|
| 121 | rowsTextBox.ReadOnly = ReadOnly;
|
---|
| 122 | columnsTextBox.ReadOnly = ReadOnly;
|
---|
| 123 | dataGridView.ReadOnly = ReadOnly;
|
---|
[3350] | 124 | }
|
---|
[2669] | 125 |
|
---|
[12077] | 126 | protected virtual void UpdateData() {
|
---|
[2713] | 127 | rowsTextBox.Text = Content.Rows.ToString();
|
---|
[2973] | 128 | rowsTextBox.Enabled = true;
|
---|
[2713] | 129 | columnsTextBox.Text = Content.Columns.ToString();
|
---|
[2973] | 130 | columnsTextBox.Enabled = true;
|
---|
[8139] | 131 | virtualRowIndices = Enumerable.Range(0, Content.Rows).ToArray();
|
---|
[4707] | 132 |
|
---|
[15074] | 133 |
|
---|
| 134 | dataGridView.RowCount = 0;
|
---|
| 135 |
|
---|
| 136 | DataGridViewColumn[] columns = new DataGridViewColumn[Content.Columns];
|
---|
| 137 | for (int i = 0; i < columns.Length; ++i) {
|
---|
| 138 | var column = new DataGridViewTextBoxColumn();
|
---|
| 139 | column.SortMode = DataGridViewColumnSortMode.Programmatic;
|
---|
| 140 | column.FillWeight = 1;
|
---|
| 141 | columns[i] = column;
|
---|
[4850] | 142 | }
|
---|
[15074] | 143 | dataGridView.Columns.Clear();
|
---|
[4850] | 144 |
|
---|
[15074] | 145 | if (Content.Columns != 0) {
|
---|
| 146 | dataGridView.Columns.AddRange(columns);
|
---|
[3335] | 147 | dataGridView.RowCount = Content.Rows;
|
---|
[15074] | 148 | }
|
---|
[4798] | 149 |
|
---|
[4523] | 150 | ClearSorting();
|
---|
[4199] | 151 | UpdateColumnHeaders();
|
---|
[3328] | 152 | UpdateRowHeaders();
|
---|
[4707] | 153 |
|
---|
[4199] | 154 | dataGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.ColumnHeader);
|
---|
| 155 | dataGridView.AutoResizeRowHeadersWidth(DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders);
|
---|
[2669] | 156 | dataGridView.Enabled = true;
|
---|
| 157 | }
|
---|
| 158 |
|
---|
[13570] | 159 | public virtual void UpdateColumnHeaders() {
|
---|
[4798] | 160 | HashSet<string> invisibleColumnNames = new HashSet<string>(dataGridView.Columns.OfType<DataGridViewColumn>()
|
---|
| 161 | .Where(c => !c.Visible && !string.IsNullOrEmpty(c.HeaderText)).Select(c => c.HeaderText));
|
---|
[4707] | 162 |
|
---|
[4178] | 163 | for (int i = 0; i < dataGridView.ColumnCount; i++) {
|
---|
[4707] | 164 | if (i < Content.ColumnNames.Count())
|
---|
[3312] | 165 | dataGridView.Columns[i].HeaderText = Content.ColumnNames.ElementAt(i);
|
---|
| 166 | else
|
---|
[3346] | 167 | dataGridView.Columns[i].HeaderText = "Column " + (i + 1);
|
---|
[4798] | 168 | dataGridView.Columns[i].Visible = !invisibleColumnNames.Contains(dataGridView.Columns[i].HeaderText);
|
---|
[3312] | 169 | }
|
---|
| 170 | }
|
---|
[13570] | 171 | public virtual void UpdateRowHeaders() {
|
---|
[4199] | 172 | int index = dataGridView.FirstDisplayedScrollingRowIndex;
|
---|
| 173 | if (index == -1) index = 0;
|
---|
| 174 | int updatedRows = 0;
|
---|
| 175 | int count = dataGridView.DisplayedRowCount(true);
|
---|
[3312] | 176 |
|
---|
[4199] | 177 | while (updatedRows < count) {
|
---|
[8139] | 178 | if (virtualRowIndices[index] < Content.RowNames.Count())
|
---|
| 179 | dataGridView.Rows[index].HeaderCell.Value = Content.RowNames.ElementAt(virtualRowIndices[index]);
|
---|
[3314] | 180 | else
|
---|
[4199] | 181 | dataGridView.Rows[index].HeaderCell.Value = "Row " + (index + 1);
|
---|
| 182 | if (dataGridView.Rows[index].Visible)
|
---|
| 183 | updatedRows++;
|
---|
| 184 | index++;
|
---|
[3312] | 185 | }
|
---|
| 186 | }
|
---|
| 187 |
|
---|
[3320] | 188 | private void Content_RowNamesChanged(object sender, EventArgs e) {
|
---|
[3328] | 189 | if (InvokeRequired)
|
---|
| 190 | Invoke(new EventHandler(Content_RowNamesChanged), sender, e);
|
---|
| 191 | else
|
---|
| 192 | UpdateRowHeaders();
|
---|
[3320] | 193 | }
|
---|
| 194 | private void Content_ColumnNamesChanged(object sender, EventArgs e) {
|
---|
[3328] | 195 | if (InvokeRequired)
|
---|
| 196 | Invoke(new EventHandler(Content_ColumnNamesChanged), sender, e);
|
---|
| 197 | else
|
---|
| 198 | UpdateColumnHeaders();
|
---|
[3320] | 199 | }
|
---|
[2713] | 200 | private void Content_ItemChanged(object sender, EventArgs<int, int> e) {
|
---|
[2669] | 201 | if (InvokeRequired)
|
---|
[2713] | 202 | Invoke(new EventHandler<EventArgs<int, int>>(Content_ItemChanged), sender, e);
|
---|
[3328] | 203 | else
|
---|
[3335] | 204 | dataGridView.InvalidateCell(e.Value2, e.Value);
|
---|
[2669] | 205 | }
|
---|
[2713] | 206 | private void Content_Reset(object sender, EventArgs e) {
|
---|
[2669] | 207 | if (InvokeRequired)
|
---|
[2713] | 208 | Invoke(new EventHandler(Content_Reset), sender, e);
|
---|
[2669] | 209 | else
|
---|
[2713] | 210 | UpdateData();
|
---|
[2669] | 211 | }
|
---|
| 212 |
|
---|
[2677] | 213 | #region TextBox Events
|
---|
| 214 | private void rowsTextBox_Validating(object sender, CancelEventArgs e) {
|
---|
[3714] | 215 | if (ReadOnly || Locked)
|
---|
| 216 | return;
|
---|
[2669] | 217 | int i = 0;
|
---|
[3335] | 218 | if (!int.TryParse(rowsTextBox.Text, out i) || (i <= 0)) {
|
---|
[2676] | 219 | e.Cancel = true;
|
---|
[3335] | 220 | errorProvider.SetError(rowsTextBox, "Invalid Number of Rows (Valid values are positive integers larger than 0)");
|
---|
[2677] | 221 | rowsTextBox.SelectAll();
|
---|
[2669] | 222 | }
|
---|
| 223 | }
|
---|
[2677] | 224 | private void rowsTextBox_Validated(object sender, EventArgs e) {
|
---|
[3430] | 225 | if (!Content.ReadOnly) Content.Rows = int.Parse(rowsTextBox.Text);
|
---|
[2677] | 226 | errorProvider.SetError(rowsTextBox, string.Empty);
|
---|
[2669] | 227 | }
|
---|
[2677] | 228 | private void rowsTextBox_KeyDown(object sender, KeyEventArgs e) {
|
---|
[18166] | 229 | if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Return) {
|
---|
[2677] | 230 | rowsLabel.Focus(); // set focus on label to validate data
|
---|
[18166] | 231 | e.SuppressKeyPress = true;
|
---|
| 232 | } else if (e.KeyCode == Keys.Escape) {
|
---|
[2973] | 233 | rowsTextBox.Text = Content.Rows.ToString();
|
---|
[2677] | 234 | rowsLabel.Focus(); // set focus on label to validate data
|
---|
[18166] | 235 | e.SuppressKeyPress = true;
|
---|
[2676] | 236 | }
|
---|
[2669] | 237 | }
|
---|
[2677] | 238 | private void columnsTextBox_Validating(object sender, CancelEventArgs e) {
|
---|
[3714] | 239 | if (ReadOnly || Locked)
|
---|
| 240 | return;
|
---|
[2677] | 241 | int i = 0;
|
---|
[3335] | 242 | if (!int.TryParse(columnsTextBox.Text, out i) || (i <= 0)) {
|
---|
[2677] | 243 | e.Cancel = true;
|
---|
[3335] | 244 | errorProvider.SetError(columnsTextBox, "Invalid Number of Columns (Valid values are positive integers larger than 0)");
|
---|
[2677] | 245 | columnsTextBox.SelectAll();
|
---|
| 246 | }
|
---|
| 247 | }
|
---|
| 248 | private void columnsTextBox_Validated(object sender, EventArgs e) {
|
---|
[3430] | 249 | if (!Content.ReadOnly) Content.Columns = int.Parse(columnsTextBox.Text);
|
---|
[2677] | 250 | errorProvider.SetError(columnsTextBox, string.Empty);
|
---|
| 251 | }
|
---|
| 252 | private void columnsTextBox_KeyDown(object sender, KeyEventArgs e) {
|
---|
[18166] | 253 | if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Return) {
|
---|
[2677] | 254 | columnsLabel.Focus(); // set focus on label to validate data
|
---|
[18166] | 255 | e.SuppressKeyPress = true;
|
---|
| 256 | } else if (e.KeyCode == Keys.Escape) {
|
---|
[2713] | 257 | columnsTextBox.Text = Content.Columns.ToString();
|
---|
[2677] | 258 | columnsLabel.Focus(); // set focus on label to validate data
|
---|
[18166] | 259 | e.SuppressKeyPress = true;
|
---|
[2677] | 260 | }
|
---|
| 261 | }
|
---|
| 262 | #endregion
|
---|
| 263 |
|
---|
| 264 | #region DataGridView Events
|
---|
[15074] | 265 |
|
---|
[11114] | 266 | protected virtual void dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) {
|
---|
[15074] | 267 | if (dataGridView.ReadOnly) return;
|
---|
| 268 | if (Content == null) return;
|
---|
| 269 | if (Content.Rows <= e.RowIndex || Content.Columns <= e.ColumnIndex) return;
|
---|
| 270 |
|
---|
| 271 | string errorMessage;
|
---|
| 272 | if (!Content.Validate(e.FormattedValue.ToString(), out errorMessage)) {
|
---|
| 273 | e.Cancel = true;
|
---|
| 274 | dataGridView.Rows[e.RowIndex].ErrorText = errorMessage;
|
---|
[2676] | 275 | }
|
---|
[2669] | 276 | }
|
---|
[15074] | 277 |
|
---|
[11114] | 278 | protected virtual void dataGridView_CellParsing(object sender, DataGridViewCellParsingEventArgs e) {
|
---|
[3328] | 279 | if (!dataGridView.ReadOnly) {
|
---|
| 280 | string value = e.Value.ToString();
|
---|
[8139] | 281 | int rowIndex = virtualRowIndices[e.RowIndex];
|
---|
[3328] | 282 | e.ParsingApplied = Content.SetValue(value, rowIndex, e.ColumnIndex);
|
---|
| 283 | if (e.ParsingApplied) e.Value = Content.GetValue(rowIndex, e.ColumnIndex);
|
---|
| 284 | }
|
---|
[2669] | 285 | }
|
---|
[2676] | 286 | private void dataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e) {
|
---|
| 287 | dataGridView.Rows[e.RowIndex].ErrorText = string.Empty;
|
---|
| 288 | }
|
---|
[12151] | 289 | protected virtual void dataGridView_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e) {
|
---|
[4011] | 290 | if (Content != null && e.RowIndex < Content.Rows && e.ColumnIndex < Content.Columns) {
|
---|
[8139] | 291 | int rowIndex = virtualRowIndices[e.RowIndex];
|
---|
[3335] | 292 | e.Value = Content.GetValue(rowIndex, e.ColumnIndex);
|
---|
[3337] | 293 | }
|
---|
[3312] | 294 | }
|
---|
[4178] | 295 |
|
---|
| 296 | private void dataGridView_Scroll(object sender, System.Windows.Forms.ScrollEventArgs e) {
|
---|
| 297 | this.UpdateRowHeaders();
|
---|
[3312] | 298 | }
|
---|
| 299 | private void dataGridView_Resize(object sender, EventArgs e) {
|
---|
[4178] | 300 | this.UpdateRowHeaders();
|
---|
[3312] | 301 | }
|
---|
[3314] | 302 |
|
---|
[12676] | 303 | protected virtual void dataGridView_KeyDown(object sender, KeyEventArgs e) {
|
---|
[17921] | 304 | if (!ReadOnly && e.Control && e.KeyCode == Keys.V) {
|
---|
[4178] | 305 | PasteValuesToDataGridView();
|
---|
[17921] | 306 | e.Handled = true;
|
---|
| 307 | } else if (e.Control && e.KeyCode == Keys.C) {
|
---|
[4178] | 308 | CopyValuesFromDataGridView();
|
---|
[17921] | 309 | e.Handled = true;
|
---|
| 310 | }
|
---|
[4178] | 311 | }
|
---|
[3643] | 312 |
|
---|
[4178] | 313 | private void CopyValuesFromDataGridView() {
|
---|
| 314 | if (dataGridView.SelectedCells.Count == 0) return;
|
---|
| 315 |
|
---|
[17840] | 316 | //if not all cells are selected use the built-in functionality for copying values to the clipboard
|
---|
| 317 | if (!dataGridView.AreAllCellsSelected(false)) {
|
---|
| 318 | dataGridView.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
|
---|
| 319 | var data = dataGridView.GetClipboardContent();
|
---|
| 320 | Clipboard.SetDataObject(data);
|
---|
| 321 | return;
|
---|
[4178] | 322 | }
|
---|
| 323 |
|
---|
[17841] | 324 | //If all cells are selected we want to include row and column headers if they are set in the content.
|
---|
[17840] | 325 | //This is not possible with the built-in functionality, because only both headers can be added.
|
---|
[17841] | 326 | //Furthermore, the current implementation of the view with the virtual DataGridView does set
|
---|
| 327 | //Row headers only when they are displayed (see UpdateRowHeaders) and otherwise leaves them empty.
|
---|
[4178] | 328 |
|
---|
[17840] | 329 | StringBuilder s = new StringBuilder();
|
---|
| 330 |
|
---|
| 331 | bool addColumnNames = Content.ColumnNames.Any();
|
---|
| 332 | bool addRowNames = Content.RowNames.Any();
|
---|
| 333 |
|
---|
| 334 | //add first row with column headers
|
---|
[4178] | 335 | if (addColumnNames) {
|
---|
[17840] | 336 | var columnNames = Content.ColumnNames.ToArray();
|
---|
| 337 | if (addRowNames) s.Append('\t'); //there is no column header for the row headers
|
---|
[4178] | 338 | DataGridViewColumn column = dataGridView.Columns.GetFirstColumn(DataGridViewElementStates.Visible);
|
---|
| 339 | while (column != null) {
|
---|
[17840] | 340 | s.Append(columnNames[column.Index]);
|
---|
[4178] | 341 | s.Append('\t');
|
---|
[17840] | 342 |
|
---|
[4178] | 343 | column = dataGridView.Columns.GetNextColumn(column, DataGridViewElementStates.Visible, DataGridViewElementStates.None);
|
---|
[3643] | 344 | }
|
---|
[4178] | 345 | s.Append(Environment.NewLine);
|
---|
| 346 | }
|
---|
[3643] | 347 |
|
---|
[17840] | 348 | var rowNames = Content.RowNames.ToArray();
|
---|
| 349 | for (int r = 0; r < dataGridView.RowCount; r++) {
|
---|
| 350 | if (!dataGridView.Rows[r].Visible) continue; //skip invisible rows
|
---|
[9505] | 351 |
|
---|
[17840] | 352 | int rowIndex = virtualRowIndices[r];
|
---|
[4178] | 353 | if (addRowNames) {
|
---|
[17840] | 354 | s.Append(rowNames[rowIndex]);
|
---|
[4178] | 355 | s.Append('\t');
|
---|
| 356 | }
|
---|
| 357 |
|
---|
| 358 | DataGridViewColumn column = dataGridView.Columns.GetFirstColumn(DataGridViewElementStates.Visible);
|
---|
| 359 | while (column != null) {
|
---|
[17840] | 360 | s.Append(Content.GetValue(rowIndex, column.Index));
|
---|
| 361 | s.Append('\t');
|
---|
[4600] | 362 |
|
---|
[4178] | 363 | column = dataGridView.Columns.GetNextColumn(column, DataGridViewElementStates.Visible, DataGridViewElementStates.None);
|
---|
[3643] | 364 | }
|
---|
[17840] | 365 |
|
---|
[4178] | 366 | s.Remove(s.Length - 1, 1); //remove last tab
|
---|
| 367 | s.Append(Environment.NewLine);
|
---|
| 368 | }
|
---|
[17840] | 369 |
|
---|
[4178] | 370 | Clipboard.SetText(s.ToString());
|
---|
| 371 | }
|
---|
[3643] | 372 |
|
---|
[11114] | 373 | protected virtual void PasteValuesToDataGridView() {
|
---|
[4178] | 374 | string[,] values = SplitClipboardString(Clipboard.GetText());
|
---|
| 375 | int rowIndex = 0;
|
---|
| 376 | int columnIndex = 0;
|
---|
| 377 | if (dataGridView.CurrentCell != null) {
|
---|
| 378 | rowIndex = dataGridView.CurrentCell.RowIndex;
|
---|
| 379 | columnIndex = dataGridView.CurrentCell.ColumnIndex;
|
---|
[3643] | 380 | }
|
---|
[7984] | 381 | if (Content.Rows < values.GetLength(1) + rowIndex) Content.Rows = values.GetLength(1) + rowIndex;
|
---|
| 382 | if (Content.Columns < values.GetLength(0) + columnIndex) Content.Columns = values.GetLength(0) + columnIndex;
|
---|
[4178] | 383 |
|
---|
| 384 | for (int row = 0; row < values.GetLength(1); row++) {
|
---|
| 385 | for (int col = 0; col < values.GetLength(0); col++) {
|
---|
| 386 | Content.SetValue(values[col, row], row + rowIndex, col + columnIndex);
|
---|
| 387 | }
|
---|
| 388 | }
|
---|
| 389 | ClearSorting();
|
---|
[3643] | 390 | }
|
---|
[12983] | 391 | protected string[,] SplitClipboardString(string clipboardText) {
|
---|
[7987] | 392 | if (clipboardText.EndsWith(Environment.NewLine))
|
---|
| 393 | clipboardText = clipboardText.Remove(clipboardText.Length - Environment.NewLine.Length); //remove last newline constant
|
---|
[3643] | 394 | string[,] values = null;
|
---|
| 395 | string[] lines = clipboardText.Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
|
---|
| 396 | string[] cells;
|
---|
| 397 | for (int i = 0; i < lines.Length; i++) {
|
---|
| 398 | cells = lines[i].Split('\t');
|
---|
| 399 | if (values == null)
|
---|
| 400 | values = new string[cells.Length, lines.Length];
|
---|
| 401 | for (int j = 0; j < cells.Length; j++)
|
---|
| 402 | values[j, i] = string.IsNullOrEmpty(cells[j]) ? string.Empty : cells[j];
|
---|
| 403 | }
|
---|
| 404 | return values;
|
---|
| 405 | }
|
---|
| 406 |
|
---|
[12676] | 407 | protected virtual void dataGridView_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e) {
|
---|
[3320] | 408 | if (Content != null) {
|
---|
| 409 | if (e.Button == MouseButtons.Left && Content.SortableView) {
|
---|
[12676] | 410 | SortColumn(e.ColumnIndex);
|
---|
[3320] | 411 | }
|
---|
[3314] | 412 | }
|
---|
| 413 | }
|
---|
| 414 |
|
---|
[4518] | 415 | protected virtual void ClearSorting() {
|
---|
[8139] | 416 | virtualRowIndices = Enumerable.Range(0, Content.Rows).ToArray();
|
---|
| 417 | sortedColumnIndices.Clear();
|
---|
[3643] | 418 | UpdateSortGlyph();
|
---|
| 419 | }
|
---|
| 420 |
|
---|
[11114] | 421 | protected void Sort() {
|
---|
[8139] | 422 | virtualRowIndices = Sort(sortedColumnIndices);
|
---|
[3444] | 423 | UpdateSortGlyph();
|
---|
[3546] | 424 | UpdateRowHeaders();
|
---|
[3444] | 425 | dataGridView.Invalidate();
|
---|
| 426 | }
|
---|
[12676] | 427 |
|
---|
| 428 | protected virtual void SortColumn(int columnIndex) {
|
---|
| 429 | bool addToSortedIndices = (Control.ModifierKeys & Keys.Control) == Keys.Control;
|
---|
| 430 | SortOrder newSortOrder = SortOrder.Ascending;
|
---|
| 431 | if (sortedColumnIndices.Any(x => x.Key == columnIndex)) {
|
---|
| 432 | SortOrder oldSortOrder = sortedColumnIndices.Where(x => x.Key == columnIndex).First().Value;
|
---|
| 433 | int enumLength = Enum.GetValues(typeof(SortOrder)).Length;
|
---|
| 434 | newSortOrder = oldSortOrder = (SortOrder)Enum.Parse(typeof(SortOrder), ((((int)oldSortOrder) + 1) % enumLength).ToString());
|
---|
| 435 | }
|
---|
| 436 |
|
---|
| 437 | if (!addToSortedIndices)
|
---|
| 438 | sortedColumnIndices.Clear();
|
---|
| 439 |
|
---|
| 440 | if (sortedColumnIndices.Any(x => x.Key == columnIndex)) {
|
---|
| 441 | int sortedIndex = sortedColumnIndices.FindIndex(x => x.Key == columnIndex);
|
---|
| 442 | if (newSortOrder != SortOrder.None)
|
---|
| 443 | sortedColumnIndices[sortedIndex] = new KeyValuePair<int, SortOrder>(columnIndex, newSortOrder);
|
---|
| 444 | else
|
---|
| 445 | sortedColumnIndices.RemoveAt(sortedIndex);
|
---|
| 446 | } else
|
---|
| 447 | if (newSortOrder != SortOrder.None)
|
---|
[15074] | 448 | sortedColumnIndices.Add(new KeyValuePair<int, SortOrder>(columnIndex, newSortOrder));
|
---|
[12676] | 449 | Sort();
|
---|
| 450 | }
|
---|
| 451 |
|
---|
[3444] | 452 | protected virtual int[] Sort(IEnumerable<KeyValuePair<int, SortOrder>> sortedColumns) {
|
---|
[3328] | 453 | int[] newSortedIndex = Enumerable.Range(0, Content.Rows).ToArray();
|
---|
[3444] | 454 | if (sortedColumns.Count() != 0) {
|
---|
[8139] | 455 | rowComparer.SortedIndices = sortedColumns;
|
---|
[3346] | 456 | rowComparer.Matrix = Content;
|
---|
[3314] | 457 | Array.Sort(newSortedIndex, rowComparer);
|
---|
| 458 | }
|
---|
[3444] | 459 | return newSortedIndex;
|
---|
[3328] | 460 | }
|
---|
| 461 | private void UpdateSortGlyph() {
|
---|
[3314] | 462 | foreach (DataGridViewColumn col in this.dataGridView.Columns)
|
---|
| 463 | col.HeaderCell.SortGlyphDirection = SortOrder.None;
|
---|
[8139] | 464 | foreach (KeyValuePair<int, SortOrder> p in sortedColumnIndices)
|
---|
[3314] | 465 | this.dataGridView.Columns[p.Key].HeaderCell.SortGlyphDirection = p.Value;
|
---|
| 466 | }
|
---|
[2677] | 467 | #endregion
|
---|
[3312] | 468 |
|
---|
[9376] | 469 | public int GetRowIndex(int originalIndex) {
|
---|
| 470 | return virtualRowIndices[originalIndex];
|
---|
| 471 | }
|
---|
| 472 |
|
---|
[3346] | 473 | public class RowComparer : IComparer<int> {
|
---|
[3314] | 474 | public RowComparer() {
|
---|
| 475 | }
|
---|
[3312] | 476 |
|
---|
[8139] | 477 | private List<KeyValuePair<int, SortOrder>> sortedIndices;
|
---|
| 478 | public IEnumerable<KeyValuePair<int, SortOrder>> SortedIndices {
|
---|
| 479 | get { return this.sortedIndices; }
|
---|
| 480 | set { sortedIndices = new List<KeyValuePair<int, SortOrder>>(value); }
|
---|
[3346] | 481 | }
|
---|
| 482 | private IStringConvertibleMatrix matrix;
|
---|
| 483 | public IStringConvertibleMatrix Matrix {
|
---|
| 484 | get { return this.matrix; }
|
---|
| 485 | set { this.matrix = value; }
|
---|
| 486 | }
|
---|
| 487 |
|
---|
[3314] | 488 | public int Compare(int x, int y) {
|
---|
| 489 | int result = 0;
|
---|
| 490 | double double1, double2;
|
---|
| 491 | DateTime dateTime1, dateTime2;
|
---|
[3444] | 492 | TimeSpan timeSpan1, timeSpan2;
|
---|
[3314] | 493 | string string1, string2;
|
---|
| 494 |
|
---|
[3346] | 495 | if (matrix == null)
|
---|
| 496 | throw new InvalidOperationException("Could not sort IStringConvertibleMatrix if the matrix member is null.");
|
---|
[8139] | 497 | if (sortedIndices == null)
|
---|
[3346] | 498 | return 0;
|
---|
| 499 |
|
---|
[8139] | 500 | foreach (KeyValuePair<int, SortOrder> pair in sortedIndices.Where(p => p.Value != SortOrder.None)) {
|
---|
[3350] | 501 | string1 = matrix.GetValue(x, pair.Key);
|
---|
| 502 | string2 = matrix.GetValue(y, pair.Key);
|
---|
| 503 | if (double.TryParse(string1, out double1) && double.TryParse(string2, out double2))
|
---|
| 504 | result = double1.CompareTo(double2);
|
---|
| 505 | else if (DateTime.TryParse(string1, out dateTime1) && DateTime.TryParse(string2, out dateTime2))
|
---|
| 506 | result = dateTime1.CompareTo(dateTime2);
|
---|
[3444] | 507 | else if (TimeSpan.TryParse(string1, out timeSpan1) && TimeSpan.TryParse(string2, out timeSpan2))
|
---|
| 508 | result = timeSpan1.CompareTo(timeSpan2);
|
---|
[3350] | 509 | else {
|
---|
| 510 | if (string1 != null)
|
---|
| 511 | result = string1.CompareTo(string2);
|
---|
| 512 | else if (string2 != null)
|
---|
| 513 | result = string2.CompareTo(string1) * -1;
|
---|
| 514 | }
|
---|
| 515 | if (pair.Value == SortOrder.Descending)
|
---|
| 516 | result *= -1;
|
---|
| 517 | if (result != 0)
|
---|
| 518 | return result;
|
---|
[3314] | 519 | }
|
---|
| 520 | return result;
|
---|
| 521 | }
|
---|
| 522 | }
|
---|
[3316] | 523 |
|
---|
[12676] | 524 | protected virtual void dataGridView_MouseClick(object sender, System.Windows.Forms.MouseEventArgs e) {
|
---|
[4213] | 525 | if (Content == null) return;
|
---|
| 526 | if (e.Button == MouseButtons.Right && Content.ColumnNames.Count() != 0)
|
---|
| 527 | contextMenu.Show(MousePosition);
|
---|
| 528 | }
|
---|
[8833] | 529 | protected virtual void ShowHideColumns_Click(object sender, EventArgs e) {
|
---|
| 530 | new StringConvertibleMatrixColumnVisibilityDialog(this.dataGridView.Columns.Cast<DataGridViewColumn>()).ShowDialog();
|
---|
[9505] | 531 | columnsTextBox.Text = dataGridView.Columns.GetColumnCount(DataGridViewElementStates.Visible).ToString();
|
---|
[3316] | 532 | }
|
---|
[4652] | 533 |
|
---|
| 534 | private void UpdateVisibilityOfTextBoxes() {
|
---|
| 535 | rowsTextBox.Visible = columnsTextBox.Visible = showRowsAndColumnsTextBox;
|
---|
| 536 | rowsLabel.Visible = columnsLabel.Visible = showRowsAndColumnsTextBox;
|
---|
[4709] | 537 | UpdateDataGridViewSizeAndLocation();
|
---|
| 538 | }
|
---|
[4652] | 539 |
|
---|
[4709] | 540 | private void UpdateVisibilityOfStatisticalInformation() {
|
---|
[4779] | 541 | statisticsTextBox.Visible = showStatisticalInformation;
|
---|
[4709] | 542 | UpdateDataGridViewSizeAndLocation();
|
---|
| 543 | }
|
---|
| 544 |
|
---|
| 545 | private void UpdateDataGridViewSizeAndLocation() {
|
---|
[4652] | 546 | int headerSize = columnsTextBox.Location.Y + columnsTextBox.Size.Height +
|
---|
[4709] | 547 | columnsTextBox.Margin.Bottom + dataGridView.Margin.Top;
|
---|
[4652] | 548 |
|
---|
| 549 | int offset = showRowsAndColumnsTextBox ? headerSize : 0;
|
---|
| 550 | dataGridView.Location = new Point(0, offset);
|
---|
[4709] | 551 |
|
---|
[4779] | 552 | int statisticsTextBoxHeight = showStatisticalInformation ? statisticsTextBox.Height + statisticsTextBox.Margin.Top + statisticsTextBox.Margin.Bottom : 0;
|
---|
| 553 | dataGridView.Size = new Size(Size.Width, Size.Height - offset - statisticsTextBoxHeight);
|
---|
[4652] | 554 | }
|
---|
[4709] | 555 |
|
---|
[11114] | 556 | protected virtual void dataGridView_SelectionChanged(object sender, EventArgs e) {
|
---|
[4779] | 557 | statisticsTextBox.Text = string.Empty;
|
---|
[4709] | 558 | if (dataGridView.SelectedCells.Count > 1) {
|
---|
| 559 | List<double> selectedValues = new List<double>();
|
---|
| 560 | foreach (DataGridViewCell cell in dataGridView.SelectedCells) {
|
---|
| 561 | double value;
|
---|
| 562 | if (!double.TryParse(cell.Value.ToString(), out value)) return;
|
---|
| 563 | selectedValues.Add(value);
|
---|
| 564 | }
|
---|
| 565 | if (selectedValues.Count > 1) {
|
---|
[12676] | 566 | statisticsTextBox.Text = CreateStatisticsText(selectedValues);
|
---|
[4709] | 567 | }
|
---|
| 568 | }
|
---|
| 569 | }
|
---|
[12676] | 570 |
|
---|
| 571 | protected virtual string CreateStatisticsText(ICollection<double> values) {
|
---|
| 572 | string stringFormat = "{0,20:0.0000}";
|
---|
| 573 | int overallCount = values.Count;
|
---|
| 574 | values = values.Where(x => !double.IsNaN(x)).ToList();
|
---|
| 575 | if (!values.Any()) {
|
---|
| 576 | return "";
|
---|
| 577 | }
|
---|
| 578 | StringBuilder statisticsText = new StringBuilder();
|
---|
| 579 | statisticsText.Append("Count: " + values.Count + " ");
|
---|
| 580 | statisticsText.Append("Sum: " + string.Format(stringFormat, values.Sum()) + " ");
|
---|
| 581 | statisticsText.Append("Min: " + string.Format(stringFormat, values.Min()) + " ");
|
---|
| 582 | statisticsText.Append("Max: " + string.Format(stringFormat, values.Max()) + " ");
|
---|
| 583 | statisticsText.Append("Average: " + string.Format(stringFormat, values.Average()) + " ");
|
---|
| 584 | statisticsText.Append("Standard Deviation: " + string.Format(stringFormat, values.StandardDeviation()) + " ");
|
---|
| 585 | if (overallCount > 0)
|
---|
| 586 | statisticsText.Append("Missing Values: " + string.Format(stringFormat, ((overallCount - values.Count) / (double)overallCount) * 100) + "% ");
|
---|
| 587 | return statisticsText.ToString();
|
---|
| 588 | }
|
---|
[2669] | 589 | }
|
---|
| 590 | }
|
---|