[2655] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 | using System.Collections.Generic;
|
---|
| 23 | using System.Windows.Forms;
|
---|
| 24 | using HeuristicLab.Collections;
|
---|
| 25 | using HeuristicLab.MainForm;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.Core.Views {
|
---|
[2917] | 28 | [View("NamedItemCollection View")]
|
---|
[2727] | 29 | [Content(typeof(NamedItemCollection<>), true)]
|
---|
[2655] | 30 | public partial class NamedItemCollectionView<T> : ItemCollectionView<T> where T : class, INamedItem {
|
---|
[2713] | 31 | public new IObservableKeyedCollection<string, T> Content {
|
---|
| 32 | get { return (IObservableKeyedCollection<string, T>)base.Content; }
|
---|
| 33 | set { base.Content = value; }
|
---|
[2655] | 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 | Caption = "Named Item Collection";
|
---|
| 45 | }
|
---|
[2727] | 46 | public NamedItemCollectionView(IObservableKeyedCollection<string, T> content)
|
---|
| 47 | : this() {
|
---|
| 48 | Content = content;
|
---|
| 49 | }
|
---|
[2655] | 50 |
|
---|
[2713] | 51 | protected override void DeregisterContentEvents() {
|
---|
| 52 | Content.ItemsReplaced -= new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced);
|
---|
| 53 | base.DeregisterContentEvents();
|
---|
[2655] | 54 | }
|
---|
[2713] | 55 | protected override void RegisterContentEvents() {
|
---|
| 56 | base.RegisterContentEvents();
|
---|
| 57 | Content.ItemsReplaced += new CollectionItemsChangedEventHandler<T>(Content_ItemsReplaced);
|
---|
[2655] | 58 | }
|
---|
| 59 |
|
---|
| 60 | protected override T CreateItem() {
|
---|
| 61 | T item = base.CreateItem();
|
---|
| 62 | if (item != null) {
|
---|
| 63 | item.Name = GetUniqueName(item.Name);
|
---|
| 64 | }
|
---|
| 65 | return item;
|
---|
| 66 | }
|
---|
[2947] | 67 | protected override ListViewItem CreateListViewItem(T item) {
|
---|
| 68 | ListViewItem listViewItem = base.CreateListViewItem(item);
|
---|
| 69 | listViewItem.ToolTipText = item.ItemName + ": " + item.Description;
|
---|
| 70 | return listViewItem;
|
---|
| 71 | }
|
---|
[2655] | 72 | protected override void AddListViewItem(ListViewItem listViewItem) {
|
---|
| 73 | ListViewItemDictionary.Add((T)listViewItem.Tag, listViewItem);
|
---|
| 74 | base.AddListViewItem(listViewItem);
|
---|
| 75 | }
|
---|
| 76 | protected override void RemoveListViewItem(ListViewItem listViewItem) {
|
---|
| 77 | base.RemoveListViewItem(listViewItem);
|
---|
| 78 | ListViewItemDictionary.Remove((T)listViewItem.Tag);
|
---|
| 79 | }
|
---|
| 80 | protected override IEnumerable<ListViewItem> GetListViewItemsForItem(T item) {
|
---|
| 81 | return new ListViewItem[] { listViewItemDictionary[item] };
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | #region ListView Events
|
---|
| 85 | protected override void itemsListView_DragEnterOver(object sender, DragEventArgs e) {
|
---|
| 86 | base.itemsListView_DragEnterOver(sender, e);
|
---|
| 87 | if (e.Effect != DragDropEffects.None) {
|
---|
| 88 | T item = e.Data.GetData("Value") as T;
|
---|
[2713] | 89 | if ((item == null) || (Content.ContainsKey(item.Name)))
|
---|
[2655] | 90 | e.Effect = DragDropEffects.None;
|
---|
| 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))
|
---|
| 102 | UpdateListViewItem(listViewItem);
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 | #endregion
|
---|
| 107 |
|
---|
| 108 | #region Helpers
|
---|
[2676] | 109 | protected virtual string GetUniqueName(string originalName) {
|
---|
[2713] | 110 | if (!Content.ContainsKey(originalName))
|
---|
[2655] | 111 | return originalName;
|
---|
| 112 | else {
|
---|
| 113 | string name = null;
|
---|
| 114 | int index = 0;
|
---|
| 115 | do {
|
---|
| 116 | index++;
|
---|
| 117 | name = originalName + index.ToString();
|
---|
[2713] | 118 | } while (Content.ContainsKey(name));
|
---|
[2655] | 119 | return name;
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 | #endregion
|
---|
| 123 | }
|
---|
| 124 | }
|
---|