Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemCollectionView.cs @ 3775

Last change on this file since 3775 was 3775, checked in by swagner, 14 years ago

Implemented reviewers' comments (#893)

  • added automatic re-selection of elements in collection views when the content of the view is changed
File size: 5.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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.Collections.Generic;
23using System.Windows.Forms;
24using HeuristicLab.Collections;
25using HeuristicLab.MainForm;
26
27namespace HeuristicLab.Core.Views {
28  [View("NamedItemCollection View")]
29  [Content(typeof(NamedItemCollection<>), true)]
30  public partial class NamedItemCollectionView<T> : ItemCollectionView<T> where T : class, INamedItem {
31    public new IKeyedItemCollection<string, T> Content {
32      get { return (IKeyedItemCollection<string, T>)base.Content; }
33      set { base.Content = value; }
34    }
35
36    private Dictionary<T, ListViewItem> listViewItemDictionary;
37    protected Dictionary<T, ListViewItem> ListViewItemDictionary {
38      get { return listViewItemDictionary; }
39    }
40
41    public NamedItemCollectionView() {
42      listViewItemDictionary = new Dictionary<T, ListViewItem>();
43      InitializeComponent();
44    }
45
46    protected override void DeregisterContentEvents() {
47      Content.ItemsReplaced -= new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced);
48      base.DeregisterContentEvents();
49    }
50    protected override void RegisterContentEvents() {
51      base.RegisterContentEvents();
52      Content.ItemsReplaced += new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced);
53    }
54
55    protected override void OnContentChanged() {
56      string selectedName = null;
57      if ((itemsListView.SelectedItems.Count == 1) && (itemsListView.SelectedItems[0].Tag != null))
58        selectedName = ((T)itemsListView.SelectedItems[0].Tag).Name;
59      base.OnContentChanged();
60      if (selectedName != null) {
61        foreach (ListViewItem item in itemsListView.Items) {
62          if ((item.Tag != null) && (((T)item.Tag).Name.Equals(selectedName)))
63            item.Selected = true;
64        }
65      }
66    }
67
68    protected override T CreateItem() {
69      T item = base.CreateItem();
70      if (item != null) {
71        item.Name = GetUniqueName(item.Name);
72      }
73      return item;
74    }
75    protected override ListViewItem CreateListViewItem(T item) {
76      ListViewItem listViewItem = base.CreateListViewItem(item);
77      listViewItem.ToolTipText = item.ItemName + ": " + item.Description;
78      return listViewItem;
79    }
80    protected override void AddListViewItem(ListViewItem listViewItem) {
81      ListViewItemDictionary.Add((T)listViewItem.Tag, listViewItem);
82      base.AddListViewItem(listViewItem);
83    }
84    protected override void RemoveListViewItem(ListViewItem listViewItem) {
85      base.RemoveListViewItem(listViewItem);
86      ListViewItemDictionary.Remove((T)listViewItem.Tag);
87    }
88    protected override IEnumerable<ListViewItem> GetListViewItemsForItem(T item) {
89      ListViewItem listViewItem = null;
90      listViewItemDictionary.TryGetValue(item, out listViewItem);
91      if (listViewItem != null) return new ListViewItem[] { listViewItem };
92      else return new ListViewItem[0];
93    }
94
95    #region ListView Events
96    protected override void itemsListView_DragEnterOver(object sender, DragEventArgs e) {
97      base.itemsListView_DragEnterOver(sender, e);
98      if (e.Effect != DragDropEffects.None) {
99        T item = e.Data.GetData("Value") as T;
100        if ((item == null) || (Content.ContainsKey(item.Name)))
101          e.Effect = DragDropEffects.None;
102      }
103    }
104    #endregion
105
106    #region Content Events
107    protected virtual void Content_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<T> e) {
108      if (InvokeRequired)
109        Invoke(new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced), sender, e);
110      else {
111        foreach (T item in e.Items) {
112          foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
113            UpdateListViewItemText(listViewItem);
114        }
115        AdjustListViewColumnSizes();
116      }
117    }
118    #endregion
119
120    #region Helpers
121    protected virtual string GetUniqueName(string originalName) {
122      if (!Content.ContainsKey(originalName))
123        return originalName;
124      else {
125        string name = null;
126        int index = 0;
127        do {
128          index++;
129          name = originalName + index.ToString();
130        } while (Content.ContainsKey(name));
131        return name;
132      }
133    }
134    #endregion
135  }
136}
Note: See TracBrowser for help on using the repository browser.