Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs @ 12078

Last change on this file since 12078 was 12078, checked in by abeham, 9 years ago

#2340: Implemented copy of item (collection|array|list) views

File size: 19.3 KB
RevLine 
[2655]1#region License Information
2/* HeuristicLab
[12012]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2655]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
22using System;
[5744]23using System.Collections;
[2655]24using System.Collections.Generic;
[4203]25using System.Linq;
[12078]26using System.Text;
[2655]27using System.Windows.Forms;
28using HeuristicLab.Collections;
[6472]29using HeuristicLab.Common;
[2655]30using HeuristicLab.MainForm;
[2713]31using HeuristicLab.MainForm.WindowsForms;
[3758]32using HeuristicLab.PluginInfrastructure;
[2655]33
34namespace HeuristicLab.Core.Views {
[2917]35  [View("ItemCollection View")]
[2727]36  [Content(typeof(ItemCollection<>), true)]
[3393]37  [Content(typeof(IItemCollection<>), false)]
[3483]38  public partial class ItemCollectionView<T> : ItemView where T : class, IItem {
[5237]39    protected Dictionary<T, List<ListViewItem>> itemListViewItemMapping;
[3407]40    protected TypeSelectorDialog typeSelectorDialog;
[5744]41    protected bool validDragOperation;
[3407]42
[3393]43    public new IItemCollection<T> Content {
44      get { return (IItemCollection<T>)base.Content; }
[2713]45      set { base.Content = value; }
[2655]46    }
47
[10495]48    public ObservableCollection<T> ItemCollection {
49      get { return Content as ObservableCollection<T>; }
[9613]50    }
51
[6674]52    public bool ShowDetails {
53      get { return showDetailsCheckBox.Checked; }
54      set { showDetailsCheckBox.Checked = value; }
55    }
56
[2655]57    public ListView ItemsListView {
58      get { return itemsListView; }
59    }
60
61    public ItemCollectionView() {
62      InitializeComponent();
[5237]63      itemListViewItemMapping = new Dictionary<T, List<ListViewItem>>();
[2655]64    }
65
[5237]66    protected override void Dispose(bool disposing) {
67      if (disposing) {
68        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
69        if (components != null) components.Dispose();
70      }
71      base.Dispose(disposing);
72    }
73
[2713]74    protected override void DeregisterContentEvents() {
75      Content.ItemsAdded -= new CollectionItemsChangedEventHandler<T>(Content_ItemsAdded);
76      Content.ItemsRemoved -= new CollectionItemsChangedEventHandler<T>(Content_ItemsRemoved);
77      Content.CollectionReset -= new CollectionItemsChangedEventHandler<T>(Content_CollectionReset);
[5237]78      foreach (T item in itemListViewItemMapping.Keys) {
79        DeregisterItemEvents(item);
[5068]80      }
[2713]81      base.DeregisterContentEvents();
[2655]82    }
[2713]83    protected override void RegisterContentEvents() {
84      base.RegisterContentEvents();
85      Content.ItemsAdded += new CollectionItemsChangedEventHandler<T>(Content_ItemsAdded);
86      Content.ItemsRemoved += new CollectionItemsChangedEventHandler<T>(Content_ItemsRemoved);
87      Content.CollectionReset += new CollectionItemsChangedEventHandler<T>(Content_CollectionReset);
[2655]88    }
[5237]89    protected virtual void DeregisterItemEvents(T item) {
90      item.ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
91      item.ToStringChanged -= new EventHandler(Item_ToStringChanged);
92    }
93    protected virtual void RegisterItemEvents(T item) {
94      item.ItemImageChanged += new EventHandler(Item_ItemImageChanged);
95      item.ToStringChanged += new EventHandler(Item_ToStringChanged);
96    }
[2655]97
[2713]98    protected override void OnContentChanged() {
99      base.OnContentChanged();
[5237]100      itemsListView.Items.Clear();
101      itemListViewItemMapping.Clear();
[5057]102      RebuildImageList();
[2713]103      viewHost.Content = null;
104      if (Content != null) {
105        Caption += " (" + Content.GetType().Name + ")";
106        foreach (T item in Content)
[2655]107          AddListViewItem(CreateListViewItem(item));
[4240]108        AdjustListViewColumnSizes();
[3350]109        SortItemsListView(SortOrder.Ascending);
110      }
111    }
112
[3904]113    protected override void SetEnabledStateOfControls() {
114      base.SetEnabledStateOfControls();
[3350]115      if (Content == null) {
[3362]116        addButton.Enabled = false;
117        sortAscendingButton.Enabled = false;
118        sortDescendingButton.Enabled = false;
119        removeButton.Enabled = false;
[3350]120        itemsListView.Enabled = false;
121        detailsGroupBox.Enabled = false;
122      } else {
[3435]123        addButton.Enabled = !Content.IsReadOnly && !ReadOnly;
[3362]124        sortAscendingButton.Enabled = itemsListView.Items.Count > 1;
125        sortDescendingButton.Enabled = itemsListView.Items.Count > 1;
[3435]126        removeButton.Enabled = !Content.IsReadOnly && !ReadOnly && itemsListView.SelectedItems.Count > 0;
[3350]127        itemsListView.Enabled = true;
[4099]128        detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
[2655]129      }
130    }
131
132    protected virtual T CreateItem() {
[3407]133      if (typeSelectorDialog == null) {
134        typeSelectorDialog = new TypeSelectorDialog();
135        typeSelectorDialog.Caption = "Select Item";
136        typeSelectorDialog.TypeSelector.Caption = "Available Items";
[3588]137        typeSelectorDialog.TypeSelector.Configure(typeof(T), false, true);
[2655]138      }
[3407]139
140      if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
141        try {
142          return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
[12078]143        } catch (Exception ex) {
[3758]144          ErrorHandling.ShowErrorDialog(this, ex);
[3407]145        }
146      }
147      return null;
[2655]148    }
149    protected virtual ListViewItem CreateListViewItem(T item) {
150      ListViewItem listViewItem = new ListViewItem();
[5237]151      if (item == null) {
152        listViewItem.Text = "null";
[5287]153        itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
[5237]154        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
155      } else {
156        listViewItem.Text = item.ToString();
157        listViewItem.ToolTipText = item.ItemName + ": " + item.ItemDescription;
158        itemsListView.SmallImageList.Images.Add(item.ItemImage);
159        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
160        listViewItem.Tag = item;
161      }
[2655]162      return listViewItem;
163    }
164    protected virtual void AddListViewItem(ListViewItem listViewItem) {
[5371]165      if (listViewItem == null) throw new ArgumentNullException();
[5057]166      T item = (listViewItem.Tag as T);
[2655]167      itemsListView.Items.Add(listViewItem);
[5237]168      if (item != null) {
169        if (!itemListViewItemMapping.ContainsKey(item)) {
170          RegisterItemEvents(item);
171          itemListViewItemMapping.Add(item, new List<ListViewItem>());
172        }
173        itemListViewItemMapping[item].Add(listViewItem);
[5068]174      }
[3362]175      sortAscendingButton.Enabled = itemsListView.Items.Count > 1;
176      sortDescendingButton.Enabled = itemsListView.Items.Count > 1;
[2655]177    }
178    protected virtual void RemoveListViewItem(ListViewItem listViewItem) {
[5371]179      if (listViewItem == null) throw new ArgumentNullException();
[5057]180      T item = (listViewItem.Tag as T);
[5237]181      if (item != null) {
182        itemListViewItemMapping[item].Remove(listViewItem);
183        if (itemListViewItemMapping[item].Count == 0) {
184          itemListViewItemMapping.Remove(item);
185          DeregisterItemEvents(item);
186        }
[5057]187      }
[2655]188      listViewItem.Remove();
[3362]189      sortAscendingButton.Enabled = itemsListView.Items.Count > 1;
190      sortDescendingButton.Enabled = itemsListView.Items.Count > 1;
[2655]191    }
[3327]192    protected virtual void UpdateListViewItemImage(ListViewItem listViewItem) {
[5371]193      if (listViewItem == null) throw new ArgumentNullException();
[5237]194      T item = listViewItem.Tag as T;
[3327]195      int i = listViewItem.ImageIndex;
[5839]196      itemsListView.SmallImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
[3327]197      listViewItem.ImageIndex = -1;
198      listViewItem.ImageIndex = i;
199    }
200    protected virtual void UpdateListViewItemText(ListViewItem listViewItem) {
[5371]201      if (listViewItem == null) throw new ArgumentNullException();
[5237]202      T item = listViewItem.Tag as T;
203      listViewItem.Text = item == null ? "null" : item.ToString();
204      listViewItem.ToolTipText = item == null ? string.Empty : item.ItemName + ": " + item.ItemDescription;
[2655]205    }
206    protected virtual IEnumerable<ListViewItem> GetListViewItemsForItem(T item) {
[5237]207      if (item == null) {
208        List<ListViewItem> listViewItems = new List<ListViewItem>();
209        foreach (ListViewItem listViewItem in itemsListView.Items) {
210          if (listViewItem.Tag == null) listViewItems.Add(listViewItem);
211        }
212        return listViewItems;
213      } else {
[5302]214        List<ListViewItem> listViewItems = null;
215        itemListViewItemMapping.TryGetValue(item, out listViewItems);
216        return listViewItems == null ? Enumerable.Empty<ListViewItem>() : listViewItems;
[5237]217      }
[2655]218    }
219
220    #region ListView Events
221    protected virtual void itemsListView_SelectedIndexChanged(object sender, EventArgs e) {
[3456]222      removeButton.Enabled = (Content != null) && !Content.IsReadOnly && !ReadOnly && itemsListView.SelectedItems.Count > 0;
[3829]223      AdjustListViewColumnSizes();
[4096]224      if (showDetailsCheckBox.Checked) {
225        if (itemsListView.SelectedItems.Count == 1) {
226          T item = (T)itemsListView.SelectedItems[0].Tag;
227          detailsGroupBox.Enabled = true;
228          viewHost.Content = item;
229        } else {
230          viewHost.Content = null;
231          detailsGroupBox.Enabled = false;
232        }
[2655]233      }
234    }
235    protected virtual void itemsListView_KeyDown(object sender, KeyEventArgs e) {
236      if (e.KeyCode == Keys.Delete) {
[3435]237        if ((itemsListView.SelectedItems.Count > 0) && !Content.IsReadOnly && !ReadOnly) {
[9613]238          if (ItemCollection != null) ItemCollection.RemoveRange(itemsListView.SelectedItems.Cast<ListViewItem>().Select(i => (T)i.Tag));
239          else {
240            foreach (ListViewItem item in itemsListView.SelectedItems)
241              Content.Remove((T)item.Tag);
242          }
[2655]243        }
244      }
245    }
[12078]246    protected virtual void itemsListView_KeyUp(object sender, KeyEventArgs e) {
247      if (e.KeyData == (Keys.Control | Keys.C)) {
248        if (itemsListView.SelectedItems.Count > 0) {
249          var builder = new StringBuilder();
250          foreach (ListViewItem selected in itemsListView.SelectedItems) {
251            builder.AppendLine(selected.Text);
252          }
253          Clipboard.SetText(builder.ToString());
254        }
255      }
256    }
[2655]257    protected virtual void itemsListView_DoubleClick(object sender, EventArgs e) {
258      if (itemsListView.SelectedItems.Count == 1) {
[5237]259        T item = itemsListView.SelectedItems[0].Tag as T;
260        if (item != null) {
261          IContentView view = MainFormManager.MainForm.ShowContent(item);
262          if (view != null) {
263            view.ReadOnly = ReadOnly;
264            view.Locked = Locked;
265          }
[3416]266        }
[2655]267      }
268    }
269    protected virtual void itemsListView_ItemDrag(object sender, ItemDragEventArgs e) {
[3432]270      if (!Locked) {
[5744]271        List<T> items = new List<T>();
272        foreach (ListViewItem listViewItem in itemsListView.SelectedItems) {
273          T item = listViewItem.Tag as T;
274          if (item != null) items.Add(item);
275        }
276
277        if (items.Count > 0) {
[5237]278          DataObject data = new DataObject();
[5837]279          if (items.Count == 1) data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, items[0]);
280          else data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, items);
[5237]281          if (Content.IsReadOnly || ReadOnly) {
282            DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
283          } else {
284            DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link | DragDropEffects.Move);
[5744]285            if ((result & DragDropEffects.Move) == DragDropEffects.Move) {
286              foreach (T item in items) Content.Remove(item);
287            }
[5237]288          }
[3432]289        }
[2655]290      }
291    }
[5744]292    protected virtual void itemsListView_DragEnter(object sender, DragEventArgs e) {
293      validDragOperation = false;
[5837]294      if (!Content.IsReadOnly && !ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is T)) {
[5744]295        validDragOperation = true;
[5837]296      } else if (!Content.IsReadOnly && !ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IEnumerable)) {
[5744]297        validDragOperation = true;
[5837]298        IEnumerable items = (IEnumerable)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
[5744]299        foreach (object item in items)
300          validDragOperation = validDragOperation && (item is T);
301      }
302    }
303    protected virtual void itemsListView_DragOver(object sender, DragEventArgs e) {
[2655]304      e.Effect = DragDropEffects.None;
[5744]305      if (validDragOperation) {
[3694]306        if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link;  // ALT key
[2694]307        else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move;  // SHIFT key
[5744]308        else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
309        else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
310        else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
[2655]311      }
312    }
313    protected virtual void itemsListView_DragDrop(object sender, DragEventArgs e) {
314      if (e.Effect != DragDropEffects.None) {
[5837]315        if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is T) {
316          T item = (T)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
[5744]317          Content.Add(e.Effect.HasFlag(DragDropEffects.Copy) ? (T)item.Clone() : item);
[5837]318        } else if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IEnumerable) {
319          IEnumerable<T> items = ((IEnumerable)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat)).Cast<T>();
[6472]320          if (e.Effect.HasFlag(DragDropEffects.Copy)) {
321            Cloner cloner = new Cloner();
[6527]322            items = items.Select(x => cloner.Clone(x));
[6472]323          }
[9613]324          if (ItemCollection != null) ItemCollection.AddRange(items);
325          else {
326            foreach (T item in items)
327              Content.Add(item);
328          }
[5744]329        }
[2655]330      }
331    }
332    #endregion
333
334    #region Button Events
335    protected virtual void addButton_Click(object sender, EventArgs e) {
336      T item = CreateItem();
337      if (item != null)
[2713]338        Content.Add(item);
[2655]339    }
[2676]340    protected virtual void sortAscendingButton_Click(object sender, EventArgs e) {
[2655]341      SortItemsListView(SortOrder.Ascending);
342    }
[2676]343    protected virtual void sortDescendingButton_Click(object sender, EventArgs e) {
[2655]344      SortItemsListView(SortOrder.Descending);
345    }
346    protected virtual void removeButton_Click(object sender, EventArgs e) {
347      if (itemsListView.SelectedItems.Count > 0) {
[9613]348        if (ItemCollection != null) {
349          ItemCollection.RemoveRange(itemsListView.SelectedItems.Cast<ListViewItem>().Select(i => (T)i.Tag));
350        } else {
351          foreach (ListViewItem item in itemsListView.SelectedItems)
352            Content.Remove((T)item.Tag);
353        }
[2655]354        itemsListView.SelectedItems.Clear();
355      }
356    }
357    #endregion
358
[4096]359    #region CheckBox Events
360    protected virtual void showDetailsCheckBox_CheckedChanged(object sender, EventArgs e) {
361      if (showDetailsCheckBox.Checked) {
362        splitContainer.Panel2Collapsed = false;
363        detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
364        viewHost.Content = itemsListView.SelectedItems.Count == 1 ? (T)itemsListView.SelectedItems[0].Tag : null;
365      } else {
366        splitContainer.Panel2Collapsed = true;
367        viewHost.Content = null;
368      }
369    }
370    #endregion
371
[2713]372    #region Content Events
373    protected virtual void Content_ItemsAdded(object sender, CollectionItemsChangedEventArgs<T> e) {
[2655]374      if (InvokeRequired)
[2713]375        Invoke(new CollectionItemsChangedEventHandler<T>(Content_ItemsAdded), sender, e);
[4240]376      else {
[2655]377        foreach (T item in e.Items)
378          AddListViewItem(CreateListViewItem(item));
[4240]379        AdjustListViewColumnSizes();
380      }
381
[2655]382    }
[2713]383    protected virtual void Content_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<T> e) {
[2655]384      if (InvokeRequired)
[2713]385        Invoke(new CollectionItemsChangedEventHandler<T>(Content_ItemsRemoved), sender, e);
[2655]386      else {
387        foreach (T item in e.Items) {
[4203]388          //remove only the first matching ListViewItem, because the IItem could be contained multiple times in the ItemCollection
389          ListViewItem listviewItem = GetListViewItemsForItem(item).FirstOrDefault();
[4240]390          if (listviewItem != null) RemoveListViewItem(listviewItem);
[2655]391        }
[5057]392        RebuildImageList();
[2655]393      }
394    }
[2713]395    protected virtual void Content_CollectionReset(object sender, CollectionItemsChangedEventArgs<T> e) {
[2655]396      if (InvokeRequired)
[2713]397        Invoke(new CollectionItemsChangedEventHandler<T>(Content_CollectionReset), sender, e);
[2655]398      else {
399        foreach (T item in e.OldItems) {
[4203]400          //remove only the first matching ListViewItem, because the IItem could be contained multiple times in the ItemCollection
401          ListViewItem listviewItem = GetListViewItemsForItem(item).FirstOrDefault();
[4240]402          if (listviewItem != null) RemoveListViewItem(listviewItem);
[2655]403        }
[5057]404        RebuildImageList();
[2655]405        foreach (T item in e.Items)
406          AddListViewItem(CreateListViewItem(item));
407      }
408    }
409    #endregion
410
411    #region Item Events
[3306]412    protected virtual void Item_ItemImageChanged(object sender, EventArgs e) {
413      if (InvokeRequired)
414        Invoke(new EventHandler(Item_ItemImageChanged), sender, e);
415      else {
416        T item = (T)sender;
417        foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
[3327]418          UpdateListViewItemImage(listViewItem);
[3306]419      }
420    }
[2932]421    protected virtual void Item_ToStringChanged(object sender, EventArgs e) {
[2655]422      if (InvokeRequired)
[2932]423        Invoke(new EventHandler(Item_ToStringChanged), sender, e);
[2655]424      else {
425        T item = (T)sender;
426        foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
[3327]427          UpdateListViewItemText(listViewItem);
[9755]428        AdjustListViewColumnSizes();
[2655]429      }
430    }
431    #endregion
432
433    #region Helpers
[2676]434    protected virtual void SortItemsListView(SortOrder sortOrder) {
[9540]435      itemsListView.Sorting = SortOrder.None;
[2655]436      itemsListView.Sorting = sortOrder;
[9540]437      itemsListView.Sorting = SortOrder.None;
[2655]438    }
[3362]439    protected virtual void AdjustListViewColumnSizes() {
440      if (itemsListView.Items.Count > 0) {
441        for (int i = 0; i < itemsListView.Columns.Count; i++)
442          itemsListView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
443      }
444    }
[5239]445    protected virtual void RebuildImageList() {
[5057]446      itemsListView.SmallImageList.Images.Clear();
[5239]447      foreach (ListViewItem listViewItem in itemsListView.Items) {
448        T item = listViewItem.Tag as T;
[5287]449        itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
[5239]450        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
[5057]451      }
452    }
[2655]453    #endregion
454  }
455}
Note: See TracBrowser for help on using the repository browser.