Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / System / System.ComponentModel / MarshalByValueComponent.cs
1 //
2 // System.ComponentModel.MarshalByValueComponent.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) Ximian, Inc
9 // (C) 2003 Andreas Nahr
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.ComponentModel;
35 using System.ComponentModel.Design;
36 using System.Runtime.InteropServices;
37
38 namespace System.ComponentModel
39 {
40         /// <summary>
41         /// Implements IComponent and provides the base implementation for remotable components that are marshaled by value (a copy of the serialized object is passed).
42         /// </summary>
43         [DesignerCategory ("Component"), TypeConverter (typeof (ComponentConverter))]
44         [Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, " + Consts.AssemblySystem_Design, typeof (IRootDesigner))]
45         [ComVisible (true)]
46         public class MarshalByValueComponent : IComponent, IDisposable, IServiceProvider
47         {
48                 private EventHandlerList eventList;
49                 private ISite mySite;
50                 private object disposedEvent = new object ();
51
52                 public MarshalByValueComponent ()
53                 {
54                 }
55
56                 public void Dispose ()
57                 {
58                         Dispose (true);
59                         GC.SuppressFinalize (this);
60                 }
61
62                 [MonoTODO]
63                 protected virtual void Dispose (bool disposing)
64                 {
65                         if (disposing) {
66                                 // free managed objects contained here
67                         }
68
69                         // Free unmanaged objects
70                         // Set fields to null
71                 }
72
73 #if !TARGET_JVM
74                 ~MarshalByValueComponent ()
75                 {
76                         Dispose (false);
77                 }
78 #endif  
79
80                 public virtual object GetService (Type service) 
81                 {
82                         if (mySite != null) {
83                                 return mySite.GetService(service); 
84                         }
85                         return null; 
86                 }
87                 
88                 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
89                 public virtual IContainer Container {
90                         get {
91                                 if (mySite == null)
92                                         return null;
93                                 return mySite.Container;
94                         }
95                 }
96
97                 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
98                 public virtual bool DesignMode {
99                         get {
100                                 if (mySite == null)
101                                         return false;
102                                 return mySite.DesignMode;
103                         }
104                 }
105
106                 [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
107                 public virtual ISite Site {
108                         get { return mySite; }
109                         set { mySite = value; }
110                 }
111
112                 public override string ToString ()
113                 {
114                         if (mySite == null)
115                                 return GetType ().ToString ();
116                         return String.Format ("{0} [{1}]", mySite.Name, GetType ().ToString ());
117                 }
118
119                 protected EventHandlerList Events {
120                         get {
121                                 if (eventList == null)
122                                         eventList = new EventHandlerList ();
123
124                                 return eventList;
125                         }
126                 }
127                 
128                 public event EventHandler Disposed
129                 {
130                         add { Events.AddHandler (disposedEvent, value); }
131                         remove { Events.RemoveHandler (disposedEvent, value); }
132                 }
133         }
134 }
135