[2746] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2746] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Drawing;
|
---|
[5302] | 25 | using System.Linq;
|
---|
[2746] | 26 | using System.Windows.Forms;
|
---|
| 27 | using HeuristicLab.Collections;
|
---|
| 28 | using HeuristicLab.MainForm;
|
---|
| 29 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[3758] | 30 | using HeuristicLab.PluginInfrastructure;
|
---|
[2746] | 31 |
|
---|
| 32 | namespace HeuristicLab.Core.Views {
|
---|
[2917] | 33 | [View("ItemArray View")]
|
---|
[2746] | 34 | [Content(typeof(ItemArray<>), true)]
|
---|
[3393] | 35 | [Content(typeof(IItemArray<>), false)]
|
---|
[3483] | 36 | public partial class ItemArrayView<T> : ItemView where T : class, IItem {
|
---|
[5237] | 37 | protected Dictionary<T, List<ListViewItem>> itemListViewItemMapping;
|
---|
[3407] | 38 | protected TypeSelectorDialog typeSelectorDialog;
|
---|
[5744] | 39 | protected bool validDragOperation;
|
---|
[3407] | 40 |
|
---|
[3393] | 41 | public new IItemArray<T> Content {
|
---|
| 42 | get { return (IItemArray<T>)base.Content; }
|
---|
[2746] | 43 | set { base.Content = value; }
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | public ListView ItemsListView {
|
---|
| 47 | get { return itemsListView; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | public ItemArrayView() {
|
---|
| 51 | InitializeComponent();
|
---|
[5237] | 52 | itemListViewItemMapping = new Dictionary<T, List<ListViewItem>>();
|
---|
[2746] | 53 | }
|
---|
| 54 |
|
---|
[5237] | 55 | protected override void Dispose(bool disposing) {
|
---|
| 56 | if (disposing) {
|
---|
| 57 | if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
|
---|
| 58 | if (components != null) components.Dispose();
|
---|
| 59 | }
|
---|
| 60 | base.Dispose(disposing);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[2746] | 63 | protected override void DeregisterContentEvents() {
|
---|
| 64 | Content.ItemsReplaced -= new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_ItemsReplaced);
|
---|
| 65 | Content.ItemsMoved -= new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_ItemsMoved);
|
---|
| 66 | Content.CollectionReset -= new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_CollectionReset);
|
---|
[5237] | 67 | foreach (T item in itemListViewItemMapping.Keys) {
|
---|
| 68 | DeregisterItemEvents(item);
|
---|
[5070] | 69 | }
|
---|
[2746] | 70 | base.DeregisterContentEvents();
|
---|
| 71 | }
|
---|
| 72 | protected override void RegisterContentEvents() {
|
---|
| 73 | base.RegisterContentEvents();
|
---|
| 74 | Content.ItemsReplaced += new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_ItemsReplaced);
|
---|
| 75 | Content.ItemsMoved += new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_ItemsMoved);
|
---|
| 76 | Content.CollectionReset += new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_CollectionReset);
|
---|
| 77 | }
|
---|
[5237] | 78 | protected virtual void DeregisterItemEvents(T item) {
|
---|
| 79 | item.ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
|
---|
| 80 | item.ToStringChanged -= new EventHandler(Item_ToStringChanged);
|
---|
| 81 | }
|
---|
| 82 | protected virtual void RegisterItemEvents(T item) {
|
---|
| 83 | item.ItemImageChanged += new EventHandler(Item_ItemImageChanged);
|
---|
| 84 | item.ToStringChanged += new EventHandler(Item_ToStringChanged);
|
---|
| 85 | }
|
---|
[2746] | 86 |
|
---|
| 87 | protected override void OnContentChanged() {
|
---|
| 88 | base.OnContentChanged();
|
---|
[3775] | 89 |
|
---|
| 90 | int selectedIndex = -1;
|
---|
| 91 | if (itemsListView.SelectedItems.Count == 1) selectedIndex = itemsListView.SelectedIndices[0];
|
---|
| 92 |
|
---|
[5237] | 93 | itemsListView.Items.Clear();
|
---|
| 94 | itemListViewItemMapping.Clear();
|
---|
| 95 | RebuildImageList();
|
---|
[2746] | 96 | viewHost.Content = null;
|
---|
| 97 | if (Content != null) {
|
---|
| 98 | Caption += " (" + Content.GetType().Name + ")";
|
---|
| 99 | foreach (T item in Content)
|
---|
| 100 | AddListViewItem(CreateListViewItem(item));
|
---|
[4240] | 101 | AdjustListViewColumnSizes();
|
---|
[3775] | 102 | if ((selectedIndex != -1) && (selectedIndex < itemsListView.Items.Count))
|
---|
| 103 | itemsListView.Items[selectedIndex].Selected = true;
|
---|
[2746] | 104 | }
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[3904] | 107 | protected override void SetEnabledStateOfControls() {
|
---|
| 108 | base.SetEnabledStateOfControls();
|
---|
[3362] | 109 | if (Content == null) {
|
---|
| 110 | addButton.Enabled = false;
|
---|
| 111 | moveUpButton.Enabled = false;
|
---|
| 112 | moveDownButton.Enabled = false;
|
---|
| 113 | removeButton.Enabled = false;
|
---|
| 114 | itemsListView.Enabled = false;
|
---|
| 115 | detailsGroupBox.Enabled = false;
|
---|
| 116 | } else {
|
---|
| 117 | addButton.Enabled = itemsListView.SelectedItems.Count > 0 &&
|
---|
[3435] | 118 | !Content.IsReadOnly && !ReadOnly;
|
---|
[3362] | 119 | moveUpButton.Enabled = itemsListView.SelectedItems.Count == 1 &&
|
---|
| 120 | itemsListView.SelectedIndices[0] != 0 &&
|
---|
[3435] | 121 | !Content.IsReadOnly && !ReadOnly;
|
---|
[3362] | 122 | moveDownButton.Enabled = itemsListView.SelectedItems.Count == 1 &&
|
---|
| 123 | itemsListView.SelectedIndices[0] != itemsListView.Items.Count - 1 &&
|
---|
[3435] | 124 | !Content.IsReadOnly && !ReadOnly;
|
---|
[3362] | 125 | removeButton.Enabled = itemsListView.SelectedItems.Count > 0 &&
|
---|
[3435] | 126 | !Content.IsReadOnly && !ReadOnly;
|
---|
[3362] | 127 | itemsListView.Enabled = true;
|
---|
[4099] | 128 | detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
|
---|
[3362] | 129 | }
|
---|
| 130 | }
|
---|
| 131 |
|
---|
[2746] | 132 | protected virtual T CreateItem() {
|
---|
[3407] | 133 | if (typeSelectorDialog == null) {
|
---|
| 134 | typeSelectorDialog = new TypeSelectorDialog();
|
---|
| 135 | typeSelectorDialog.Caption = "Select Item";
|
---|
| 136 | typeSelectorDialog.TypeSelector.Caption = "Available Items";
|
---|
[3588] | 137 | typeSelectorDialog.TypeSelector.Configure(typeof(T), false, true);
|
---|
[2746] | 138 | }
|
---|
[3407] | 139 |
|
---|
| 140 | if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 141 | try {
|
---|
| 142 | return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
|
---|
[5302] | 143 | }
|
---|
| 144 | catch (Exception ex) {
|
---|
[3758] | 145 | ErrorHandling.ShowErrorDialog(this, ex);
|
---|
[3407] | 146 | }
|
---|
[2746] | 147 | }
|
---|
[3407] | 148 | return null;
|
---|
[2746] | 149 | }
|
---|
| 150 | protected virtual ListViewItem CreateListViewItem(T item) {
|
---|
[3341] | 151 | ListViewItem listViewItem = new ListViewItem();
|
---|
[5237] | 152 | if (item == null) {
|
---|
| 153 | listViewItem.Text = "null";
|
---|
[5287] | 154 | itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
|
---|
[5237] | 155 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
| 156 | } else {
|
---|
| 157 | listViewItem.Text = item.ToString();
|
---|
| 158 | listViewItem.ToolTipText = item.ItemName + ": " + item.ItemDescription;
|
---|
| 159 | itemsListView.SmallImageList.Images.Add(item.ItemImage);
|
---|
| 160 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
| 161 | listViewItem.Tag = item;
|
---|
| 162 | }
|
---|
[3341] | 163 | return listViewItem;
|
---|
[2746] | 164 | }
|
---|
| 165 | protected virtual void AddListViewItem(ListViewItem listViewItem) {
|
---|
[5371] | 166 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[5237] | 167 | T item = (listViewItem.Tag as T);
|
---|
[2746] | 168 | itemsListView.Items.Add(listViewItem);
|
---|
[5237] | 169 | if (item != null) {
|
---|
| 170 | if (!itemListViewItemMapping.ContainsKey(item)) {
|
---|
| 171 | RegisterItemEvents(item);
|
---|
| 172 | itemListViewItemMapping.Add(item, new List<ListViewItem>());
|
---|
| 173 | }
|
---|
| 174 | itemListViewItemMapping[item].Add(listViewItem);
|
---|
[3341] | 175 | }
|
---|
[2746] | 176 | }
|
---|
| 177 | protected virtual void InsertListViewItem(int index, ListViewItem listViewItem) {
|
---|
[5371] | 178 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[5237] | 179 | T item = (listViewItem.Tag as T);
|
---|
[2746] | 180 | itemsListView.Items.Insert(index, listViewItem);
|
---|
[5237] | 181 | if (item != null) {
|
---|
| 182 | if (!itemListViewItemMapping.ContainsKey(item)) {
|
---|
| 183 | RegisterItemEvents(item);
|
---|
| 184 | itemListViewItemMapping.Add(item, new List<ListViewItem>());
|
---|
| 185 | }
|
---|
| 186 | itemListViewItemMapping[item].Add(listViewItem);
|
---|
[3341] | 187 | }
|
---|
[2746] | 188 | }
|
---|
| 189 | protected virtual void RemoveListViewItem(ListViewItem listViewItem) {
|
---|
[5371] | 190 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[5237] | 191 | T item = (listViewItem.Tag as T);
|
---|
| 192 | if (item != null) {
|
---|
| 193 | itemListViewItemMapping[item].Remove(listViewItem);
|
---|
| 194 | if (itemListViewItemMapping[item].Count == 0) {
|
---|
| 195 | itemListViewItemMapping.Remove(item);
|
---|
| 196 | DeregisterItemEvents(item);
|
---|
| 197 | }
|
---|
[3341] | 198 | }
|
---|
[2746] | 199 | listViewItem.Remove();
|
---|
| 200 | }
|
---|
[3341] | 201 | protected virtual void UpdateListViewItemImage(ListViewItem listViewItem) {
|
---|
[5371] | 202 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[2746] | 203 | T item = listViewItem.Tag as T;
|
---|
[3341] | 204 | int i = listViewItem.ImageIndex;
|
---|
[5839] | 205 | itemsListView.SmallImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
|
---|
[3341] | 206 | listViewItem.ImageIndex = -1;
|
---|
| 207 | listViewItem.ImageIndex = i;
|
---|
| 208 | }
|
---|
| 209 | protected virtual void UpdateListViewItemText(ListViewItem listViewItem) {
|
---|
[5371] | 210 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[3341] | 211 | T item = listViewItem.Tag as T;
|
---|
[2746] | 212 | listViewItem.Text = item == null ? "null" : item.ToString();
|
---|
| 213 | listViewItem.ToolTipText = item == null ? string.Empty : item.ItemName + ": " + item.ItemDescription;
|
---|
| 214 | }
|
---|
[5237] | 215 | protected virtual IEnumerable<ListViewItem> GetListViewItemsForItem(T item) {
|
---|
[5238] | 216 | if (item == null) {
|
---|
| 217 | List<ListViewItem> listViewItems = new List<ListViewItem>();
|
---|
| 218 | foreach (ListViewItem listViewItem in itemsListView.Items) {
|
---|
| 219 | if (listViewItem.Tag == null) listViewItems.Add(listViewItem);
|
---|
| 220 | }
|
---|
| 221 | return listViewItems;
|
---|
| 222 | } else {
|
---|
[5302] | 223 | List<ListViewItem> listViewItems = null;
|
---|
| 224 | itemListViewItemMapping.TryGetValue(item, out listViewItems);
|
---|
| 225 | return listViewItems == null ? Enumerable.Empty<ListViewItem>() : listViewItems;
|
---|
[5238] | 226 | }
|
---|
[5237] | 227 | }
|
---|
[2746] | 228 |
|
---|
[3362] | 229 | #region ListView Events
|
---|
[2746] | 230 | protected virtual void itemsListView_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
[3456] | 231 | addButton.Enabled = itemsListView.SelectedItems.Count > 0 && (Content != null) && !Content.IsReadOnly && !ReadOnly;
|
---|
[2746] | 232 | moveUpButton.Enabled = itemsListView.SelectedItems.Count == 1 &&
|
---|
| 233 | itemsListView.SelectedIndices[0] != 0 &&
|
---|
[3456] | 234 | (Content != null) && !Content.IsReadOnly && !ReadOnly;
|
---|
[2746] | 235 | moveDownButton.Enabled = itemsListView.SelectedItems.Count == 1 &&
|
---|
| 236 | itemsListView.SelectedIndices[0] != itemsListView.Items.Count - 1 &&
|
---|
[3456] | 237 | (Content != null) && !Content.IsReadOnly && !ReadOnly;
|
---|
| 238 | removeButton.Enabled = itemsListView.SelectedItems.Count > 0 && (Content != null) && !Content.IsReadOnly && !ReadOnly;
|
---|
[3829] | 239 | AdjustListViewColumnSizes();
|
---|
[2746] | 240 |
|
---|
[4096] | 241 | if (showDetailsCheckBox.Checked) {
|
---|
| 242 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
| 243 | T item = itemsListView.SelectedItems[0].Tag as T;
|
---|
| 244 | detailsGroupBox.Enabled = true;
|
---|
| 245 | viewHost.Content = item;
|
---|
| 246 | } else {
|
---|
| 247 | viewHost.Content = null;
|
---|
| 248 | detailsGroupBox.Enabled = false;
|
---|
| 249 | }
|
---|
[2746] | 250 | }
|
---|
| 251 | }
|
---|
| 252 |
|
---|
| 253 | protected virtual void itemsListView_KeyDown(object sender, KeyEventArgs e) {
|
---|
| 254 | if (e.KeyCode == Keys.Delete) {
|
---|
[3435] | 255 | if ((itemsListView.SelectedItems.Count > 0) && !Content.IsReadOnly && !ReadOnly) {
|
---|
[2746] | 256 | foreach (ListViewItem item in itemsListView.SelectedItems)
|
---|
| 257 | Content[item.Index] = null;
|
---|
| 258 | }
|
---|
| 259 | }
|
---|
| 260 | }
|
---|
| 261 |
|
---|
| 262 | protected virtual void itemsListView_DoubleClick(object sender, EventArgs e) {
|
---|
| 263 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
| 264 | T item = itemsListView.SelectedItems[0].Tag as T;
|
---|
| 265 | if (item != null) {
|
---|
[3557] | 266 | IContentView view = MainFormManager.MainForm.ShowContent(item);
|
---|
[3416] | 267 | if (view != null) {
|
---|
| 268 | view.ReadOnly = ReadOnly;
|
---|
[3423] | 269 | view.Locked = Locked;
|
---|
[3416] | 270 | }
|
---|
[2746] | 271 | }
|
---|
| 272 | }
|
---|
| 273 | }
|
---|
| 274 |
|
---|
| 275 | protected virtual void itemsListView_ItemDrag(object sender, ItemDragEventArgs e) {
|
---|
[3432] | 276 | if (!Locked) {
|
---|
[5744] | 277 | List<T> items = new List<T>();
|
---|
| 278 | foreach (ListViewItem listViewItem in itemsListView.SelectedItems) {
|
---|
| 279 | T item = listViewItem.Tag as T;
|
---|
| 280 | if (item != null) items.Add(item);
|
---|
| 281 | }
|
---|
| 282 |
|
---|
| 283 | if (items.Count > 0) {
|
---|
[3432] | 284 | DataObject data = new DataObject();
|
---|
[5837] | 285 | if (items.Count == 1) data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, items[0]);
|
---|
| 286 | else data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, items);
|
---|
[3435] | 287 | if (Content.IsReadOnly || ReadOnly) {
|
---|
[3432] | 288 | DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
|
---|
| 289 | } else {
|
---|
| 290 | DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link | DragDropEffects.Move);
|
---|
[5744] | 291 | if ((result & DragDropEffects.Move) == DragDropEffects.Move) {
|
---|
| 292 | foreach (ListViewItem listViewItem in itemsListView.SelectedItems.Cast<ListViewItem>().ToArray())
|
---|
| 293 | Content[listViewItem.Index] = null;
|
---|
| 294 | }
|
---|
[3432] | 295 | }
|
---|
[2746] | 296 | }
|
---|
| 297 | }
|
---|
| 298 | }
|
---|
[5744] | 299 | protected virtual void itemsListView_DragEnter(object sender, DragEventArgs e) {
|
---|
[5837] | 300 | validDragOperation = !Content.IsReadOnly && !ReadOnly && e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is T;
|
---|
[5744] | 301 | }
|
---|
| 302 | protected virtual void itemsListView_DragOver(object sender, DragEventArgs e) {
|
---|
[2746] | 303 | e.Effect = DragDropEffects.None;
|
---|
[5744] | 304 | if (validDragOperation) {
|
---|
[2746] | 305 | Point p = itemsListView.PointToClient(new Point(e.X, e.Y));
|
---|
| 306 | ListViewItem listViewItem = itemsListView.GetItemAt(p.X, p.Y);
|
---|
| 307 | if (listViewItem != null) {
|
---|
[3694] | 308 | if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link; // ALT key
|
---|
[2746] | 309 | else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move; // SHIFT key
|
---|
[5744] | 310 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
|
---|
| 311 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
|
---|
| 312 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
|
---|
[2746] | 313 | }
|
---|
| 314 | }
|
---|
| 315 | }
|
---|
| 316 | protected virtual void itemsListView_DragDrop(object sender, DragEventArgs e) {
|
---|
| 317 | if (e.Effect != DragDropEffects.None) {
|
---|
| 318 | Point p = itemsListView.PointToClient(new Point(e.X, e.Y));
|
---|
| 319 | ListViewItem listViewItem = itemsListView.GetItemAt(p.X, p.Y);
|
---|
[5837] | 320 | T item = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) as T;
|
---|
[5744] | 321 | Content[listViewItem.Index] = e.Effect.HasFlag(DragDropEffects.Copy) ? (T)item.Clone() : item;
|
---|
[2746] | 322 | }
|
---|
| 323 | }
|
---|
| 324 | #endregion
|
---|
| 325 |
|
---|
| 326 | #region Button Events
|
---|
[3341] | 327 | protected virtual void addButton_Click(object sender, EventArgs e) {
|
---|
| 328 | if (itemsListView.SelectedItems.Count > 0) {
|
---|
| 329 | T item = CreateItem();
|
---|
| 330 | if (item != null) {
|
---|
| 331 | foreach (ListViewItem listViewItem in itemsListView.SelectedItems)
|
---|
| 332 | Content[listViewItem.Index] = item;
|
---|
| 333 | }
|
---|
| 334 | }
|
---|
| 335 | }
|
---|
[2746] | 336 | protected virtual void moveUpButton_Click(object sender, EventArgs e) {
|
---|
| 337 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
| 338 | int index = itemsListView.SelectedIndices[0];
|
---|
[5928] | 339 | Content.Reverse(index - 1, 2);
|
---|
[2746] | 340 | itemsListView.Items[index].Selected = false;
|
---|
| 341 | itemsListView.Items[index - 1].Selected = true;
|
---|
| 342 | }
|
---|
| 343 | }
|
---|
| 344 | protected virtual void moveDownButton_Click(object sender, EventArgs e) {
|
---|
| 345 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
| 346 | int index = itemsListView.SelectedIndices[0];
|
---|
[5928] | 347 | Content.Reverse(index, 2);
|
---|
[2746] | 348 | itemsListView.Items[index].Selected = false;
|
---|
| 349 | itemsListView.Items[index + 1].Selected = true;
|
---|
| 350 | }
|
---|
| 351 | }
|
---|
[3341] | 352 | protected virtual void removeButton_Click(object sender, EventArgs e) {
|
---|
| 353 | if (itemsListView.SelectedItems.Count > 0) {
|
---|
| 354 | foreach (ListViewItem item in itemsListView.SelectedItems)
|
---|
| 355 | Content[item.Index] = null;
|
---|
| 356 | }
|
---|
| 357 | }
|
---|
[2746] | 358 | #endregion
|
---|
| 359 |
|
---|
[4096] | 360 | #region CheckBox Events
|
---|
| 361 | protected virtual void showDetailsCheckBox_CheckedChanged(object sender, EventArgs e) {
|
---|
| 362 | if (showDetailsCheckBox.Checked) {
|
---|
| 363 | splitContainer.Panel2Collapsed = false;
|
---|
| 364 | detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
|
---|
| 365 | viewHost.Content = itemsListView.SelectedItems.Count == 1 ? (T)itemsListView.SelectedItems[0].Tag : null;
|
---|
| 366 | } else {
|
---|
| 367 | splitContainer.Panel2Collapsed = true;
|
---|
| 368 | viewHost.Content = null;
|
---|
| 369 | }
|
---|
| 370 | }
|
---|
| 371 | #endregion
|
---|
| 372 |
|
---|
[2746] | 373 | #region Content Events
|
---|
| 374 | protected virtual void Content_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
|
---|
| 375 | if (InvokeRequired)
|
---|
| 376 | Invoke(new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_ItemsReplaced), sender, e);
|
---|
| 377 | else {
|
---|
| 378 | int[] selected = new int[itemsListView.SelectedIndices.Count];
|
---|
| 379 | itemsListView.SelectedIndices.CopyTo(selected, 0);
|
---|
| 380 |
|
---|
| 381 | List<ListViewItem> listViewItems = new List<ListViewItem>();
|
---|
| 382 | foreach (IndexedItem<T> item in e.OldItems)
|
---|
| 383 | listViewItems.Add(itemsListView.Items[item.Index]);
|
---|
| 384 | foreach (ListViewItem listViewItem in listViewItems)
|
---|
| 385 | RemoveListViewItem(listViewItem);
|
---|
[5237] | 386 | RebuildImageList();
|
---|
[2746] | 387 |
|
---|
| 388 | foreach (IndexedItem<T> item in e.Items)
|
---|
| 389 | InsertListViewItem(item.Index, CreateListViewItem(item.Value));
|
---|
[4240] | 390 | AdjustListViewColumnSizes();
|
---|
[2746] | 391 |
|
---|
| 392 | for (int i = 0; i < selected.Length; i++)
|
---|
| 393 | itemsListView.Items[selected[i]].Selected = true;
|
---|
| 394 | }
|
---|
| 395 | }
|
---|
| 396 | protected virtual void Content_ItemsMoved(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
|
---|
| 397 | if (InvokeRequired)
|
---|
| 398 | Invoke(new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_ItemsMoved), sender, e);
|
---|
| 399 | else {
|
---|
| 400 | foreach (IndexedItem<T> item in e.Items) {
|
---|
| 401 | ListViewItem listViewItem = itemsListView.Items[item.Index];
|
---|
[7161] | 402 | if (listViewItem.Tag != null)
|
---|
| 403 | itemListViewItemMapping[(T)listViewItem.Tag].Remove(listViewItem);
|
---|
[2746] | 404 | listViewItem.Tag = item.Value;
|
---|
[7161] | 405 | if (listViewItem.Tag != null)
|
---|
| 406 | itemListViewItemMapping[item.Value].Add(listViewItem);
|
---|
[3341] | 407 | UpdateListViewItemImage(listViewItem);
|
---|
| 408 | UpdateListViewItemText(listViewItem);
|
---|
[2746] | 409 | }
|
---|
| 410 | }
|
---|
| 411 | }
|
---|
| 412 | protected virtual void Content_CollectionReset(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
|
---|
| 413 | if (InvokeRequired)
|
---|
| 414 | Invoke(new CollectionItemsChangedEventHandler<IndexedItem<T>>(Content_CollectionReset), sender, e);
|
---|
| 415 | else {
|
---|
| 416 | List<ListViewItem> listViewItems = new List<ListViewItem>();
|
---|
| 417 | foreach (IndexedItem<T> item in e.OldItems)
|
---|
| 418 | listViewItems.Add(itemsListView.Items[item.Index]);
|
---|
| 419 | foreach (ListViewItem listViewItem in listViewItems)
|
---|
| 420 | RemoveListViewItem(listViewItem);
|
---|
[5237] | 421 | RebuildImageList();
|
---|
[2746] | 422 |
|
---|
| 423 | foreach (IndexedItem<T> item in e.Items)
|
---|
| 424 | InsertListViewItem(item.Index, CreateListViewItem(item.Value));
|
---|
[4240] | 425 | AdjustListViewColumnSizes();
|
---|
[2746] | 426 | }
|
---|
| 427 | }
|
---|
| 428 | #endregion
|
---|
| 429 |
|
---|
| 430 | #region Item Events
|
---|
[3341] | 431 | protected virtual void Item_ItemImageChanged(object sender, EventArgs e) {
|
---|
| 432 | if (InvokeRequired)
|
---|
| 433 | Invoke(new EventHandler(Item_ItemImageChanged), sender, e);
|
---|
| 434 | else {
|
---|
| 435 | T item = (T)sender;
|
---|
[5237] | 436 | foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
|
---|
| 437 | UpdateListViewItemImage(listViewItem);
|
---|
[3341] | 438 | }
|
---|
| 439 | }
|
---|
[2932] | 440 | protected virtual void Item_ToStringChanged(object sender, EventArgs e) {
|
---|
[2746] | 441 | if (InvokeRequired)
|
---|
[2932] | 442 | Invoke(new EventHandler(Item_ToStringChanged), sender, e);
|
---|
[2746] | 443 | else {
|
---|
| 444 | T item = (T)sender;
|
---|
[5237] | 445 | foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
|
---|
| 446 | UpdateListViewItemText(listViewItem);
|
---|
[9755] | 447 | AdjustListViewColumnSizes();
|
---|
[2746] | 448 | }
|
---|
| 449 | }
|
---|
| 450 | #endregion
|
---|
[3362] | 451 |
|
---|
| 452 | #region Helpers
|
---|
| 453 | protected virtual void AdjustListViewColumnSizes() {
|
---|
| 454 | if (itemsListView.Items.Count > 0) {
|
---|
| 455 | for (int i = 0; i < itemsListView.Columns.Count; i++)
|
---|
| 456 | itemsListView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
|
---|
| 457 | }
|
---|
| 458 | }
|
---|
[5239] | 459 | protected virtual void RebuildImageList() {
|
---|
[5237] | 460 | itemsListView.SmallImageList.Images.Clear();
|
---|
[5239] | 461 | foreach (ListViewItem listViewItem in itemsListView.Items) {
|
---|
| 462 | T item = listViewItem.Tag as T;
|
---|
[5287] | 463 | itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
|
---|
[5239] | 464 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
[5237] | 465 | }
|
---|
| 466 | }
|
---|
[3362] | 467 | #endregion
|
---|
[2746] | 468 | }
|
---|
| 469 | }
|
---|