| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- //
- // System.Drawing.Design.ToolboxItem.cs
- //
- // Authors:
- // Alejandro Sánchez Acosta
- // Andreas Nahr ([email protected])
- //
- // (C) Alejandro Sánchez Acosta
- // (C) 2003 Andreas Nahr
- //
- using System.Collections;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- using System.Drawing;
- using System.Reflection;
- using System.Runtime.Serialization;
- namespace System.Drawing.Design
- {
- [Serializable]
- public class ToolboxItem : ISerializable
- {
- private AssemblyName assembly;
- private Bitmap bitmap;
- private ICollection filter = new ToolboxItemFilterAttribute[0];
- private string displayname = string.Empty;
- private bool locked = false;
- private string name = string.Empty;
-
- public ToolboxItem() {
- }
- public ToolboxItem (Type toolType) {
- Initialize (toolType);
- }
- public AssemblyName AssemblyName {
- get {
- return assembly;
- }
- set {
- CheckUnlocked ();
- assembly = value;
- }
- }
- public Bitmap Bitmap {
- get {
- return bitmap;
- }
-
- set {
- CheckUnlocked ();
- bitmap = value;
- }
- }
- public string DisplayName {
- get {
- return displayname;
- }
-
- set {
- CheckUnlocked ();
- displayname = value;
- }
- }
- public ICollection Filter {
- get {
- return filter;
- }
-
- set {
- CheckUnlocked ();
- filter = value;
- }
- }
-
- protected bool Locked {
- get {
- return locked;
- }
- }
- public string TypeName {
- get {
- return name;
- }
- set {
- CheckUnlocked ();
- name = value;
- }
- }
-
- protected void CheckUnlocked ()
- {
- throw new InvalidOperationException ("The ToolboxItem is locked");
- }
- public IComponent[] CreateComponents ()
- {
- return CreateComponents (null);
- }
- public IComponent[] CreateComponents (IDesignerHost host)
- {
- OnComponentsCreating (new ToolboxComponentsCreatingEventArgs (host));
- IComponent[] Comp = CreateComponentsCore (host);
- OnComponentsCreated ( new ToolboxComponentsCreatedEventArgs (Comp));
- return Comp;
- }
- [MonoTODO]
- protected virtual IComponent[] CreateComponentsCore (IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- protected virtual void Deserialize (SerializationInfo info, StreamingContext context)
- {
- assembly = (AssemblyName)info.GetValue ("AssemblyName", typeof (AssemblyName));
- bitmap = (Bitmap)info.GetValue ("Bitmap", typeof (Bitmap));
- filter = (ICollection)info.GetValue ("Filter", typeof (ICollection));
- displayname = info.GetString ("DisplayName");
- locked = info.GetBoolean ("Locked");
- name = info.GetString ("TypeName");
- }
- public override bool Equals (object obj)
- {
- // FIXME: too harsh??
- if (!(obj is ToolboxItem))
- return false;
- if (obj == this)
- return true;
- return ((ToolboxItem) obj).AssemblyName.Equals (assembly) &&
- ((ToolboxItem) obj).Locked.Equals (locked) &&
- ((ToolboxItem) obj).TypeName.Equals (name) &&
- ((ToolboxItem) obj).DisplayName.Equals (displayname) &&
- ((ToolboxItem) obj).Bitmap.Equals (bitmap);
- }
-
- public override int GetHashCode ()
- {
- // FIXME: other algorithm?
- return string.Concat (name, displayname).GetHashCode ();
- }
- [MonoTODO]
- protected virtual Type GetType (IDesignerHost host, AssemblyName assemblyName, string typeName, bool reference)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Initialize (Type type)
- {
- // assembly = // FIXME we need to get the AssemblyName data from somewhere or create a new one
- displayname = type.Name;
- name = type.FullName;
- // seems to be a right place to create the bitmap
- bitmap = new Bitmap (16, 16); // FIXME set some default bitmap !?
- filter = type.GetCustomAttributes (typeof (ToolboxItemFilterAttribute), true);
- throw new NotImplementedException ();
- }
-
- void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
- {
- Serialize (info, context);
- }
- public void Lock ()
- {
- locked = true;
- }
- protected virtual void OnComponentsCreated (ToolboxComponentsCreatedEventArgs args)
- {
- if (ComponentsCreated != null)
- this.ComponentsCreated (this, args);
- }
- protected virtual void OnComponentsCreating (ToolboxComponentsCreatingEventArgs args)
- {
- if (ComponentsCreated != null)
- this.ComponentsCreating (this, args);
- }
- protected virtual void Serialize (SerializationInfo info, StreamingContext context)
- {
- info.AddValue ("AssemblyName", assembly);
- info.AddValue ("Bitmap", bitmap);
- info.AddValue ("Filter", filter);
- info.AddValue ("DisplayName", displayname);
- info.AddValue ("Locked", locked);
- info.AddValue ("TypeName", name);
- }
- public override string ToString()
- {
- return displayname;
- }
- public event ToolboxComponentsCreatedEventHandler ComponentsCreated;
- public event ToolboxComponentsCreatingEventHandler ComponentsCreating;
- }
- }
|