Copied remotely
[mono.git] / mcs / class / System.Design / System.Windows.Forms.Design / DocumentDesigner.cs
1 //
2 // System.Windows.Forms.Design.ComponentEditorForm.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 // (C) 2002 Ximian, Inc.  http://www.ximian.com
7 //
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Collections;
32 using System.ComponentModel;
33 using System.ComponentModel.Design;
34 using System.Diagnostics;
35 using System.Drawing.Design;
36
37 namespace System.Windows.Forms.Design
38 {
39         [ToolboxItemFilter("System.Windows.Forms")]
40         public class DocumentDesigner : ScrollableControlDesigner, IRootDesigner, IDesigner, IDisposable, IToolboxUser, IOleDragClient
41         {
42                 #region Public Instance Constructors
43
44                 [MonoTODO]
45                 public DocumentDesigner ()
46                 {
47                 }
48
49                 #endregion Public Instance Constructors
50
51                 #region Static Constructor
52
53                 [MonoTODO]
54                 static DocumentDesigner ()
55                 {
56                 }
57
58                 #endregion Static Constructor
59
60                 #region Override implementation of ScrollableControlDesigner
61
62                 [MonoTODO]
63                 protected override void Dispose (bool disposing)
64                 {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public override void Initialize (IComponent component)
70                 {
71                         throw new NotImplementedException ();
72                 }
73
74                 [MonoTODO]
75                 protected override void OnContextMenu (int x, int y)
76                 {
77                         throw new NotImplementedException ();
78                 }
79
80                 [MonoTODO]
81                 protected override void OnCreateHandle ()
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 [MonoTODO]
87                 protected override void PreFilterProperties (IDictionary properties)
88                 {
89                         throw new NotImplementedException ();
90                 }
91
92                 [MonoTODO]
93                 protected override void WndProc (ref Message m)
94                 {
95                         throw new NotImplementedException ();
96                 }
97
98                 [MonoTODO]
99                 public override SelectionRules SelectionRules
100                 {
101                         get
102                         {
103                                 throw new NotImplementedException ();
104                         }
105                 }
106
107                 #endregion Override implementation of ScrollableControlDesigner
108
109                 #region Internal Instance Methods
110
111                 [MonoTODO]
112                 internal virtual bool CanDropComponents (DragEventArgs de)
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 [MonoTODO]
118                 internal virtual void DoProperMenuSelection (ICollection selComponents)
119                 {
120                         throw new NotImplementedException ();
121                 }
122
123                 #endregion Internal Instance Methods
124
125                 #region Protected Instance Methods
126
127                 [MonoTODO]
128                 protected virtual void EnsureMenuEditorService (IComponent c)
129                 {
130                         throw new NotImplementedException ();
131                 }
132
133                 [MonoTODO]
134                 protected virtual bool GetToolSupported (ToolboxItem tool)
135                 {
136                         throw new NotImplementedException ();
137                 }
138
139                 [MonoTODO]
140                 protected virtual void ToolPicked (ToolboxItem tool)
141                 {
142                         throw new NotImplementedException ();
143                 }
144
145
146                 #endregion Protected Instance Methods
147
148                 #region Implementation of IRootDesigner
149
150                 [MonoTODO]
151                 ViewTechnology[] IRootDesigner.SupportedTechnologies
152                 {
153                         get
154                         {
155                                 throw new NotImplementedException ();
156                         }
157                 }
158
159                 [MonoTODO]
160                 object IRootDesigner.GetView (ViewTechnology technology)
161                 {
162                         throw new NotImplementedException ();
163                 }
164
165                 #endregion Implementation of IRootDesigner
166
167                 #region Implementation of IToolboxUser
168
169                 [MonoTODO]
170                 bool IToolboxUser.GetToolSupported (ToolboxItem tool)
171                 {
172                         throw new NotImplementedException ();
173                 }
174
175                 [MonoTODO]
176                 void IToolboxUser.ToolPicked (ToolboxItem tool)
177                 {
178                         throw new NotImplementedException ();
179                 }
180
181                 #endregion Implementation of IToolboxUser
182
183                 #region Implementation of IOleDragClient
184
185                 [MonoTODO]
186                 Control IOleDragClient.GetControlForComponent (object component)
187                 {
188                         throw new NotImplementedException ();
189                 }
190
191                 #endregion Implementation of IOleDragClient
192
193                 [MonoTODO]
194                 protected IMenuEditorService menuEditorService;
195         }
196 }