Free cookie consent management tool by TermsFeed Policy Generator

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

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

Implemented review comments of mkommend (#1112)

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