Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.cs @ 13152

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

#2338: Added readonly-collection as default view

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