[9102] | 1 | ///
|
---|
| 2 | /// This file is part of ILNumerics Community Edition.
|
---|
| 3 | ///
|
---|
| 4 | /// ILNumerics Community Edition - high performance computing for applications.
|
---|
| 5 | /// Copyright (C) 2006 - 2012 Haymo Kutschbach, http://ilnumerics.net
|
---|
| 6 | ///
|
---|
| 7 | /// ILNumerics Community Edition is free software: you can redistribute it and/or modify
|
---|
| 8 | /// it under the terms of the GNU General Public License version 3 as published by
|
---|
| 9 | /// the Free Software Foundation.
|
---|
| 10 | ///
|
---|
| 11 | /// ILNumerics Community Edition is distributed in the hope that it will be useful,
|
---|
| 12 | /// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | /// GNU General Public License for more details.
|
---|
| 15 | ///
|
---|
| 16 | /// You should have received a copy of the GNU General Public License
|
---|
| 17 | /// along with ILNumerics Community Edition. See the file License.txt in the root
|
---|
| 18 | /// of your distribution package. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | ///
|
---|
| 20 | /// In addition this software uses the following components and/or licenses:
|
---|
| 21 | ///
|
---|
| 22 | /// =================================================================================
|
---|
| 23 | /// The Open Toolkit Library License
|
---|
| 24 | ///
|
---|
| 25 | /// Copyright (c) 2006 - 2009 the Open Toolkit library.
|
---|
| 26 | ///
|
---|
| 27 | /// Permission is hereby granted, free of charge, to any person obtaining a copy
|
---|
| 28 | /// of this software and associated documentation files (the "Software"), to deal
|
---|
| 29 | /// in the Software without restriction, including without limitation the rights to
|
---|
| 30 | /// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
---|
| 31 | /// the Software, and to permit persons to whom the Software is furnished to do
|
---|
| 32 | /// so, subject to the following conditions:
|
---|
| 33 | ///
|
---|
| 34 | /// The above copyright notice and this permission notice shall be included in all
|
---|
| 35 | /// copies or substantial portions of the Software.
|
---|
| 36 | ///
|
---|
| 37 | /// =================================================================================
|
---|
| 38 | ///
|
---|
| 39 |
|
---|
| 40 | using System;
|
---|
| 41 | using System.Collections.Generic;
|
---|
| 42 | using System.Text;
|
---|
| 43 | using ILNumerics.Exceptions;
|
---|
| 44 | using ILNumerics.Drawing;
|
---|
| 45 |
|
---|
| 46 | namespace ILNumerics.Drawing.Collections {
|
---|
| 47 |
|
---|
| 48 | /// <summary>
|
---|
| 49 | /// Collection of all subfigures contained in an ILFigureControl
|
---|
| 50 | /// </summary>
|
---|
| 51 | [Serializable]
|
---|
| 52 | public class ILSubfigureCollection {
|
---|
| 53 |
|
---|
| 54 | #region attributes
|
---|
| 55 | private Dictionary<int,ILSubfigure> m_subfigures;
|
---|
| 56 | #endregion
|
---|
| 57 |
|
---|
| 58 | #region constructor
|
---|
| 59 | /// <summary>
|
---|
| 60 | /// create new ILSubfigureCollection
|
---|
| 61 | /// </summary>
|
---|
| 62 | public ILSubfigureCollection() {
|
---|
| 63 | m_subfigures = new Dictionary<int,ILSubfigure>();
|
---|
| 64 | }
|
---|
| 65 | #endregion
|
---|
| 66 |
|
---|
| 67 | #region indexer
|
---|
| 68 | /// <summary>
|
---|
| 69 | /// Get / set subfigure by key
|
---|
| 70 | /// </summary>
|
---|
| 71 | /// <param name="key">key of subfigure</param>
|
---|
| 72 | /// <returns>subfigure specified by key</returns>
|
---|
| 73 | /// <value>subfigure to be stored into the collection</value>
|
---|
| 74 | public ILSubfigure this[int key] {
|
---|
| 75 | get {
|
---|
| 76 | if (!m_subfigures.ContainsKey(key))
|
---|
| 77 | throw new ILArgumentException("ILSubfigureCollection: subfigure key not found!");
|
---|
| 78 | return m_subfigures[key];
|
---|
| 79 | }
|
---|
| 80 | set {
|
---|
| 81 | if (!m_subfigures.ContainsKey(key))
|
---|
| 82 | m_subfigures.Add(key, value);
|
---|
| 83 | else
|
---|
| 84 | m_subfigures[key] = value;
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 | #endregion
|
---|
| 88 |
|
---|
| 89 | #region properties
|
---|
| 90 | /// <summary>
|
---|
| 91 | /// number of subfigures currently stored in the collection
|
---|
| 92 | /// </summary>
|
---|
| 93 | public int Count {
|
---|
| 94 | get {
|
---|
| 95 | return m_subfigures.Count;
|
---|
| 96 | }
|
---|
| 97 | }
|
---|
| 98 | #endregion
|
---|
| 99 |
|
---|
| 100 | #region public interface
|
---|
| 101 | /// <summary>
|
---|
| 102 | /// Add subfigure to subfigure collection
|
---|
| 103 | /// </summary>
|
---|
| 104 | /// <param name="key">the key to identify the new subfigure</param>
|
---|
| 105 | /// <param name="subfigure">the new subfigure</param>
|
---|
| 106 | /// <remarks>If a subfigure with the key already exist in the collection,
|
---|
| 107 | /// it will be replaced by the new subfigure</remarks>
|
---|
| 108 | public void Add(int key, ILSubfigure subfigure) {
|
---|
| 109 | if (!m_subfigures.ContainsKey(key))
|
---|
| 110 | m_subfigures.Add(key,subfigure);
|
---|
| 111 | else
|
---|
| 112 | m_subfigures[key] = subfigure;
|
---|
| 113 | }
|
---|
| 114 | /// <summary>
|
---|
| 115 | /// get all keys for all subfigures as key collection
|
---|
| 116 | /// </summary>
|
---|
| 117 | public Dictionary<int,ILSubfigure>.KeyCollection Keys {
|
---|
| 118 | get {
|
---|
| 119 | return m_subfigures.Keys;
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 | /// <summary>
|
---|
| 123 | /// Get all subfigures as value collection
|
---|
| 124 | /// </summary>
|
---|
| 125 | public Dictionary<int, ILSubfigure>.ValueCollection Figures {
|
---|
| 126 | get {
|
---|
| 127 | return m_subfigures.Values;
|
---|
| 128 | }
|
---|
| 129 | }
|
---|
| 130 | /// <summary>
|
---|
| 131 | /// Determine if a subfigure with the key given exist
|
---|
| 132 | /// </summary>
|
---|
| 133 | /// <param name="key">key of subfigure</param>
|
---|
| 134 | /// <returns>true if a subfigure with the given key exists, false otherwise</returns>
|
---|
| 135 | public bool Contains (int key) {
|
---|
| 136 | return m_subfigures.ContainsKey(key);
|
---|
| 137 | }
|
---|
| 138 | /// <summary>
|
---|
| 139 | /// Reduce the number of subfigures to the given number
|
---|
| 140 | /// </summary>
|
---|
| 141 | /// <param name="number">number of subfigures to remain</param>
|
---|
| 142 | /// <remarks>If more than number subfigures exist, they will be removed. Highest keys will be removed first.</remarks>
|
---|
| 143 | public void Purge (int number) {
|
---|
| 144 | int[] keys = new int[m_subfigures.Count];
|
---|
| 145 | m_subfigures.Keys.CopyTo(keys,0);
|
---|
| 146 | System.Array.Sort(keys);
|
---|
| 147 | for (int i = number; i < keys.Length; i++) {
|
---|
| 148 | m_subfigures.Remove(keys[i]);
|
---|
| 149 | }
|
---|
| 150 | }
|
---|
| 151 | #endregion
|
---|
| 152 | }
|
---|
| 153 | }
|
---|