Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Core/3.3/Collections/ReadOnlyCheckedItemList.cs @ 17331

Last change on this file since 17331 was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 3.8 KB
RevLine 
[3628]1#region License Information
2/* HeuristicLab
[17181]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3628]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
22using System;
23using System.Collections.Generic;
[17147]24using HEAL.Attic;
[3628]25using HeuristicLab.Collections;
[4722]26using HeuristicLab.Common;
[3628]27
28namespace HeuristicLab.Core {
[17097]29  [StorableType("BE738F46-3864-42BB-BD29-F3E933B0AC06")]
[3822]30  [Item("ReadOnlyCheckedItemList", "Represents a read-only list of checked items.")]
[3628]31  public class ReadOnlyCheckedItemList<T> : ReadOnlyItemList<T>, ICheckedItemList<T> where T : class, IItem {
32    private CheckedItemList<T> CheckedItemList {
33      get { return (CheckedItemList<T>)base.list; }
34    }
[4068]35
[4722]36    [StorableConstructor]
[17097]37    protected ReadOnlyCheckedItemList(StorableConstructorFlag _) : base(_) { }
[4722]38    protected ReadOnlyCheckedItemList(ReadOnlyCheckedItemList<T> original, Cloner cloner)
39      : base(original, cloner) {
40      CheckedItemList.CheckedItemsChanged += new CollectionItemsChangedEventHandler<IndexedItem<T>>(list_CheckedItemsChanged);
41    }
[3628]42    public ReadOnlyCheckedItemList() : base(new CheckedItemList<T>()) { }
[4068]43    public ReadOnlyCheckedItemList(ICheckedItemList<T> list)
44      : base(list) {
[4290]45      CheckedItemList.CheckedItemsChanged += new CollectionItemsChangedEventHandler<IndexedItem<T>>(list_CheckedItemsChanged);
[3628]46    }
47
[4290]48    [StorableHook(HookType.AfterDeserialization)]
[4722]49    private void AfterDeserialization() {
[4290]50      CheckedItemList.CheckedItemsChanged += new CollectionItemsChangedEventHandler<IndexedItem<T>>(list_CheckedItemsChanged);
51    }
[3628]52
[4722]53    public override IDeepCloneable Clone(Cloner cloner) {
54      return new ReadOnlyCheckedItemList<T>(this, cloner);
[4290]55    }
56
57
[3628]58    #region ICheckedItemList<T> Members
59    public event CollectionItemsChangedEventHandler<IndexedItem<T>> CheckedItemsChanged;
60    protected virtual void list_CheckedItemsChanged(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
61      var handler = CheckedItemsChanged;
62      if (handler != null)
63        handler(this, e);
64    }
[4068]65
[3628]66    public IEnumerable<IndexedItem<T>> CheckedItems {
67      get { return CheckedItemList.CheckedItems; }
68    }
69
70    public bool ItemChecked(T item) {
71      return CheckedItemList.ItemChecked(item);
72    }
73
[17147]74    public bool ItemChecked(int itemIndex) {
75      return CheckedItemList.ItemChecked(itemIndex);
76    }
77
[3628]78    public void SetItemCheckedState(T item, bool checkedState) {
79      CheckedItemList.SetItemCheckedState(item, checkedState);
80    }
81
[17147]82    public void SetItemCheckedState(IEnumerable<T> items, bool checkedState) {
83      CheckedItemList.SetItemCheckedState(items, checkedState);
84    }
85
86    public void SetItemCheckedState(int itemIndex, bool checkedState) {
87      CheckedItemList.SetItemCheckedState(itemIndex, checkedState);
88    }
89
90    public void SetItemCheckedState(IEnumerable<int> itemIndices, bool checkedState) {
91      CheckedItemList.SetItemCheckedState(itemIndices, checkedState);
92    }
93
[3628]94    public void Add(T item, bool checkedState) {
95      throw new NotSupportedException();
96    }
97
98    public void Insert(int index, T item, bool checkedState) {
99      throw new NotSupportedException();
100    }
101
102    #endregion
103  }
104}
Note: See TracBrowser for help on using the repository browser.