2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Design / System.Windows.Forms.Design.Behavior / Behavior.cs
blobf3fa0d71c8086b2ea1a192b5ff3d9c821467cc14
1 //
2 // System.Windows.Forms.Design.Behavior.Behavior
3 //
4 // Author:
5 // Atsushi Enomoto (atsushi@ximian.com)
6 //
7 // Copyright (C) 2007 Novell, Inc.
8 //
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.
31 #if NET_2_0
33 using System.ComponentModel.Design;
34 using System.Drawing;
35 using System.Drawing.Design;
36 using System.Drawing.Drawing2D;
38 namespace System.Windows.Forms.Design.Behavior
40 public abstract class Behavior
42 [MonoTODO]
43 protected Behavior ()
45 throw new NotImplementedException ();
48 [MonoTODO]
49 protected Behavior (bool callParentBehavior, BehaviorService behaviorService)
51 throw new NotImplementedException ();
54 [MonoTODO]
55 public virtual Cursor Cursor {
56 get { throw new NotImplementedException (); }
59 [MonoTODO]
60 public virtual bool DisableAllCommands {
61 get { throw new NotImplementedException (); }
64 [MonoTODO]
65 public virtual MenuCommand FindCommand (CommandID commandId)
67 throw new NotImplementedException ();
70 [MonoTODO]
71 public virtual void OnDragDrop (Glyph g, DragEventArgs e)
73 throw new NotImplementedException ();
76 [MonoTODO]
77 public virtual void OnDragEnter (Glyph g, DragEventArgs e)
79 throw new NotImplementedException ();
82 [MonoTODO]
83 public virtual void OnDragLeave (Glyph g, EventArgs e)
85 throw new NotImplementedException ();
88 [MonoTODO]
89 public virtual void OnDragOver (Glyph g, DragEventArgs e)
91 throw new NotImplementedException ();
94 [MonoTODO]
95 public virtual void OnGiveFeedback (Glyph g, GiveFeedbackEventArgs e)
97 throw new NotImplementedException ();
100 [MonoTODO]
101 public virtual void OnLoseCapture (Glyph g, EventArgs e)
103 throw new NotImplementedException ();
106 [MonoTODO]
107 public virtual bool OnMouseDoubleClick (Glyph g, MouseButtons button, Point mouseLoc)
109 throw new NotImplementedException ();
112 [MonoTODO]
113 public virtual bool OnMouseDown (Glyph g, MouseButtons button, Point mouseLoc)
115 throw new NotImplementedException ();
118 [MonoTODO]
119 public virtual bool OnMouseEnter (Glyph g)
121 throw new NotImplementedException ();
124 [MonoTODO]
125 public virtual bool OnMouseHover (Glyph g, Point mouseLoc)
127 throw new NotImplementedException ();
130 [MonoTODO]
131 public virtual bool OnMouseLeave (Glyph g)
133 throw new NotImplementedException ();
136 [MonoTODO]
137 public virtual bool OnMouseMove (Glyph g, MouseButtons button, Point mouseLoc)
139 throw new NotImplementedException ();
142 [MonoTODO]
143 public virtual bool OnMouseUp (Glyph g, MouseButtons button)
145 throw new NotImplementedException ();
148 [MonoTODO]
149 public virtual void OnQueryContinueDrag (Glyph g, QueryContinueDragEventArgs e)
151 throw new NotImplementedException ();
156 #endif