| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- // System.Drawing.Design.ToolboxItem.cs
- //
- // Author:
- // Alejandro Sánchez Acosta
- //
- // (C) Alejandro Sánchez Acosta
- using System.Collections;
- using System.ComponentModel;
- 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;
- private string displayname;
- private bool locked;
- private string name;
-
- [MonoTODO]
- public ToolboxItem() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public ToolboxItem (Type toolType) {
- throw new NotImplementedException ();
- }
- public AssemblyName AssemblyName {
- get {
- return assembly;
- }
- set {
- assembly = value;
- }
- }
- public Bitmap Bitmap {
- get {
- return bitmap;
- }
-
- set {
- bitmap = value;
- }
- }
- public string DisplayName {
- get {
- return displayname;
- }
-
- set {
- displayname = value;
- }
- }
- public ICollection Filter {
- get {
- return filter;
- }
-
- set {
- filter = value;
- }
- }
-
- protected bool Locked {
- get {
- return locked;
- }
- set {
- locked = value;
- }
- }
- public string TypeName {
- get {
- return name;
- }
- set {
- name = value;
- }
- }
-
- [MonoTODO]
- protected void CheckUnlocked ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public IComponent[] CreateComponents ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public IComponent[] CreateComponents (IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual IComponent[] CreateComponentsCore (IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void Deserialize (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool Equals (object obj)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public override int GetHashCode ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual Type GetType (IDesignerHost host, AssemblyName assemblyName, string typeName, bool reference)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void Initialize (Type type)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Lock ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void OnComponentsCreated (ToolboxComponentsCreatedEventArgs args)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void OnComponentsCreating (ToolboxComponentsCreatingEventArgs args)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void Serialize (SerializationInfo info, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString()
- {
- throw new NotImplementedException ();
- }
- }
- }
|