Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Core.Views/3.3/NamedItemCollectionView.cs @ 5806

Last change on this file since 5806 was 5796, checked in by mkommend, 13 years ago

#1418: Merged trunk changes into branch.

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