#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using HeuristicLab.Common;
using HeuristicLab.MainForm;
using HeuristicLab.MainForm.WindowsForms;
using HeuristicLab.Data.MoveVectorData;
using System.Linq;
namespace HeuristicLab.Data.Views
{
[View("Stack View")]
[Content(typeof(Stack), true)]
public partial class StackView : AsynchronousContentView
{
protected int[] virtualRowIndices;
public new IStringConvertibleArray Content
{
get { return (IStringConvertibleArray)base.Content; }
set { base.Content = value; }
}
public override bool ReadOnly
{
get
{
if ((Content != null) && Content.ReadOnly) return true;
return base.ReadOnly;
}
set { base.ReadOnly = value; }
}
public StackView()
{
InitializeComponent();
}
protected override void DeregisterContentEvents()
{
Content.ElementNamesChanged -= new EventHandler(Content_ElementNamesChanged);
Content.ItemChanged -= new EventHandler>(Content_ItemChanged);
Content.Reset -= new EventHandler(Content_Reset);
base.DeregisterContentEvents();
}
protected override void RegisterContentEvents()
{
base.RegisterContentEvents();
Content.ItemChanged += new EventHandler>(Content_ItemChanged);
Content.Reset += new EventHandler(Content_Reset);
Content.ElementNamesChanged += new EventHandler(Content_ElementNamesChanged);
}
protected override void OnContentChanged()
{
base.OnContentChanged();
if (Content == null)
{
dataGridView.Rows.Clear();
dataGridView.Columns.Clear();
virtualRowIndices = new int[0];
}
else
UpdateData();
}
protected override void SetEnabledStateOfControls()
{
base.SetEnabledStateOfControls();
dataGridView.Enabled = Content != null;
dataGridView.ReadOnly = ReadOnly;
}
private void UpdateData()
{
virtualRowIndices = Enumerable.Range(0, Content.Length).Reverse().ToArray();
dataGridView.Rows.Clear();
dataGridView.Columns.Clear();
if (Content.Length > 0)
{
dataGridView.ColumnCount++;
dataGridView.Columns[0].FillWeight = float.Epsilon; // sum of all fill weights must not be larger than 65535
dataGridView.RowCount = Content.Length;
for (int i = 0; i < Content.Length; i++)
{
int rowIndex = this.virtualRowIndices[i];
dataGridView.Rows[i].Cells[0].Value = Content.GetValue(rowIndex);
}
dataGridView.Columns[0].Width = dataGridView.Columns[0].GetPreferredWidth(DataGridViewAutoSizeColumnMode.AllCells, true);
}
UpdateRowHeaders();
dataGridView.AutoResizeRowHeadersWidth(DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders);
dataGridView.Enabled = true;
}
public virtual void UpdateRowHeaders()
{
int i = 0;
int count = dataGridView.RowCount;
foreach (string elementName in Content.ElementNames)
{
dataGridView.Rows[i].HeaderCell.Value = elementName;
i++;
}
for (; i < dataGridView.RowCount; i++)
{
dataGridView.Rows[i].HeaderCell.Value = "Tier " + (count - i - 1);
}
}
private void Content_ElementNamesChanged(object sender, EventArgs e)
{
if (InvokeRequired)
Invoke(new EventHandler(Content_ElementNamesChanged), sender, e);
else
UpdateRowHeaders();
}
private void Content_ItemChanged(object sender, EventArgs e)
{
if (InvokeRequired)
Invoke(new EventHandler>(Content_ItemChanged), sender, e);
else {
// if a resize of the array occurs and some other class handles the event and provides default values
//then the itemChanged will occur before the reset event. hence the check was added
if (dataGridView.RowCount <= e.Value) return;
int rowIndex = this.virtualRowIndices[e.Value];
dataGridView.Rows[e.Value].Cells[0].Value = Content.GetValue(rowIndex);
Size size = dataGridView.Rows[e.Value].Cells[0].PreferredSize;
dataGridView.Columns[0].Width = Math.Max(dataGridView.Columns[0].Width, size.Width);
}
}
private void Content_Reset(object sender, EventArgs e)
{
if (InvokeRequired)
Invoke(new EventHandler(Content_Reset), sender, e);
else
UpdateData();
}
#region DataGridView Events
private void dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
{
string errorMessage;
if (Content != null && !Content.Validate(e.FormattedValue.ToString(), out errorMessage))
{
e.Cancel = true;
dataGridView.Rows[e.RowIndex].ErrorText = errorMessage;
}
}
private void dataGridView_CellParsing(object sender, DataGridViewCellParsingEventArgs e)
{
string value = e.Value.ToString();
int rowIndex = virtualRowIndices[e.RowIndex];
e.ParsingApplied = Content.SetValue(value, rowIndex);
if (e.ParsingApplied) e.Value = Content.GetValue(rowIndex);
}
private void dataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
dataGridView.Rows[e.RowIndex].ErrorText = string.Empty;
}
private void dataGridView_KeyDown(object sender, KeyEventArgs e)
{
if (!ReadOnly && e.Control && e.KeyCode == Keys.V)
PasteValuesToDataGridView();
else if (e.Control && e.KeyCode == Keys.C)
CopyValuesFromDataGridView();
else if (e.Control && e.KeyCode == Keys.A)
dataGridView.SelectAll();
}
private void CopyValuesFromDataGridView()
{
if (dataGridView.SelectedCells.Count == 0) return;
StringBuilder s = new StringBuilder();
int minRowIndex = dataGridView.SelectedCells[0].RowIndex;
int maxRowIndex = dataGridView.SelectedCells[dataGridView.SelectedCells.Count - 1].RowIndex;
if (minRowIndex > maxRowIndex)
{
int temp = minRowIndex;
minRowIndex = maxRowIndex;
maxRowIndex = temp;
}
for (int i = minRowIndex; i <= maxRowIndex; i++)
{
int rowIndex = this.virtualRowIndices[i];
DataGridViewColumn column = dataGridView.Columns.GetFirstColumn(DataGridViewElementStates.Visible);
DataGridViewCell cell = dataGridView[column.Index, i];
if (cell.Selected)
{
s.Append(Content.GetValue(rowIndex));
s.Append(Environment.NewLine);
}
}
Clipboard.SetText(s.ToString());
}
private void PasteValuesToDataGridView()
{
string[] values = SplitClipboardString(Clipboard.GetText());
int rowIndex = 0;
if (dataGridView.CurrentCell != null)
rowIndex = dataGridView.CurrentCell.RowIndex;
if (Content.Length < rowIndex + values.Length) Content.Length = rowIndex + values.Length;
for (int row = 0; row < values.Length; row++)
Content.SetValue(values[row], row + rowIndex);
}
private string[] SplitClipboardString(string clipboardText)
{
if (clipboardText.EndsWith(Environment.NewLine))
clipboardText = clipboardText.Remove(clipboardText.Length - Environment.NewLine.Length); //remove last newline constant
return clipboardText.Split(new string[] { Environment.NewLine, "\t" }, StringSplitOptions.None);
}
#endregion
}
}