Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5903 was 5837, checked in by swagner, 13 years ago

Implemented review comments of mkommend (#1112)

File size: 4.7 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        itemsListView.SelectedItems[0].Tag is T))
55        selectedName = ((T)itemsListView.SelectedItems[0].Tag).Name;
56      base.OnContentChanged();
57      if (selectedName != null) {
58        foreach (ListViewItem item in itemsListView.Items) {
59          if ((item.Tag != null) && (((T)item.Tag).Name.Equals(selectedName)))
60            item.Selected = true;
61        }
62      }
63    }
64
65    protected override T CreateItem() {
66      T item = base.CreateItem();
67      if (item != null) {
68        item.Name = GetUniqueName(item.Name);
69      }
70      return item;
71    }
72    protected override ListViewItem CreateListViewItem(T item) {
73      ListViewItem listViewItem = base.CreateListViewItem(item);
74      if ((item != null) && !string.IsNullOrEmpty(item.Description)) {
75        listViewItem.ToolTipText = item.ItemName + ": " + item.Description;
76      }
77      return listViewItem;
78    }
79
80    #region ListView Events
81    protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
82      base.itemsListView_DragEnter(sender, e);
83      if (validDragOperation) {
84        if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is T) {
85          validDragOperation = validDragOperation && !Content.ContainsKey(((T)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat)).Name);
86        } else if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IEnumerable) {
87          IEnumerable<T> items = ((IEnumerable)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat)).Cast<T>();
88          foreach (T item in items)
89            validDragOperation = validDragOperation && !Content.ContainsKey(item.Name);
90        }
91      }
92    }
93    #endregion
94
95    #region Content Events
96    protected virtual void Content_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<T> e) {
97      if (InvokeRequired)
98        Invoke(new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced), sender, e);
99      else {
100        foreach (T item in e.Items) {
101          foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
102            UpdateListViewItemText(listViewItem);
103        }
104        AdjustListViewColumnSizes();
105      }
106    }
107    #endregion
108
109    #region Helpers
110    protected virtual string GetUniqueName(string originalName) {
111      if (!Content.ContainsKey(originalName))
112        return originalName;
113      else {
114        string name = null;
115        int index = 0;
116        do {
117          index++;
118          name = originalName + index.ToString();
119        } while (Content.ContainsKey(name));
120        return name;
121      }
122    }
123    #endregion
124  }
125}
Note: See TracBrowser for help on using the repository browser.