1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
//
// System.ComponentModel.Design.DesignerOptionService
//
// Authors:
// Ivan N. Zlatev (contact i-nZ.net)
//
// (C) 2006-2007 Ivan N. Zlatev
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections;
using System.Globalization;
using System.ComponentModel;
namespace System.ComponentModel.Design
{
public abstract class DesignerOptionService : IDesignerOptionService
{
[MonoTODO ("implement own TypeConverter")]
[TypeConverter (typeof (TypeConverter))]
[Editor ("", "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
public sealed class DesignerOptionCollection : IList, ICollection, IEnumerable
{
// PropertyDescriptor objects are taken directly from the value passed to the CreateOptionCollection method
// and are wrapped in an additional property descriptor that hides the value object from the user. This means
// that any value may be passed into the component parameter of the various PropertyDescriptor methods. The
// value is not recognized and is replaced with the correct value internally.
//
public sealed class WrappedPropertyDescriptor : PropertyDescriptor
{
private PropertyDescriptor _property;
private object _component;
public WrappedPropertyDescriptor (PropertyDescriptor property, object component) : base (property.Name, new Attribute[0])
{
_property = property;
_component = component;
}
public override object GetValue (object ignored)
{
return _property.GetValue (_component);
}
public override void SetValue (object ignored, object value)
{
_property.SetValue (_component, value);
}
public override bool CanResetValue (object ignored)
{
return _property.CanResetValue (_component);
}
public override void ResetValue (object ignored)
{
_property.ResetValue (_component);
}
public override bool ShouldSerializeValue (object ignored)
{
return _property.ShouldSerializeValue (_component);
}
public override AttributeCollection Attributes {
get { return _property.Attributes; }
}
public override bool IsReadOnly {
get { return _property.IsReadOnly; }
}
public override Type ComponentType {
get { return _property.ComponentType; }
}
public override Type PropertyType {
get { return _property.PropertyType; }
}
} // WrappedPropertyDescriptor
private string _name;
private object _propertiesProvider;
private DesignerOptionCollection _parent;
private ArrayList _children;
private DesignerOptionService _optionService;
internal DesignerOptionCollection (DesignerOptionCollection parent, string name, object propertiesProvider, DesignerOptionService service)
{
_name = name;
_propertiesProvider = propertiesProvider;
_parent = parent;
if (parent != null) {
if (parent._children == null)
parent._children = new ArrayList ();
parent._children.Add (this);
}
_children = new ArrayList ();
_optionService = service;
service.PopulateOptionCollection (this);
}
public bool ShowDialog ()
{
return _optionService.ShowDialog (this, _propertiesProvider);
}
public DesignerOptionCollection this[int index] {
get { return (DesignerOptionCollection) _children[index]; }
}
public DesignerOptionCollection this[string index] {
get {
foreach (DesignerOptionCollection dc in _children) {
if (String.Compare (dc.Name, index, true, CultureInfo.InvariantCulture) == 0)
return dc;
}
return null;
}
}
public string Name {
get { return _name; }
}
public int Count {
get {
if (_children != null)
return _children.Count;
return 0;
}
}
public DesignerOptionCollection Parent {
get { return _parent; }
}
public PropertyDescriptorCollection Properties {
get {
// TypeDescriptor.GetProperties gets only the public properties.
//
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties (_propertiesProvider);
ArrayList wrappedProperties = new ArrayList (properties.Count);
foreach (PropertyDescriptor pd in properties)
wrappedProperties.Add (new WrappedPropertyDescriptor (pd, _propertiesProvider));
PropertyDescriptor[] propertyArray = (PropertyDescriptor[]) wrappedProperties.ToArray (typeof (PropertyDescriptor));
return new PropertyDescriptorCollection (propertyArray);
}
}
public IEnumerator GetEnumerator ()
{
return _children.GetEnumerator ();
}
public int IndexOf (DesignerOptionCollection item)
{
return _children.IndexOf (item);
}
public void CopyTo (Array array, int index)
{
_children.CopyTo (array, index);
}
bool IList.IsFixedSize {
get { return true; }
}
bool IList.IsReadOnly {
get { return true; }
}
object IList.this[int index] {
get { return this[index]; }
set { throw new NotSupportedException (); }
}
bool ICollection.IsSynchronized {
get { return false; }
}
object ICollection.SyncRoot {
get { return this; }
}
bool IList.Contains (object item)
{
return _children.Contains (item);
}
int IList.IndexOf (object item)
{
return _children.IndexOf (item);
}
int IList.Add (object item)
{
throw new NotSupportedException ();
}
void IList.Remove (object item)
{
throw new NotSupportedException ();
}
void IList.RemoveAt (int index)
{
throw new NotSupportedException ();
}
void IList.Insert (int index, object item)
{
throw new NotSupportedException ();
}
void IList.Clear ()
{
throw new NotSupportedException ();
}
} // DesignerOptionCollection
private DesignerOptionCollection _options;
protected internal DesignerOptionService ()
{
}
protected DesignerOptionCollection CreateOptionCollection (DesignerOptionCollection parent, string name, Object value)
{
if (name == null)
throw new ArgumentNullException ("name");
if (parent == null)
throw new ArgumentNullException ("parent");
if (name == String.Empty)
throw new ArgumentException ("name.Length == 0");
return new DesignerOptionCollection (parent, name, value, this);
}
protected virtual bool ShowDialog (DesignerOptionCollection options, object optionObject)
{
return false;
}
protected virtual void PopulateOptionCollection (DesignerOptionCollection options)
{
}
public DesignerOptionCollection Options {
get {
if (_options == null)
_options = new DesignerOptionCollection (null, String.Empty, null, this);
return _options;
}
}
object IDesignerOptionService.GetOptionValue (string pageName, string valueName)
{
if (pageName == null)
throw new ArgumentNullException ("pageName");
if (valueName == null)
throw new ArgumentNullException ("valueName");
PropertyDescriptor property = GetOptionProperty (pageName, valueName);
if (property != null)
return property.GetValue (null);
return null;
}
void IDesignerOptionService.SetOptionValue (string pageName, string valueName, object value)
{
if (pageName == null)
throw new ArgumentNullException ("pageName");
if (valueName == null)
throw new ArgumentNullException ("valueName");
PropertyDescriptor property = GetOptionProperty (pageName, valueName);
if (property != null)
property.SetValue (null, value);
}
// Go to the page and get the property associated with the option name.
//
private PropertyDescriptor GetOptionProperty (string pageName, string valueName)
{
string[] pages = pageName.Split (new char[] { '\\' });
DesignerOptionCollection options = this.Options;
foreach (string page in pages) {
options = options[page];
if (options == null)
return null;
}
return options.Properties[valueName];
}
}
}
|