Move Mono.CompilerServices.SymbolWriter to build after 2.1 raw mscorlib
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design / DesignerActionService.cs
1 //
2 // System.ComponentModel.Design.DesignerActionService.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2007 Novell, Inc
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 #if NET_2_0
31
32 using System;
33 using System.ComponentModel;
34
35 namespace System.ComponentModel.Design
36 {
37         public class DesignerActionService : IDisposable
38         {
39                 [MonoTODO]
40                 public DesignerActionService (IServiceProvider serviceProvider)
41                 {
42                         throw new NotImplementedException ();
43                 }
44
45                 public event DesignerActionListsChangedEventHandler DesignerActionListsChanged;
46
47                 [MonoTODO]
48                 public void Add (IComponent comp, DesignerActionList actionList)
49                 {
50                         throw new NotImplementedException ();
51                 }
52
53                 [MonoTODO]
54                 public void Add (IComponent comp, DesignerActionListCollection designerActionListCollection)
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 [MonoTODO]
60                 public void Clear ()
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65                 [MonoTODO]
66                 public bool Contains (IComponent comp)
67                 {
68                         throw new NotImplementedException ();
69                 }
70
71                 public void Dispose ()
72                 {
73                         Dispose (true);
74                 }
75
76                 [MonoTODO]
77                 protected virtual void Dispose (bool disposing)
78                 {
79                 }
80
81                 [MonoTODO]
82                 public DesignerActionListCollection GetComponentActions (IComponent component)
83                 {
84                         return GetComponentActions (component, ComponentActionsType.All); // not verified
85                 }
86
87                 [MonoTODO]
88                 public virtual DesignerActionListCollection GetComponentActions (IComponent component, ComponentActionsType type)
89                 {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                 protected virtual void GetComponentDesignerActions (IComponent component, DesignerActionListCollection actionLists)
95                 {
96                         throw new NotImplementedException ();
97                 }
98
99                 [MonoTODO]
100                 protected virtual void GetComponentServiceActions (IComponent component, DesignerActionListCollection actionLists)
101                 {
102                         throw new NotImplementedException ();
103                 }
104
105                 [MonoTODO]
106                 public void Remove (DesignerActionList actionList)
107                 {
108                         throw new NotImplementedException ();
109                 }
110
111                 [MonoTODO]
112                 public void Remove (IComponent comp)
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 [MonoTODO]
118                 public void Remove (IComponent comp, DesignerActionList actionList)
119                 {
120                         throw new NotImplementedException ();
121                 }
122         }
123 }
124 #endif