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