[3260] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3260] | 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 |
|
---|
[4068] | 22 | using System;
|
---|
[5744] | 23 | using System.Collections;
|
---|
[4068] | 24 | using System.Collections.Generic;
|
---|
| 25 | using System.Drawing;
|
---|
| 26 | using System.Linq;
|
---|
| 27 | using System.Windows.Forms;
|
---|
[3274] | 28 | using HeuristicLab.Collections;
|
---|
[6760] | 29 | using HeuristicLab.Common;
|
---|
[3393] | 30 | using HeuristicLab.Core;
|
---|
[3260] | 31 | using HeuristicLab.Core.Views;
|
---|
| 32 | using HeuristicLab.MainForm;
|
---|
[3277] | 33 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[3260] | 34 |
|
---|
| 35 | namespace HeuristicLab.Optimization.Views {
|
---|
| 36 | [View("RunCollection View")]
|
---|
| 37 | [Content(typeof(RunCollection), true)]
|
---|
[3393] | 38 | [Content(typeof(IItemCollection<IRun>), false)]
|
---|
[4883] | 39 | public sealed partial class RunCollectionView : ItemView {
|
---|
[5237] | 40 | private Dictionary<IRun, List<ListViewItem>> itemListViewItemMapping;
|
---|
[5744] | 41 | private bool validDragOperation;
|
---|
[4883] | 42 |
|
---|
[3393] | 43 | public new IItemCollection<IRun> Content {
|
---|
| 44 | get { return (IItemCollection<IRun>)base.Content; }
|
---|
[3277] | 45 | set { base.Content = value; }
|
---|
| 46 | }
|
---|
| 47 |
|
---|
[3614] | 48 | public RunCollection RunCollection {
|
---|
| 49 | get { return Content as RunCollection; }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[3277] | 52 | public ListView ItemsListView {
|
---|
| 53 | get { return itemsListView; }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[3260] | 56 | public RunCollectionView() {
|
---|
| 57 | InitializeComponent();
|
---|
[3505] | 58 | itemsGroupBox.Text = "Runs";
|
---|
[5237] | 59 | itemListViewItemMapping = new Dictionary<IRun, List<ListViewItem>>();
|
---|
[6760] | 60 | runCollectionModifiersListView.Evaluator = EvaluateModifications;
|
---|
[3260] | 61 | }
|
---|
[3277] | 62 |
|
---|
| 63 | protected override void DeregisterContentEvents() {
|
---|
[3280] | 64 | Content.ItemsAdded -= new CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
|
---|
| 65 | Content.ItemsRemoved -= new CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
|
---|
| 66 | Content.CollectionReset -= new CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
|
---|
[5237] | 67 | foreach (IRun run in itemListViewItemMapping.Keys) {
|
---|
| 68 | DeregisterItemEvents(run);
|
---|
| 69 | }
|
---|
[3277] | 70 | base.DeregisterContentEvents();
|
---|
[3260] | 71 | }
|
---|
[3277] | 72 | protected override void RegisterContentEvents() {
|
---|
| 73 | base.RegisterContentEvents();
|
---|
[3280] | 74 | Content.ItemsAdded += new CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
|
---|
| 75 | Content.ItemsRemoved += new CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
|
---|
| 76 | Content.CollectionReset += new CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
|
---|
[3277] | 77 | }
|
---|
[5237] | 78 | private void DeregisterItemEvents(IRun item) {
|
---|
| 79 | item.ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
|
---|
| 80 | item.ToStringChanged -= new EventHandler(Item_ToStringChanged);
|
---|
| 81 | item.Changed -= new EventHandler(Item_Changed);
|
---|
[3449] | 82 | }
|
---|
[5237] | 83 | private void RegisterItemEvents(IRun item) {
|
---|
| 84 | item.ItemImageChanged += new EventHandler(Item_ItemImageChanged);
|
---|
| 85 | item.ToStringChanged += new EventHandler(Item_ToStringChanged);
|
---|
| 86 | item.Changed += new EventHandler(Item_Changed);
|
---|
[3449] | 87 | }
|
---|
[3277] | 88 |
|
---|
[3507] | 89 | protected override void OnInitialized(EventArgs e) {
|
---|
| 90 | base.OnInitialized(e);
|
---|
| 91 | var viewTypes = MainFormManager.GetViewTypes(typeof(RunCollection), true);
|
---|
| 92 | foreach (Type viewType in viewTypes.OrderBy(x => ViewAttribute.GetViewName(x))) {
|
---|
| 93 | if ((viewType != typeof(ItemCollectionView<IRun>)) && (viewType != typeof(ViewHost))) {
|
---|
| 94 | ToolStripMenuItem menuItem = new ToolStripMenuItem();
|
---|
| 95 | menuItem.Text = ViewAttribute.GetViewName(viewType);
|
---|
| 96 | menuItem.Tag = viewType;
|
---|
| 97 | menuItem.Click += new EventHandler(menuItem_Click);
|
---|
| 98 | analyzeRunsToolStripDropDownButton.DropDownItems.Add(menuItem);
|
---|
| 99 | }
|
---|
| 100 | }
|
---|
| 101 | }
|
---|
| 102 |
|
---|
[3277] | 103 | protected override void OnContentChanged() {
|
---|
| 104 | base.OnContentChanged();
|
---|
[3775] | 105 |
|
---|
| 106 | string selectedName = null;
|
---|
| 107 | if ((itemsListView.SelectedItems.Count == 1) && (itemsListView.SelectedItems[0].Tag != null))
|
---|
| 108 | selectedName = ((IRun)itemsListView.SelectedItems[0].Tag).Name;
|
---|
| 109 |
|
---|
[5237] | 110 | itemsListView.Items.Clear();
|
---|
| 111 | itemListViewItemMapping.Clear();
|
---|
| 112 | RebuildImageList();
|
---|
[3277] | 113 | viewHost.Content = null;
|
---|
| 114 |
|
---|
| 115 | if (Content != null) {
|
---|
[3614] | 116 | if (RunCollection != null) {
|
---|
[3709] | 117 | if (!tabControl.TabPages.Contains(constraintPage))
|
---|
| 118 | tabControl.TabPages.Add(constraintPage);
|
---|
[3614] | 119 | runCollectionConstraintCollectionView.Content = RunCollection.Constraints;
|
---|
| 120 | runCollectionConstraintCollectionView.ReadOnly = itemsListView.Items.Count == 0;
|
---|
[6760] | 121 | if (!tabControl.TabPages.Contains(modifiersPage))
|
---|
| 122 | tabControl.TabPages.Add(modifiersPage);
|
---|
| 123 | runCollectionModifiersListView.Content = RunCollection.Modifiers;
|
---|
[3614] | 124 | }
|
---|
| 125 | foreach (IRun item in Content) {
|
---|
[3775] | 126 | ListViewItem listViewItem = CreateListViewItem(item);
|
---|
| 127 | AddListViewItem(listViewItem);
|
---|
| 128 | if ((selectedName != null) && item.Name.Equals(selectedName))
|
---|
| 129 | listViewItem.Selected = true;
|
---|
[3614] | 130 | }
|
---|
[4200] | 131 | AdjustListViewColumnSizes();
|
---|
[3709] | 132 | } else {
|
---|
| 133 | runCollectionConstraintCollectionView.Content = null;
|
---|
| 134 | if (tabControl.TabPages.Contains(constraintPage))
|
---|
| 135 | tabControl.TabPages.Remove(constraintPage);
|
---|
[6760] | 136 | if (tabControl.TabPages.Contains(modifiersPage))
|
---|
| 137 | tabControl.TabPages.Remove(modifiersPage);
|
---|
[3277] | 138 | }
|
---|
| 139 | }
|
---|
| 140 |
|
---|
[3904] | 141 | protected override void SetEnabledStateOfControls() {
|
---|
| 142 | base.SetEnabledStateOfControls();
|
---|
[3350] | 143 | if (Content == null) {
|
---|
[3507] | 144 | analyzeRunsToolStripDropDownButton.Enabled = false;
|
---|
[3614] | 145 | runCollectionConstraintCollectionView.ReadOnly = true;
|
---|
[3350] | 146 | itemsListView.Enabled = false;
|
---|
| 147 | detailsGroupBox.Enabled = false;
|
---|
| 148 | viewHost.Enabled = false;
|
---|
| 149 | removeButton.Enabled = false;
|
---|
[3716] | 150 | clearButton.Enabled = false;
|
---|
[3350] | 151 | } else {
|
---|
[3507] | 152 | analyzeRunsToolStripDropDownButton.Enabled = itemsListView.Items.Count > 0;
|
---|
[3614] | 153 | runCollectionConstraintCollectionView.ReadOnly = itemsListView.Items.Count == 0;
|
---|
[3350] | 154 | itemsListView.Enabled = true;
|
---|
[4099] | 155 | detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
|
---|
[3435] | 156 | removeButton.Enabled = itemsListView.SelectedItems.Count > 0 && !Content.IsReadOnly && !ReadOnly;
|
---|
[3716] | 157 | clearButton.Enabled = itemsListView.Items.Count > 0 && !Content.IsReadOnly && !ReadOnly;
|
---|
[3350] | 158 | viewHost.Enabled = true;
|
---|
| 159 | }
|
---|
| 160 | }
|
---|
| 161 |
|
---|
[4883] | 162 | private ListViewItem CreateListViewItem(IRun item) {
|
---|
[3277] | 163 | ListViewItem listViewItem = new ListViewItem();
|
---|
[5237] | 164 | if (item == null) {
|
---|
| 165 | listViewItem.Text = "null";
|
---|
[5287] | 166 | itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
|
---|
[5237] | 167 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
| 168 | } else {
|
---|
| 169 | listViewItem.Text = item.ToString();
|
---|
| 170 | listViewItem.ToolTipText = item.ItemName + ": " + item.ItemDescription;
|
---|
| 171 | itemsListView.SmallImageList.Images.Add(item.ItemImage);
|
---|
| 172 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
| 173 | listViewItem.Tag = item;
|
---|
[4200] | 174 |
|
---|
[5237] | 175 | if (item.Visible) {
|
---|
| 176 | listViewItem.Font = new Font(listViewItem.Font, FontStyle.Regular);
|
---|
| 177 | listViewItem.ForeColor = item.Color;
|
---|
| 178 | } else {
|
---|
| 179 | listViewItem.Font = new Font(listViewItem.Font, FontStyle.Italic);
|
---|
| 180 | listViewItem.ForeColor = Color.LightGray;
|
---|
| 181 | }
|
---|
[4200] | 182 | }
|
---|
[3277] | 183 | return listViewItem;
|
---|
| 184 | }
|
---|
[4883] | 185 | private void AddListViewItem(ListViewItem listViewItem) {
|
---|
[5371] | 186 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[3277] | 187 | itemsListView.Items.Add(listViewItem);
|
---|
[4883] | 188 | IRun run = listViewItem.Tag as IRun;
|
---|
| 189 | if (run != null) {
|
---|
[5237] | 190 | if (!itemListViewItemMapping.ContainsKey(run)) {
|
---|
| 191 | itemListViewItemMapping.Add(run, new List<ListViewItem>());
|
---|
| 192 | RegisterItemEvents(run);
|
---|
| 193 | }
|
---|
| 194 | itemListViewItemMapping[run].Add(listViewItem);
|
---|
[4883] | 195 | }
|
---|
[3277] | 196 | }
|
---|
[4883] | 197 | private void RemoveListViewItem(ListViewItem listViewItem) {
|
---|
[5371] | 198 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[4883] | 199 | IRun run = listViewItem.Tag as IRun;
|
---|
| 200 | if (run != null) {
|
---|
[5237] | 201 | itemListViewItemMapping[run].Remove(listViewItem);
|
---|
| 202 | if (itemListViewItemMapping[run].Count == 0) {
|
---|
| 203 | DeregisterItemEvents(run);
|
---|
| 204 | itemListViewItemMapping.Remove(run);
|
---|
[4883] | 205 | }
|
---|
| 206 | }
|
---|
[3277] | 207 | listViewItem.Remove();
|
---|
| 208 | }
|
---|
[4883] | 209 | private void UpdateListViewItemImage(ListViewItem listViewItem) {
|
---|
[5371] | 210 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[5237] | 211 | IRun item = listViewItem.Tag as IRun;
|
---|
[3341] | 212 | int i = listViewItem.ImageIndex;
|
---|
[5839] | 213 | itemsListView.SmallImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
|
---|
[3341] | 214 | listViewItem.ImageIndex = -1;
|
---|
| 215 | listViewItem.ImageIndex = i;
|
---|
| 216 | }
|
---|
[4883] | 217 | private void UpdateListViewItemText(ListViewItem listViewItem) {
|
---|
[5371] | 218 | if (listViewItem == null) throw new ArgumentNullException();
|
---|
[5237] | 219 | IRun item = listViewItem.Tag as IRun;
|
---|
| 220 | listViewItem.Text = item == null ? "null" : item.ToString();
|
---|
| 221 | listViewItem.ToolTipText = item == null ? string.Empty : item.ItemName + ": " + item.ItemDescription;
|
---|
[3277] | 222 | }
|
---|
[5237] | 223 | private IEnumerable<ListViewItem> GetListViewItemsForItem(IRun item) {
|
---|
| 224 | if (item == null) {
|
---|
| 225 | List<ListViewItem> listViewItems = new List<ListViewItem>();
|
---|
| 226 | foreach (ListViewItem listViewItem in itemsListView.Items) {
|
---|
| 227 | if (listViewItem.Tag == null) listViewItems.Add(listViewItem);
|
---|
| 228 | }
|
---|
| 229 | return listViewItems;
|
---|
| 230 | } else {
|
---|
[5302] | 231 | List<ListViewItem> listViewItems = null;
|
---|
| 232 | itemListViewItemMapping.TryGetValue(item, out listViewItems);
|
---|
| 233 | return listViewItems == null ? Enumerable.Empty<ListViewItem>() : listViewItems;
|
---|
[5237] | 234 | }
|
---|
[3277] | 235 | }
|
---|
| 236 |
|
---|
| 237 | #region ListView Events
|
---|
[4883] | 238 | private void itemsListView_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
[3456] | 239 | removeButton.Enabled = itemsListView.SelectedItems.Count > 0 && (Content != null) && !Content.IsReadOnly && !ReadOnly;
|
---|
[3829] | 240 | AdjustListViewColumnSizes();
|
---|
[4096] | 241 | if (showDetailsCheckBox.Checked) {
|
---|
| 242 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
| 243 | IRun item = (IRun)itemsListView.SelectedItems[0].Tag;
|
---|
| 244 | detailsGroupBox.Enabled = true;
|
---|
| 245 | viewHost.Content = item;
|
---|
| 246 | } else {
|
---|
| 247 | viewHost.Content = null;
|
---|
| 248 | detailsGroupBox.Enabled = false;
|
---|
| 249 | }
|
---|
[3277] | 250 | }
|
---|
| 251 | }
|
---|
[4883] | 252 | private void itemsListView_KeyDown(object sender, KeyEventArgs e) {
|
---|
[3277] | 253 | if (e.KeyCode == Keys.Delete) {
|
---|
[3435] | 254 | if ((itemsListView.SelectedItems.Count > 0) && !Content.IsReadOnly && !ReadOnly) {
|
---|
[3277] | 255 | foreach (ListViewItem item in itemsListView.SelectedItems)
|
---|
[3280] | 256 | Content.Remove((IRun)item.Tag);
|
---|
[3277] | 257 | }
|
---|
| 258 | }
|
---|
| 259 | }
|
---|
[4883] | 260 | private void itemsListView_DoubleClick(object sender, EventArgs e) {
|
---|
[3277] | 261 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
[5237] | 262 | IRun item = itemsListView.SelectedItems[0].Tag as IRun;
|
---|
| 263 | if (item != null) {
|
---|
| 264 | IContentView view = MainFormManager.MainForm.ShowContent(item);
|
---|
| 265 | if (view != null) {
|
---|
| 266 | view.ReadOnly = ReadOnly;
|
---|
| 267 | view.Locked = Locked;
|
---|
| 268 | }
|
---|
[3416] | 269 | }
|
---|
[3277] | 270 | }
|
---|
| 271 | }
|
---|
[4883] | 272 | private void itemsListView_ItemDrag(object sender, ItemDragEventArgs e) {
|
---|
[3432] | 273 | if (!Locked) {
|
---|
[5702] | 274 | List<IRun> items = new List<IRun>();
|
---|
| 275 | foreach (ListViewItem listViewItem in itemsListView.SelectedItems) {
|
---|
| 276 | IRun item = listViewItem.Tag as IRun;
|
---|
| 277 | if (item != null) items.Add(item);
|
---|
| 278 | }
|
---|
| 279 |
|
---|
| 280 | if (items.Count > 0) {
|
---|
[5237] | 281 | DataObject data = new DataObject();
|
---|
[5837] | 282 | if (items.Count == 1) data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, items[0]);
|
---|
| 283 | else data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, items);
|
---|
[5237] | 284 | if (Content.IsReadOnly || ReadOnly) {
|
---|
| 285 | DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
|
---|
| 286 | } else {
|
---|
| 287 | DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link | DragDropEffects.Move);
|
---|
[5744] | 288 | if (result.HasFlag(DragDropEffects.Move)) {
|
---|
[5702] | 289 | foreach (IRun item in items) Content.Remove(item);
|
---|
| 290 | }
|
---|
[5237] | 291 | }
|
---|
[3432] | 292 | }
|
---|
[3277] | 293 | }
|
---|
| 294 | }
|
---|
[5744] | 295 | private void itemsListView_DragEnter(object sender, DragEventArgs e) {
|
---|
| 296 | validDragOperation = false;
|
---|
[5837] | 297 | if (!Content.IsReadOnly && !ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IRun)) {
|
---|
[5744] | 298 | validDragOperation = true;
|
---|
[5837] | 299 | } else if (!Content.IsReadOnly && !ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IEnumerable)) {
|
---|
[5744] | 300 | validDragOperation = true;
|
---|
[5837] | 301 | IEnumerable items = (IEnumerable)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
[5744] | 302 | foreach (object item in items)
|
---|
| 303 | validDragOperation = validDragOperation && (item is IRun);
|
---|
| 304 | }
|
---|
| 305 | }
|
---|
| 306 | private void itemsListView_DragOver(object sender, DragEventArgs e) {
|
---|
[3277] | 307 | e.Effect = DragDropEffects.None;
|
---|
[5744] | 308 | if (validDragOperation) {
|
---|
[3694] | 309 | if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link; // ALT key
|
---|
[3277] | 310 | else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move; // SHIFT key
|
---|
[5744] | 311 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
|
---|
| 312 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
|
---|
| 313 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
|
---|
[3277] | 314 | }
|
---|
| 315 | }
|
---|
[4883] | 316 | private void itemsListView_DragDrop(object sender, DragEventArgs e) {
|
---|
[3277] | 317 | if (e.Effect != DragDropEffects.None) {
|
---|
[5837] | 318 | if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IRun) {
|
---|
| 319 | IRun item = (IRun)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
[5744] | 320 | Content.Add(e.Effect.HasFlag(DragDropEffects.Copy) ? (IRun)item.Clone() : item);
|
---|
[5837] | 321 | } else if (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IEnumerable) {
|
---|
| 322 | IEnumerable<IRun> items = ((IEnumerable)e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat)).Cast<IRun>();
|
---|
[6760] | 323 | if (e.Effect.HasFlag(DragDropEffects.Copy)) {
|
---|
| 324 | Cloner cloner = new Cloner();
|
---|
| 325 | items = items.Select(x => cloner.Clone(x));
|
---|
| 326 | }
|
---|
[5744] | 327 | foreach (IRun item in items)
|
---|
[6760] | 328 | Content.Add(item);
|
---|
[5702] | 329 | }
|
---|
[3277] | 330 | }
|
---|
| 331 | }
|
---|
| 332 | #endregion
|
---|
| 333 |
|
---|
| 334 | #region Button Events
|
---|
[4883] | 335 | private void menuItem_Click(object sender, EventArgs e) {
|
---|
[3507] | 336 | ToolStripMenuItem menuItem = (ToolStripMenuItem)sender;
|
---|
[3796] | 337 | Type viewType = (Type)menuItem.Tag;
|
---|
| 338 | IContentView view = MainFormManager.MainForm.ShowContent(Content, viewType);
|
---|
[3507] | 339 | if (view != null) {
|
---|
| 340 | view.Locked = Locked;
|
---|
| 341 | view.ReadOnly = ReadOnly;
|
---|
| 342 | }
|
---|
| 343 | }
|
---|
[4883] | 344 | private void removeButton_Click(object sender, EventArgs e) {
|
---|
[3277] | 345 | if (itemsListView.SelectedItems.Count > 0) {
|
---|
| 346 | foreach (ListViewItem item in itemsListView.SelectedItems)
|
---|
[3280] | 347 | Content.Remove((IRun)item.Tag);
|
---|
[3277] | 348 | itemsListView.SelectedItems.Clear();
|
---|
| 349 | }
|
---|
| 350 | }
|
---|
[4883] | 351 | private void clearButton_Click(object sender, EventArgs e) {
|
---|
[3716] | 352 | Content.Clear();
|
---|
| 353 | }
|
---|
[3277] | 354 | #endregion
|
---|
| 355 |
|
---|
[6760] | 356 | #region Control Events
|
---|
[4883] | 357 | private void showDetailsCheckBox_CheckedChanged(object sender, EventArgs e) {
|
---|
[4096] | 358 | if (showDetailsCheckBox.Checked) {
|
---|
| 359 | splitContainer.Panel2Collapsed = false;
|
---|
| 360 | detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
|
---|
| 361 | viewHost.Content = itemsListView.SelectedItems.Count == 1 ? (IRun)itemsListView.SelectedItems[0].Tag : null;
|
---|
| 362 | } else {
|
---|
| 363 | splitContainer.Panel2Collapsed = true;
|
---|
| 364 | viewHost.Content = null;
|
---|
| 365 | }
|
---|
| 366 | }
|
---|
[6760] | 367 | private void EvaluateModifications() {
|
---|
| 368 | if (RunCollection == null)
|
---|
| 369 | return;
|
---|
| 370 | ReadOnly = true;
|
---|
| 371 | try {
|
---|
| 372 | RunCollection.Modify();
|
---|
| 373 | } finally {
|
---|
| 374 | ReadOnly = false;
|
---|
| 375 | }
|
---|
| 376 | }
|
---|
[4096] | 377 | #endregion
|
---|
| 378 |
|
---|
[3277] | 379 | #region Content Events
|
---|
[4883] | 380 | private void Content_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3277] | 381 | if (InvokeRequired)
|
---|
[3280] | 382 | Invoke(new CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded), sender, e);
|
---|
[3449] | 383 | else {
|
---|
[4200] | 384 | foreach (IRun item in e.Items)
|
---|
[3277] | 385 | AddListViewItem(CreateListViewItem(item));
|
---|
[4200] | 386 |
|
---|
| 387 | AdjustListViewColumnSizes();
|
---|
[3507] | 388 | analyzeRunsToolStripDropDownButton.Enabled = itemsListView.Items.Count > 0;
|
---|
[3716] | 389 | clearButton.Enabled = itemsListView.Items.Count > 0 && !Content.IsReadOnly && !ReadOnly;
|
---|
[3614] | 390 | runCollectionConstraintCollectionView.ReadOnly = itemsListView.Items.Count == 0;
|
---|
[3449] | 391 | }
|
---|
[3277] | 392 | }
|
---|
[4883] | 393 | private void Content_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3277] | 394 | if (InvokeRequired)
|
---|
[3280] | 395 | Invoke(new CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved), sender, e);
|
---|
[3277] | 396 | else {
|
---|
[3280] | 397 | foreach (IRun item in e.Items) {
|
---|
[4203] | 398 | //remove only the first matching ListViewItem, because the IRun could be contained multiple times in the ItemCollection
|
---|
[4883] | 399 | ListViewItem listViewItem = GetListViewItemsForItem(item).FirstOrDefault();
|
---|
| 400 | if (listViewItem != null) RemoveListViewItem(listViewItem);
|
---|
[3277] | 401 | }
|
---|
[5237] | 402 | RebuildImageList();
|
---|
[3507] | 403 | analyzeRunsToolStripDropDownButton.Enabled = itemsListView.Items.Count > 0;
|
---|
[3716] | 404 | clearButton.Enabled = itemsListView.Items.Count > 0 && !Content.IsReadOnly && !ReadOnly;
|
---|
[3614] | 405 | runCollectionConstraintCollectionView.ReadOnly = itemsListView.Items.Count == 0;
|
---|
[3277] | 406 | }
|
---|
| 407 | }
|
---|
[4883] | 408 | private void Content_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3277] | 409 | if (InvokeRequired)
|
---|
[3280] | 410 | Invoke(new CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset), sender, e);
|
---|
[3277] | 411 | else {
|
---|
[3280] | 412 | foreach (IRun item in e.OldItems) {
|
---|
[5237] | 413 | //remove only the first matching ListViewItem, because the IRun could be contained multiple times in the ItemCollection
|
---|
[4883] | 414 | ListViewItem listViewItem = GetListViewItemsForItem(item).FirstOrDefault();
|
---|
| 415 | if (listViewItem != null) RemoveListViewItem(listViewItem);
|
---|
[3277] | 416 | }
|
---|
[5237] | 417 | RebuildImageList();
|
---|
[4200] | 418 | foreach (IRun item in e.Items)
|
---|
[3277] | 419 | AddListViewItem(CreateListViewItem(item));
|
---|
[4200] | 420 |
|
---|
| 421 | AdjustListViewColumnSizes();
|
---|
[3507] | 422 | analyzeRunsToolStripDropDownButton.Enabled = itemsListView.Items.Count > 0;
|
---|
[3716] | 423 | clearButton.Enabled = itemsListView.Items.Count > 0 && !Content.IsReadOnly && !ReadOnly;
|
---|
[3614] | 424 | runCollectionConstraintCollectionView.ReadOnly = itemsListView.Items.Count == 0;
|
---|
[3277] | 425 | }
|
---|
| 426 | }
|
---|
| 427 | #endregion
|
---|
| 428 |
|
---|
| 429 | #region Item Events
|
---|
[4883] | 430 | private void Item_ItemImageChanged(object sender, EventArgs e) {
|
---|
[3341] | 431 | if (InvokeRequired)
|
---|
| 432 | Invoke(new EventHandler(Item_ItemImageChanged), sender, e);
|
---|
| 433 | else {
|
---|
| 434 | IRun item = (IRun)sender;
|
---|
| 435 | foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
|
---|
| 436 | UpdateListViewItemImage(listViewItem);
|
---|
| 437 | }
|
---|
| 438 | }
|
---|
[4883] | 439 | private void Item_ToStringChanged(object sender, EventArgs e) {
|
---|
[3277] | 440 | if (InvokeRequired)
|
---|
| 441 | Invoke(new EventHandler(Item_ToStringChanged), sender, e);
|
---|
| 442 | else {
|
---|
[3280] | 443 | IRun item = (IRun)sender;
|
---|
[3277] | 444 | foreach (ListViewItem listViewItem in GetListViewItemsForItem(item))
|
---|
[3341] | 445 | UpdateListViewItemText(listViewItem);
|
---|
[3829] | 446 | AdjustListViewColumnSizes();
|
---|
[3277] | 447 | }
|
---|
| 448 | }
|
---|
[5237] | 449 | private void Item_Changed(object sender, EventArgs e) {
|
---|
[3632] | 450 | if (InvokeRequired)
|
---|
[5237] | 451 | this.Invoke(new EventHandler(Item_Changed), sender, e);
|
---|
[3632] | 452 | else {
|
---|
| 453 | IRun run = (IRun)sender;
|
---|
| 454 | UpdateRun(run);
|
---|
| 455 | }
|
---|
[3614] | 456 | }
|
---|
| 457 |
|
---|
[4883] | 458 | private void UpdateRun(IRun run) {
|
---|
[3507] | 459 | foreach (ListViewItem listViewItem in GetListViewItemsForItem(run)) {
|
---|
| 460 | if (run.Visible) {
|
---|
| 461 | listViewItem.Font = new Font(listViewItem.Font, FontStyle.Regular);
|
---|
| 462 | listViewItem.ForeColor = run.Color;
|
---|
| 463 | } else {
|
---|
| 464 | listViewItem.Font = new Font(listViewItem.Font, FontStyle.Italic);
|
---|
| 465 | listViewItem.ForeColor = Color.LightGray;
|
---|
| 466 | }
|
---|
| 467 | }
|
---|
| 468 | }
|
---|
[3277] | 469 | #endregion
|
---|
[3716] | 470 |
|
---|
[3829] | 471 | #region Helpers
|
---|
[4883] | 472 | private void AdjustListViewColumnSizes() {
|
---|
[3829] | 473 | if (itemsListView.Items.Count > 0) {
|
---|
| 474 | for (int i = 0; i < itemsListView.Columns.Count; i++) {
|
---|
| 475 | itemsListView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
|
---|
| 476 | }
|
---|
| 477 | }
|
---|
| 478 | }
|
---|
[5237] | 479 | private void RebuildImageList() {
|
---|
| 480 | itemsListView.SmallImageList.Images.Clear();
|
---|
[5239] | 481 | foreach (ListViewItem listViewItem in itemsListView.Items) {
|
---|
| 482 | IRun item = listViewItem.Tag as IRun;
|
---|
[5287] | 483 | itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
|
---|
[5239] | 484 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
[5237] | 485 | }
|
---|
| 486 | }
|
---|
[3829] | 487 | #endregion
|
---|
[3260] | 488 | }
|
---|
| 489 | }
|
---|