Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 5.0 KB
RevLine 
[2655]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 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    }
[7235]79    protected override void UpdateListViewItemText(ListViewItem listViewItem) {
80      base.UpdateListViewItemText(listViewItem);
81      T item = listViewItem.Tag as T;
82      if ((item != null) && !string.IsNullOrEmpty(item.Description)) {
83        listViewItem.ToolTipText = item.ItemName + ": " + item.Description;
84      }
85    }
[3362]86
[2655]87    #region ListView Events
[5744]88    protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
89      base.itemsListView_DragEnter(sender, e);
90      if (validDragOperation) {
[5837]91        if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is T) {
92          validDragOperation = validDragOperation && !Content.ContainsKey(((T)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat)).Name);
93        } else if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IEnumerable) {
94          IEnumerable<T> items = ((IEnumerable)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat)).Cast<T>();
[5744]95          foreach (T item in items)
96            validDragOperation = validDragOperation && !Content.ContainsKey(item.Name);
97        }
[2655]98      }
99    }
100    #endregion
101
[2713]102    #region Content Events
103    protected virtual void Content_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<T> e) {
[2655]104      if (InvokeRequired)
[2713]105        Invoke(new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced), sender, e);
[2655]106      else {
107        foreach (T item in e.Items) {
108          foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
[3327]109            UpdateListViewItemText(listViewItem);
[2655]110        }
[3362]111        AdjustListViewColumnSizes();
[2655]112      }
113    }
114    #endregion
115
116    #region Helpers
[2676]117    protected virtual string GetUniqueName(string originalName) {
[2713]118      if (!Content.ContainsKey(originalName))
[2655]119        return originalName;
120      else {
121        string name = null;
122        int index = 0;
123        do {
124          index++;
125          name = originalName + index.ToString();
[2713]126        } while (Content.ContainsKey(name));
[2655]127        return name;
128      }
129    }
130    #endregion
131  }
132}
Note: See TracBrowser for help on using the repository browser.