2006-12-11 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / Control.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2004-2006 Novell, Inc.
21 //
22 // Authors:
23 //      Peter Bartok            pbartok@novell.com
24 //
25 // Partially based on work by:
26 //      Aleksey Ryabchuk        ryabchuk@yahoo.com
27 //      Alexandre Pigolkine     pigolkine@gmx.de
28 //      Dennis Hayes            dennish@raytek.com
29 //      Jaak Simm               jaaksimm@firm.ee
30 //      John Sohn               jsohn@columbus.rr.com
31 //
32
33 // COMPLETE 
34
35 #undef DebugRecreate
36 #undef DebugFocus
37
38 using System;
39 using System.ComponentModel;
40 using System.ComponentModel.Design;
41 using System.ComponentModel.Design.Serialization;
42 using System.Collections;
43 using System.Diagnostics;
44 using System.Drawing;
45 using System.Drawing.Drawing2D;
46 using System.Reflection;
47 using System.Runtime.InteropServices;
48 using System.Security;
49 using System.Threading;
50
51 namespace System.Windows.Forms
52 {
53         [Designer("System.Windows.Forms.Design.ControlDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
54         [DefaultProperty("Text")]
55         [DefaultEvent("Click")]
56         [DesignerSerializer("System.Windows.Forms.Design.ControlCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
57         [ToolboxItemFilter("System.Windows.Forms")]
58         public class Control : Component, ISynchronizeInvoke, IWin32Window
59         {
60                 #region Local Variables
61
62                 // Basic
63                 internal Rectangle              bounds;                 // bounding rectangle for control (client area + decorations)
64                 Rectangle explicit_bounds; // explicitly set bounds
65                 internal object                 creator_thread;         // thread that created the control
66                 internal ControlNativeWindow    window;                 // object for native window handle
67                 string name; // for object naming
68
69                 // State
70                 bool is_created; // true if OnCreateControl has been sent
71                 internal bool                   has_focus;              // true if control has focus
72                 internal bool                   is_visible;             // true if control is visible
73                 internal bool                   is_entered;             // is the mouse inside the control?
74                 internal bool                   is_enabled;             // true if control is enabled (usable/not grayed out)
75                 bool is_accessible; // true if the control is visible to accessibility applications
76                 bool is_captured; // tracks if the control has captured the mouse
77                 internal bool                   is_toplevel;            // tracks if the control is a toplevel window
78                 bool is_recreating; // tracks if the handle for the control is being recreated
79                 bool causes_validation; // tracks if validation is executed on changes
80                 bool is_focusing; // tracks if Focus has been called on the control and has not yet finished
81                 int tab_index; // position in tab order of siblings
82                 bool tab_stop; // is the control a tab stop?
83                 bool is_disposed; // has the window already been disposed?
84                 Size client_size; // size of the client area (window excluding decorations)
85                 Rectangle client_rect; // rectangle with the client area (window excluding decorations)
86                 ControlStyles control_style; // rather win32-specific, style bits for control
87                 ImeMode ime_mode;
88                 bool layout_pending; // true if our parent needs to re-layout us
89                 object control_tag; // object that contains data about our control
90                 internal int                    mouse_clicks;           // Counter for mouse clicks
91                 Cursor cursor; // Cursor for the window
92                 internal bool                   allow_drop;             // true if the control accepts droping objects on it   
93                 Region clip_region; // User-specified clip region for the window
94
95                 // Visuals
96                 internal Color                  foreground_color;       // foreground color for control
97                 internal Color                  background_color;       // background color for control
98                 Image background_image; // background image for control
99                 internal Font                   font;                   // font for control
100                 string text; // window/title text for control
101                 internal BorderStyle            border_style;           // Border style of control
102
103                 // Layout
104                 int layout_suspended;
105                 internal AnchorStyles           anchor_style;           // anchoring requirements for our control
106                 internal DockStyle              dock_style;             // docking requirements for our control (supercedes anchoring)
107                 // Please leave the next 4 as internal until DefaultLayout (2.0) is rewritten
108                 internal int                    dist_left;              // distance to the left border of the parent
109                 internal int                    dist_top; // distance to the top border of the parent
110                 internal int                    dist_right; // distance to the right border of the parent
111                 internal int                    dist_bottom; // distance to the bottom border of the parent
112
113                 // to be categorized...
114                 ControlCollection child_controls; // our children
115                 Control parent; // our parent control
116                 AccessibleObject accessibility_object; // object that contains accessibility information about our control
117                 BindingContext binding_context;
118                 RightToLeft right_to_left; // drawing direction for control
119                 ContextMenu context_menu; // Context menu associated with the control
120
121                 // double buffering
122                 Graphics backbuffer_dc;
123                 object backbuffer;
124                 Region invalid_region;
125
126                 ControlBindingsCollection data_bindings;
127
128 #if NET_2_0
129                 internal bool use_compatible_text_rendering;
130                 static bool verify_thread_handle;
131                 Padding padding;
132                 Size maximum_size;
133                 Size minimum_size;
134                 Size preferred_size;
135                 Padding margin;
136                 Layout.LayoutEngine layout_engine;
137 #endif
138
139                 #endregion      // Local Variables
140
141                 #region Private Classes
142                 // This helper class allows us to dispatch messages to Control.WndProc
143                 internal class ControlNativeWindow : NativeWindow {
144                         private Control owner;
145
146                         public ControlNativeWindow(Control control) : base() {
147                                 this.owner=control;
148                         }
149
150
151                         public Control Owner {
152                                 get {
153                                         return owner;
154                                 }
155                         }
156
157                         static internal Control ControlFromHandle(IntPtr hWnd) {
158                                 ControlNativeWindow     window;
159
160                                 window = (ControlNativeWindow)window_collection[hWnd];
161                                 if (window != null) {
162                                         return window.owner;
163                                 }
164
165                                 return null;
166                         }
167
168                         static internal Control ControlFromChildHandle (IntPtr handle) {
169                                 ControlNativeWindow     window;
170
171                                 Hwnd hwnd = Hwnd.ObjectFromHandle (handle);
172                                 while (hwnd != null) {
173                                         window = (ControlNativeWindow)window_collection[hwnd.Handle];
174                                         if (window != null) {
175                                                 return window.owner;
176                                         }
177                                         hwnd = hwnd.Parent;
178                                 }
179
180                                 return null;
181                         }
182
183                         protected override void WndProc(ref Message m) {
184                                 owner.WndProc(ref m);
185                         }
186                 }
187                 #endregion
188                 
189                 #region Public Classes
190                 [ComVisible(true)]
191                 public class ControlAccessibleObject : AccessibleObject {
192                         Control owner;
193
194                         #region ControlAccessibleObject Constructors
195                         public ControlAccessibleObject(Control ownerControl)
196                                 : base (ownerControl)
197                         {
198                                 this.owner = ownerControl;
199                         }
200                         #endregion      // ControlAccessibleObject Constructors
201
202                         #region ControlAccessibleObject Public Instance Properties
203                         public override string DefaultAction {
204                                 get {
205                                         return base.DefaultAction;
206                                 }
207                         }
208
209                         public override string Description {
210                                 get {
211                                         return base.Description;
212                                 }
213                         }
214
215                         public IntPtr Handle {
216                                 get {
217                                         return owner.Handle;
218                                 }
219
220                                 set {
221                                         // We don't want to let them set it
222                                 }
223                         }
224
225                         public override string Help {
226                                 get {
227                                         return base.Help;
228                                 }
229                         }
230
231                         public override string KeyboardShortcut {
232                                 get {
233                                         return base.KeyboardShortcut;
234                                 }
235                         }
236
237                         public override string Name {
238                                 get {
239                                         return base.Name;
240                                 }
241
242                                 set {
243                                         base.Name = value;
244                                 }
245                         }
246
247                         public Control Owner {
248                                 get {
249                                         return owner;
250                                 }
251                         }
252
253                         public override AccessibleObject Parent {
254                                 get {
255                                         return base.Parent;
256                                 }
257                         }
258
259
260                         public override AccessibleRole Role {
261                                 get {
262                                         return base.Role;
263                                 }
264                         }
265                         #endregion      // ControlAccessibleObject Public Instance Properties
266
267                         #region ControlAccessibleObject Public Instance Methods
268                         public override int GetHelpTopic(out string FileName) {
269                                 return base.GetHelpTopic (out FileName);
270                         }
271
272                         [MonoTODO("Implement this and tie it into Control.AccessibilityNotifyClients")]
273                         public void NotifyClients(AccessibleEvents accEvent) {
274                                 throw new NotImplementedException();
275                         }
276
277                         [MonoTODO("Implement this and tie it into Control.AccessibilityNotifyClients")]
278                         public void NotifyClients(AccessibleEvents accEvent, int childID) {
279                                 throw new NotImplementedException();
280                         }
281
282                         public override string ToString() {
283                                 return "ControlAccessibleObject: Owner = " + owner.ToString() + ", Text: " + owner.text;
284                         }
285
286                         #endregion      // ControlAccessibleObject Public Instance Methods
287                 }
288
289                 [DesignerSerializer("System.Windows.Forms.Design.ControlCollectionCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
290                 [ListBindable(false)]
291                 public class ControlCollection : IList, ICollection, ICloneable, IEnumerable {
292                         #region ControlCollection Local Variables
293                         ArrayList list;
294                         ArrayList impl_list;
295                         Control[] all_controls;
296                         Control owner;
297                         #endregion      // ControlCollection Local Variables
298
299                         #region ControlCollection Public Constructor
300                         public ControlCollection(Control owner) {
301                                 this.owner=owner;
302                                 this.list=new ArrayList();
303                         }
304                         #endregion
305
306                         #region ControlCollection Public Instance Properties
307                         public int Count {
308                                 get {
309                                         return list.Count;
310                                 }
311                         }
312
313                         public bool IsReadOnly {
314                                 get {
315                                         return list.IsReadOnly;
316                                 }
317                         }
318
319                         public virtual Control this[int index] {
320                                 get {
321                                         if (index < 0 || index >= list.Count) {
322                                                 throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
323                                         }
324                                         return (Control)list[index];
325                                 }
326                         }
327                         #endregion // ControlCollection Public Instance Properties
328                         
329                         #region ControlCollection Private Instance Methods
330                         public virtual void Add (Control value)
331                         {
332                                 if (value == null)
333                                         return;
334                                 
335                                 if (Contains (value)) {
336                                         owner.PerformLayout();
337                                         return;
338                                 }
339
340                                 if (value.tab_index == -1) {
341                                         int     end;
342                                         int     index;
343                                         int     use;
344
345                                         use = 0;
346                                         end = owner.child_controls.Count;
347                                         for (int i = 0; i < end; i++) {
348                                                 index = owner.child_controls[i].tab_index;
349                                                 if (index >= use) {
350                                                         use = index + 1;
351                                                 }
352                                         }
353                                         value.tab_index = use;
354                                 }
355
356                                 if (value.parent != null) {
357                                         value.parent.Controls.Remove(value);
358                                 }
359
360                                 all_controls = null;
361                                 list.Add (value);
362
363                                 value.ChangeParent(owner);
364
365                                 value.InitLayout();
366
367                                 owner.UpdateChildrenZOrder();
368                                 owner.PerformLayout(value, "Parent");
369                                 owner.OnControlAdded(new ControlEventArgs(value));
370                         }
371                         
372                         internal void AddToList (Control c)
373                         {
374                                 all_controls = null;
375                                 list.Add (c);
376                         }
377
378                         internal virtual void AddImplicit (Control control)
379                         {
380                                 if (impl_list == null)
381                                         impl_list = new ArrayList ();
382
383                                 if (AllContains (control))
384                                         return;
385
386                                 all_controls = null;
387                                 impl_list.Add (control);
388
389                                 control.ChangeParent (owner);
390                                 control.InitLayout ();
391                                 owner.UpdateChildrenZOrder ();
392                                 owner.PerformLayout (control, "Parent");
393                                 owner.OnControlAdded (new ControlEventArgs (control));
394                         }
395
396                         public virtual void AddRange (Control[] controls)
397                         {
398                                 if (controls == null)
399                                         throw new ArgumentNullException ("controls");
400
401                                 owner.SuspendLayout ();
402
403                                 try {
404                                         for (int i = 0; i < controls.Length; i++) 
405                                                 Add (controls[i]);
406                                 } finally {
407                                         owner.ResumeLayout ();
408                                 }
409                         }
410
411                         internal virtual void AddRangeImplicit (Control [] controls)
412                         {
413                                 if (controls == null)
414                                         throw new ArgumentNullException ("controls");
415
416                                 owner.SuspendLayout ();
417
418                                 try {
419                                         for (int i = 0; i < controls.Length; i++)
420                                                 AddImplicit (controls [i]);
421                                 } finally {
422                                         owner.ResumeLayout ();
423                                 }
424                         }
425
426                         public virtual void Clear ()
427                         {
428                                 all_controls = null;
429
430                                 // MS sends remove events in reverse order
431                                 while (list.Count > 0) {
432                                         Remove((Control)list[list.Count - 1]);
433                                 }
434                         }
435
436                         internal virtual void ClearImplicit ()
437                         {
438                                 if (impl_list == null)
439                                         return;
440                                 all_controls = null;
441                                 impl_list.Clear ();
442                         }
443
444                         public bool Contains (Control value)
445                         {
446                                 for (int i = list.Count; i > 0; ) {
447                                         i--;
448                                         
449                                         if (list [i] == value) {
450                                                 // Do we need to do anything here?
451                                                 return true;
452                                         }
453                                 }
454                                 return false;
455                         }
456
457                         internal bool ImplicitContains (Control value)
458                         {
459                                 if (impl_list == null)
460                                         return false;
461
462                                 for (int i = impl_list.Count; i > 0; ) {
463                                         i--;
464                                         
465                                         if (impl_list [i] == value) {
466                                                 // Do we need to do anything here?
467                                                 return true;
468                                         }
469                                 }
470                                 return false;
471                         }
472
473                         internal bool AllContains (Control value)
474                         {
475                                 return Contains (value) || ImplicitContains (value);
476                         }
477
478                         public void CopyTo (Array array, int index)
479                         {
480                                 list.CopyTo(array, index);
481                         }
482
483                         public override bool Equals(object other) {
484                                 if (other is ControlCollection && (((ControlCollection)other).owner==this.owner)) {
485                                         return(true);
486                                 } else {
487                                         return(false);
488                                 }
489                         }
490
491                         public int GetChildIndex(Control child) {
492                                 return GetChildIndex(child, false);
493                         }
494
495                         public int GetChildIndex(Control child, bool throwException) {
496                                 int index;
497
498                                 index=list.IndexOf(child);
499
500                                 if (index==-1 && throwException) {
501                                         throw new ArgumentException("Not a child control", "child");
502                                 }
503                                 return index;
504                         }
505
506                         public IEnumerator GetEnumerator() {
507                                 return list.GetEnumerator();
508                         }
509
510                         internal IEnumerator GetAllEnumerator ()
511                         {
512                                 Control [] res = GetAllControls ();
513                                 return res.GetEnumerator ();
514                         }
515
516                         internal Control [] GetAllControls ()
517                         {
518                                 if (all_controls != null)
519                                         return all_controls;
520
521                                 if (impl_list == null) {
522                                         all_controls = (Control []) list.ToArray (typeof (Control));
523                                         return all_controls;
524                                 }
525                                 
526                                 all_controls = new Control [list.Count + impl_list.Count];
527                                 impl_list.CopyTo (all_controls);
528                                 list.CopyTo (all_controls, impl_list.Count);
529
530                                 return all_controls;
531                         }
532
533                         public override int GetHashCode() {
534                                 return base.GetHashCode();
535                         }
536
537                         public int IndexOf(Control control) {
538                                 return list.IndexOf(control);
539                         }
540
541                         public virtual void Remove(Control value) {
542                                 if (value == null)
543                                         return;
544
545                                 owner.PerformLayout(value, "Parent");
546                                 owner.OnControlRemoved(new ControlEventArgs(value));
547
548                                 all_controls = null;
549                                 list.Remove(value);
550
551                                 value.ChangeParent(null);
552
553                                 owner.UpdateChildrenZOrder();
554                         }
555
556                         internal virtual void RemoveImplicit (Control control)
557                         {
558                                 if (impl_list != null) {
559                                         all_controls = null;
560                                         owner.PerformLayout (control, "Parent");
561                                         owner.OnControlRemoved (new ControlEventArgs (control));
562                                         impl_list.Remove (control);
563                                 }
564                                 control.ChangeParent (null);
565                                 owner.UpdateChildrenZOrder ();
566                         }
567
568                         public void RemoveAt(int index) {
569                                 if (index < 0 || index >= list.Count) {
570                                         throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
571                                 }
572                                 Remove ((Control)list[index]);
573                         }
574
575                         public void SetChildIndex(Control child, int newIndex) {
576                                 if (child == null)
577                                         throw new ArgumentNullException ("child");
578
579                                 int     old_index;
580
581                                 old_index=list.IndexOf(child);
582                                 if (old_index==-1) {
583                                         throw new ArgumentException("Not a child control", "child");
584                                 }
585
586                                 if (old_index==newIndex) {
587                                         return;
588                                 }
589
590                                 all_controls = null;
591                                 list.RemoveAt(old_index);
592
593                                 if (newIndex>list.Count) {
594                                         list.Add(child);
595                                 } else {
596                                         list.Insert(newIndex, child);
597                                 }
598                                 child.UpdateZOrder();
599                                 owner.PerformLayout();
600                         }
601                         #endregion // ControlCollection Private Instance Methods
602
603                         #region ControlCollection Interface Properties
604                         object IList.this[int index] {
605                                 get {
606                                         if (index<0 || index>=list.Count) {
607                                                 throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
608                                         }
609                                         return this[index];
610                                 }
611
612                                 set {
613                                         if (!(value is Control)) {
614                                                 throw new ArgumentException("Object of type Control required", "value");
615                                         }
616
617                                         all_controls = null;
618                                         Control ctrl = (Control) value;
619                                         list[index]= ctrl;
620
621                                         ctrl.ChangeParent(owner);
622
623                                         ctrl.InitLayout();
624
625                                         owner.UpdateChildrenZOrder();
626                                         owner.PerformLayout(ctrl, "Parent");
627                                 }
628                         }
629
630                         bool IList.IsFixedSize {
631                                 get {
632                                         return false;
633                                 }
634                         }
635
636                         bool ICollection.IsSynchronized {
637                                 get {
638                                         return list.IsSynchronized;
639                                 }
640                         }
641
642                         object ICollection.SyncRoot {
643                                 get {
644                                         return list.SyncRoot;
645                                 }
646                         }
647                         #endregion // ControlCollection Interface Properties
648
649                         #region ControlCollection Interface Methods
650                         int IList.Add(object value) {
651                                 if (value == null) {
652                                         throw new ArgumentNullException("value", "Cannot add null controls");
653                                 }
654
655                                 if (!(value is Control)) {
656                                         throw new ArgumentException("Object of type Control required", "value");
657                                 }
658
659                                 return list.Add(value);
660                         }
661
662                         bool IList.Contains(object value) {
663                                 if (!(value is Control)) {
664                                         throw new ArgumentException("Object of type Control required", "value");
665                                 }
666
667                                 return this.Contains((Control) value);
668                         }
669
670                         int IList.IndexOf(object value) {
671                                 if (!(value is Control)) {
672                                         throw new ArgumentException("Object of type Control  required", "value");
673                                 }
674
675                                 return this.IndexOf((Control) value);
676                         }
677
678                         void IList.Insert(int index, object value) {
679                                 if (!(value is Control)) {
680                                         throw new ArgumentException("Object of type Control required", "value");
681                                 }
682                                 all_controls = null;
683                                 list.Insert(index, value);
684                         }
685
686                         void IList.Remove(object value) {
687                                 if (!(value is Control)) {
688                                         throw new ArgumentException("Object of type Control required", "value");
689                                 }
690                                 all_controls = null;
691                                 list.Remove(value);
692                         }
693
694                         Object ICloneable.Clone() {
695                                 ControlCollection clone = new ControlCollection(this.owner);
696                                 clone.list=(ArrayList)list.Clone();             // FIXME: Do we need this?
697                                 return clone;
698                         }
699                         #endregion // ControlCollection Interface Methods
700                 }
701                 #endregion      // ControlCollection Class
702                 
703                 #region Public Constructors
704                 public Control()
705                 {
706                         anchor_style = AnchorStyles.Top | AnchorStyles.Left;
707
708                         is_created = false;
709                         is_visible = true;
710                         is_captured = false;
711                         is_disposed = false;
712                         is_enabled = true;
713                         is_entered = false;
714                         layout_pending = false;
715                         is_toplevel = false;
716                         causes_validation = true;
717                         has_focus = false;
718                         layout_suspended = 0;
719                         mouse_clicks = 1;
720                         tab_index = -1;
721                         cursor = null;
722                         right_to_left = RightToLeft.Inherit;
723                         border_style = BorderStyle.None;
724                         background_color = Color.Empty;
725                         dist_left = 0;
726                         dist_right = 0;
727                         dist_top = 0;
728                         dist_bottom = 0;
729                         tab_stop = true;
730                         ime_mode = ImeMode.Inherit;
731
732 #if NET_2_0
733                         use_compatible_text_rendering = Application.use_compatible_text_rendering;
734                         padding = new Padding(0);
735                         maximum_size = new Size();
736                         minimum_size = new Size();
737                         preferred_size = new Size();
738                         margin = this.DefaultMargin;
739                         layout_engine = this.LayoutEngine;
740 #endif
741
742                         control_style = ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | 
743                                         ControlStyles.Selectable | ControlStyles.StandardClick | 
744                                         ControlStyles.StandardDoubleClick;
745 #if NET_2_0
746                         control_style |= ControlStyles.UseTextForAccessibility;
747 #endif
748
749                         parent = null;
750                         background_image = null;
751                         text = string.Empty;
752                         name = string.Empty;
753
754                         window = new ControlNativeWindow(this);
755                         child_controls = CreateControlsInstance();
756                         client_size = new Size(DefaultSize.Width, DefaultSize.Height);
757                         client_rect = new Rectangle(0, 0, DefaultSize.Width, DefaultSize.Height);
758                         XplatUI.CalculateWindowRect(ref client_rect, CreateParams.Style, CreateParams.ExStyle, null, out bounds);
759                         if ((CreateParams.Style & (int)WindowStyles.WS_CHILD) == 0) {
760                                 bounds.X=-1;
761                                 bounds.Y=-1;
762                         }
763                 }
764
765                 public Control(Control parent, string text) : this() {
766                         Text=text;
767                         Parent=parent;
768                 }
769
770                 public Control(Control parent, string text, int left, int top, int width, int height) : this() {
771                         Parent=parent;
772                         bounds.X=left;
773                         bounds.Y=top;
774                         bounds.Width=width;
775                         bounds.Height=height;
776                         SetBounds(left, top, width, height, BoundsSpecified.All);
777                         Text=text;
778                 }
779
780                 public Control(string text) : this() {
781                         Text=text;
782                 }
783
784                 public Control(string text, int left, int top, int width, int height) : this() {
785                         bounds.X=left;
786                         bounds.Y=top;
787                         bounds.Width=width;
788                         bounds.Height=height;
789                         SetBounds(left, top, width, height, BoundsSpecified.All);
790                         Text=text;
791                 }
792
793                 private delegate void RemoveDelegate(object c);
794
795                 protected override void Dispose(bool disposing) {
796                         if (!is_disposed && disposing) {
797                                 Capture = false;
798
799                                 DisposeBackBuffer ();
800
801                                 if (invalid_region!=null) {
802                                         invalid_region.Dispose();
803                                         invalid_region=null;
804                                 }
805                                 if (this.InvokeRequired) {
806                                         if (Application.MessageLoop) {
807                                                 this.BeginInvokeInternal(new MethodInvoker(DestroyHandle), null, true);
808                                         }
809                                 } else {
810                                         DestroyHandle();
811                                 }
812
813                                 if (parent != null) {
814                                         parent.Controls.Remove(this);
815                                 }
816
817                                 Control [] children = child_controls.GetAllControls ();
818                                 for (int i=0; i<children.Length; i++) {
819                                         children[i].parent = null;      // Need to set to null or our child will try and remove from ourselves and crash
820                                         children[i].Dispose();
821                                 }
822                         }
823                         is_disposed = true;
824                         is_visible = false;
825                         base.Dispose(disposing);
826                 }
827                 #endregion      // Public Constructors
828
829                 #region Internal Properties
830                 internal BorderStyle InternalBorderStyle {
831                         get {
832                                 return border_style;
833                         }
834
835                         set {
836                                 if (!Enum.IsDefined (typeof (BorderStyle), value))
837                                         throw new InvalidEnumArgumentException (string.Format("Enum argument value '{0}' is not valid for BorderStyle", value));
838
839                                 if (border_style != value) {
840                                         border_style = value;
841
842                                         if (IsHandleCreated) {
843                                                 XplatUI.SetBorderStyle(window.Handle, (FormBorderStyle)border_style);
844                                                 Refresh();
845                                         }
846                                 }
847                         }
848                 }
849                 #endregion      // Internal Properties
850
851                 #region Private & Internal Methods
852                 internal IAsyncResult BeginInvokeInternal (Delegate method, object [] args, bool disposing) {
853                         AsyncMethodResult       result;
854                         AsyncMethodData         data;
855
856                         if (!disposing) {
857                                 Control p = this;
858                                 do {
859                                         if (!p.IsHandleCreated) {
860                                                 throw new InvalidOperationException("Cannot call Invoke or InvokeAsync on a control until the window handle is created");
861                                         }
862                                         p = p.parent;
863                                 } while (p != null);
864                         }
865
866                         result = new AsyncMethodResult ();
867                         data = new AsyncMethodData ();
868
869                         data.Handle = window.Handle;
870                         data.Method = method;
871                         data.Args = args;
872                         data.Result = result;
873
874 #if NET_2_0
875                         if (!ExecutionContext.IsFlowSuppressed ()) {
876                                 data.Context = ExecutionContext.Capture ();
877                         }
878 #else
879 #if !MWF_ON_MSRUNTIME
880                         if (SecurityManager.SecurityEnabled) {
881                                 data.Stack = CompressedStack.GetCompressedStack ();
882                         }
883 #endif
884 #endif
885
886                         XplatUI.SendAsyncMethod (data);
887                         return result;
888                 }
889
890                 
891                 internal void PointToClient (ref int x, ref int y)
892                 {
893                         XplatUI.ScreenToClient (Handle, ref x, ref y);
894                 }
895
896                 internal void PointToScreen (ref int x, ref int y)
897                 {
898                         XplatUI.ClientToScreen (Handle, ref x, ref y);
899                 }
900
901                 internal bool IsRecreating {
902                         get {
903                                 return is_recreating;
904                         }
905                 }
906
907                 internal Graphics DeviceContext {
908                         get { return Hwnd.bmp_g; }
909                 }
910
911                 private void InvalidateBackBuffer ()
912                 {
913                         if (invalid_region != null)
914                                 invalid_region.Dispose();
915                         invalid_region = new Region (ClientRectangle);
916                 }
917
918                 private void CreateBackBuffer ()
919                 {
920                         if (backbuffer != null)
921                                 return;
922
923                         int width = Width;
924                         int height = Height;
925
926                         if (width < 1) width = 1;
927                         if (height < 1) height = 1;
928
929                         XplatUI.CreateOffscreenDrawable (Handle, width, height, out backbuffer, out backbuffer_dc);
930                         InvalidateBackBuffer ();
931                 }
932
933                 private void DisposeBackBuffer ()
934                 {
935                         if (backbuffer == null)
936                                 return;
937
938                         XplatUI.DestroyOffscreenDrawable (backbuffer, backbuffer_dc);
939                         backbuffer = null;
940                         backbuffer_dc = null;
941
942
943                         if (invalid_region != null)
944                                 invalid_region.Dispose ();
945                         invalid_region = null;
946                 }
947
948                 internal static void SetChildColor(Control parent) {
949                         Control child;
950
951                         for (int i=0; i < parent.child_controls.Count; i++) {
952                                 child=parent.child_controls[i];
953                                 if (child.child_controls.Count>0) {
954                                         SetChildColor(child);
955                                 }
956                         }
957                 }
958
959                 internal bool Select(Control control) {
960                         IContainerControl       container;
961
962                         if (control == null) {
963                                 return false;
964                         }
965
966                         container = GetContainerControl();
967                         if (container != null) {
968                                 container.ActiveControl = control;
969                         }
970                         if (control.IsHandleCreated) {
971                                 XplatUI.SetFocus(control.window.Handle);
972                         }
973                         return true;
974                 }
975
976                 internal void SelectChild (Control control)
977                 {
978                         if (control.IsHandleCreated)
979                                 XplatUI.SetFocus (control.window.Handle);
980                 }
981
982                 internal virtual void DoDefaultAction() {
983                         // Only here to be overriden by our actual controls; this is needed by the accessibility class
984                 }
985
986                 internal static int LowOrder (int param) {
987                         return ((int)(short)(param & 0xffff));
988                 }
989
990                 internal static int HighOrder (int param) {
991                         return ((int)(short)(param >> 16));
992                 }
993
994                 // This method exists so controls overriding OnPaintBackground can have default background painting done
995                 internal virtual void PaintControlBackground (PaintEventArgs pevent)
996                 {
997                         if (GetStyle(ControlStyles.SupportsTransparentBackColor) && (BackColor.A != 0xff)) {
998                                 if (parent != null) {
999                                         PaintEventArgs  parent_pe;
1000                                         GraphicsState   state;
1001
1002                                         parent_pe = new PaintEventArgs(pevent.Graphics, new Rectangle(pevent.ClipRectangle.X + Left, pevent.ClipRectangle.Y + Top, pevent.ClipRectangle.Width, pevent.ClipRectangle.Height));
1003
1004                                         state = parent_pe.Graphics.Save();
1005                                         parent_pe.Graphics.TranslateTransform(-Left, -Top);
1006                                         parent.OnPaintBackground(parent_pe);
1007                                         parent_pe.Graphics.Restore(state);
1008
1009                                         state = parent_pe.Graphics.Save();
1010                                         parent_pe.Graphics.TranslateTransform(-Left, -Top);
1011                                         parent.OnPaint(parent_pe);
1012                                         parent_pe.Graphics.Restore(state);
1013                                         parent_pe.SetGraphics(null);
1014                                 }
1015                         }
1016
1017                         if ((clip_region != null) && (XplatUI.UserClipWontExposeParent)) {
1018                                 if (parent != null) {
1019                                         PaintEventArgs  parent_pe;
1020                                         Region          region;
1021                                         GraphicsState   state;
1022                                         Hwnd            hwnd;
1023
1024                                         hwnd = Hwnd.ObjectFromHandle(Handle);
1025
1026                                         if (hwnd != null) {
1027                                                 parent_pe = new PaintEventArgs(pevent.Graphics, new Rectangle(pevent.ClipRectangle.X + Left, pevent.ClipRectangle.Y + Top, pevent.ClipRectangle.Width, pevent.ClipRectangle.Height));
1028
1029                                                 region = new Region ();
1030                                                 region.MakeEmpty();
1031                                                 region.Union(ClientRectangle);
1032
1033                                                 foreach (Rectangle r in hwnd.ClipRectangles) {
1034                                                         region.Union (r);
1035                                                 }
1036
1037                                                 state = parent_pe.Graphics.Save();
1038                                                 parent_pe.Graphics.Clip = region;
1039
1040                                                 parent_pe.Graphics.TranslateTransform(-Left, -Top);
1041                                                 parent.OnPaintBackground(parent_pe);
1042                                                 parent_pe.Graphics.Restore(state);
1043
1044                                                 state = parent_pe.Graphics.Save();
1045                                                 parent_pe.Graphics.Clip = region;
1046
1047                                                 parent_pe.Graphics.TranslateTransform(-Left, -Top);
1048                                                 parent.OnPaint(parent_pe);
1049                                                 parent_pe.Graphics.Restore(state);
1050                                                 parent_pe.SetGraphics(null);
1051
1052                                                 region.Intersect(clip_region);
1053                                                 pevent.Graphics.Clip = region;
1054                                         }
1055                                 }
1056                         }
1057
1058                         if (background_image == null) {
1059                                 pevent.Graphics.FillRectangle(ThemeEngine.Current.ResPool.GetSolidBrush(BackColor), new Rectangle(pevent.ClipRectangle.X - 1, pevent.ClipRectangle.Y - 1, pevent.ClipRectangle.Width + 2, pevent.ClipRectangle.Height + 2));
1060                                 return;
1061                         }
1062
1063                         DrawBackgroundImage (pevent.Graphics);
1064                 }
1065
1066                 void DrawBackgroundImage (Graphics g)
1067                 {
1068                         using (TextureBrush b = new TextureBrush (background_image, WrapMode.Tile)) {
1069                                 g.FillRectangle (b, ClientRectangle);
1070                         }
1071                 }
1072
1073                 internal virtual void DndEnter (DragEventArgs e)
1074                 {
1075                         try {
1076                                 OnDragEnter (e);
1077                         } catch { }
1078                 }
1079
1080                 internal virtual void DndOver (DragEventArgs e)
1081                 {
1082                         try {
1083                                 OnDragOver (e);
1084                         } catch { }
1085                 }
1086
1087                 internal virtual void DndDrop (DragEventArgs e)
1088                 {
1089                         try {
1090                                 OnDragDrop (e);
1091                         } catch (Exception exc) {
1092                                 Console.Error.WriteLine ("MWF: Exception while dropping:");
1093                                 Console.Error.WriteLine (exc);
1094                         }
1095                 }
1096
1097                 internal virtual void DndLeave (EventArgs e)
1098                 {
1099                         try {
1100                                 OnDragLeave (e);
1101                         } catch { }
1102                 }
1103
1104                 internal virtual void DndFeedback(GiveFeedbackEventArgs e)
1105                 {
1106                         try {
1107                                 OnGiveFeedback(e);
1108                         } catch { }
1109                 }
1110
1111                 internal virtual void DndContinueDrag(QueryContinueDragEventArgs e)
1112                 {
1113                         try {
1114                                 OnQueryContinueDrag(e);
1115                         } catch { }
1116                 }
1117                 
1118                 internal static MouseButtons FromParamToMouseButtons (int param) {              
1119                         MouseButtons buttons = MouseButtons.None;
1120                                         
1121                         if ((param & (int) MsgButtons.MK_LBUTTON) != 0)
1122                                 buttons |= MouseButtons.Left;
1123                         
1124                         if ((param & (int) MsgButtons.MK_MBUTTON) != 0)
1125                                 buttons |= MouseButtons.Middle;
1126                                 
1127                         if ((param & (int) MsgButtons.MK_RBUTTON) != 0)
1128                                 buttons |= MouseButtons.Right;
1129                                 
1130                         return buttons;
1131
1132                 }
1133
1134                 internal void FireEnter ()
1135                 {
1136                         OnEnter (EventArgs.Empty);
1137                 }
1138
1139                 internal void FireLeave ()
1140                 {
1141                         OnLeave (EventArgs.Empty);
1142                 }
1143
1144                 internal void FireValidating (CancelEventArgs ce)
1145                 {
1146                         OnValidating (ce);
1147                 }
1148
1149                 internal void FireValidated ()
1150                 {
1151                         OnValidated (EventArgs.Empty);
1152                 }
1153
1154                 internal virtual bool ProcessControlMnemonic(char charCode) {
1155                         return ProcessMnemonic(charCode);
1156                 }
1157
1158                 private static Control FindFlatForward(Control container, Control start) {
1159                         Control found;
1160                         int     index;
1161                         int     end;
1162
1163                         found = null;
1164                         end = container.child_controls.Count;
1165
1166                         if (start != null) {
1167                                 index = start.tab_index;
1168                         } else {
1169                                 index = -1;
1170                         }
1171
1172                         for (int i = 0, pos = -1; i < end; i++) {
1173                                 if (start == container.child_controls[i]) {
1174                                         pos = i;
1175                                         continue;
1176                                 }
1177
1178                                 if (found == null) {
1179                                         if (container.child_controls[i].tab_index > index || (pos > -1 && pos < i && container.child_controls[i].tab_index == index)) {
1180                                                 found = container.child_controls[i];
1181                                         }
1182                                 } else if (found.tab_index > container.child_controls[i].tab_index) {
1183                                         if (container.child_controls[i].tab_index > index) {
1184                                                 found = container.child_controls[i];
1185                                         }
1186                                 }
1187                         }
1188                         return found;
1189                 }
1190
1191                 private static Control FindControlForward(Control container, Control start) {
1192                         Control found;
1193
1194                         found = null;
1195
1196                         if (start == null) {
1197                                 return FindFlatForward(container, start);
1198                         }
1199
1200                         if (start.child_controls != null && start.child_controls.Count > 0 && 
1201                                 (start == container || !((start is IContainerControl) &&  start.GetStyle(ControlStyles.ContainerControl)))) {
1202                                 return FindControlForward(start, null);
1203                         }
1204                         else {
1205                                 while (start != container) {
1206                                         found = FindFlatForward(start.parent, start);
1207                                         if (found != null) {
1208                                                 return found;
1209                                         }
1210                                         start = start.parent;
1211                                 }
1212                         }
1213                         return null;
1214                 }
1215
1216                 private static Control FindFlatBackward(Control container, Control start) {
1217                         Control found;
1218                         int     index;
1219                         int     end;
1220
1221                         found = null;
1222                         end = container.child_controls.Count;
1223
1224                         if (start != null) {
1225                                 index = start.tab_index;
1226                         } else {
1227                                 // FIXME: Possible speed-up: Keep the highest taborder index in the container
1228                                 index = -1;
1229                                 for (int i = 0; i < end; i++) {
1230                                         if (container.child_controls[i].tab_index > index) {
1231                                                 index = container.child_controls[i].tab_index;
1232                                         }
1233                                 }
1234                                 index++;
1235                         }
1236
1237                         bool hit = false;
1238                                         
1239                         for (int i = end - 1; i >= 0; i--) {
1240                                 if (start == container.child_controls[i]) {
1241                                         hit = true;
1242                                         continue;
1243                                 }
1244
1245                                 if (found == null || found.tab_index < container.child_controls[i].tab_index) {
1246                                         if (container.child_controls[i].tab_index < index || (hit && container.child_controls[i].tab_index == index))
1247                                                 found = container.child_controls[i];
1248
1249                                 }
1250                         }
1251                         return found;
1252                 }
1253
1254                 private static Control FindControlBackward(Control container, Control start) {
1255
1256                         Control found = null;
1257
1258                         if (start == null) {
1259                                 found = FindFlatBackward(container, start);
1260                         }
1261                         else if (start != container) {
1262                                 if (start.parent != null) {
1263                                         found = FindFlatBackward(start.parent, start);
1264
1265                                         if (found == null) {
1266                                                 if (start.parent != container)
1267                                                         return start.parent;
1268                                                 return null;
1269                                         }
1270                                 }
1271                         }
1272                 
1273                         if (found == null || start.parent == null)
1274                                 found = start;
1275
1276                         while (found != null && (found == container || (!((found is IContainerControl) && found.GetStyle(ControlStyles.ContainerControl))) &&
1277                                 found.child_controls != null && found.child_controls.Count > 0)) {
1278 //                              while (ctl.child_controls != null && ctl.child_controls.Count > 0 && 
1279 //                                      (ctl == this || (!((ctl is IContainerControl) && ctl.GetStyle(ControlStyles.ContainerControl))))) {
1280                                 found = FindFlatBackward(found, null);
1281                         }
1282
1283                         return found;
1284
1285 /*
1286                         Control found;
1287
1288                         found = null;
1289
1290                         if (start != null) {
1291                                 found = FindFlatBackward(start.parent, start);
1292                                 if (found == null) {
1293                                         if (start.parent != container) {
1294                                                 return start.parent;
1295                                         }
1296                                 }
1297                         }
1298                         if (found == null) {
1299                                 found = FindFlatBackward(container, start);
1300                         }
1301
1302                         if (container != start) {
1303                                 while ((found != null) && (!found.Contains(start)) && found.child_controls != null && found.child_controls.Count > 0 && !(found is IContainerControl)) {// || found.GetStyle(ControlStyles.ContainerControl))) {
1304                                         found = FindControlBackward(found, null);
1305                                          if (found != null) {
1306                                                 return found;
1307                                         }
1308                                 }
1309                         }
1310                         return found;
1311 */                      
1312                 }
1313
1314                 internal virtual void HandleClick(int clicks, MouseEventArgs me) {
1315                         if (GetStyle(ControlStyles.StandardClick)) {
1316                                 if ((clicks > 1) && GetStyle(ControlStyles.StandardDoubleClick)) {
1317 #if !NET_2_0
1318                                         OnDoubleClick(EventArgs.Empty);
1319                                 } else {
1320                                         OnClick(EventArgs.Empty);
1321 #else
1322                                         OnDoubleClick(me);
1323                                 } else {
1324                                         OnClick(me);
1325 #endif
1326                                 }
1327                         }
1328                 }
1329
1330                 private void CheckDataBindings ()
1331                 {
1332                         if (data_bindings == null)
1333                                 return;
1334
1335                         BindingContext binding_context = BindingContext;
1336                         foreach (Binding binding in data_bindings) {
1337                                 binding.Check (binding_context);
1338                         }
1339                 }
1340
1341                 private void ChangeParent(Control new_parent) {
1342                         bool            pre_enabled;
1343                         bool            pre_visible;
1344                         Font            pre_font;
1345                         Color           pre_fore_color;
1346                         Color           pre_back_color;
1347                         RightToLeft     pre_rtl;
1348
1349                         // These properties are inherited from our parent
1350                         // Get them pre parent-change and then send events
1351                         // if they are changed after we have our new parent
1352                         pre_enabled = Enabled;
1353                         pre_visible = Visible;
1354                         pre_font = Font;
1355                         pre_fore_color = ForeColor;
1356                         pre_back_color = BackColor;
1357                         pre_rtl = RightToLeft;
1358                         // MS doesn't seem to send a CursorChangedEvent
1359
1360                         parent = new_parent;
1361
1362                         if (IsHandleCreated)
1363                                 XplatUI.SetParent(Handle,
1364                                                   (new_parent == null || !new_parent.IsHandleCreated) ? IntPtr.Zero : new_parent.Handle);
1365
1366                         OnParentChanged(EventArgs.Empty);
1367
1368                         if (pre_enabled != Enabled) {
1369                                 OnEnabledChanged(EventArgs.Empty);
1370                         }
1371
1372                         if (pre_visible != Visible) {
1373                                 OnVisibleChanged(EventArgs.Empty);
1374                         }
1375
1376                         if (pre_font != Font) {
1377                                 OnFontChanged(EventArgs.Empty);
1378                         }
1379
1380                         if (pre_fore_color != ForeColor) {
1381                                 OnForeColorChanged(EventArgs.Empty);
1382                         }
1383
1384                         if (pre_back_color != BackColor) {
1385                                 OnBackColorChanged(EventArgs.Empty);
1386                         }
1387
1388                         if (pre_rtl != RightToLeft) {
1389                                 // MS sneaks a OnCreateControl and OnHandleCreated in here, I guess
1390                                 // because when RTL changes they have to recreate the win32 control
1391                                 // We don't really need that (until someone runs into compatibility issues)
1392                                 OnRightToLeftChanged(EventArgs.Empty);
1393                         }
1394
1395                         if ((new_parent != null) && new_parent.Created && !Created) {
1396                                 CreateControl();
1397                         }
1398
1399                         if ((binding_context == null) && Created) {
1400                                 OnBindingContextChanged(EventArgs.Empty);
1401                         }
1402                 }
1403
1404                 private void UpdateDistances() {
1405                         if ((parent != null) && (parent.layout_suspended == 0)) {
1406                                 dist_left = bounds.X;
1407                                 dist_top = bounds.Y;
1408                                 dist_right = parent.ClientSize.Width - bounds.X - bounds.Width;
1409                                 dist_bottom = parent.ClientSize.Height - bounds.Y - bounds.Height;
1410                         }
1411                 }
1412                 #endregion      // Private & Internal Methods
1413
1414                 #region Public Static Properties
1415                 public static Color DefaultBackColor {
1416                         get {
1417                                 return ThemeEngine.Current.DefaultControlBackColor;
1418                         }
1419                 }
1420
1421                 public static Font DefaultFont {
1422                         get {
1423                                 return ThemeEngine.Current.DefaultFont;
1424                         }
1425                 }
1426
1427                 public static Color DefaultForeColor {
1428                         get {
1429                                 return ThemeEngine.Current.DefaultControlForeColor;
1430                         }
1431                 }
1432
1433                 public static Keys ModifierKeys {
1434                         get {
1435                                 return XplatUI.State.ModifierKeys;
1436                         }
1437                 }
1438
1439                 public static MouseButtons MouseButtons {
1440                         get {
1441                                 return XplatUI.State.MouseButtons;
1442                         }
1443                 }
1444
1445                 public static Point MousePosition {
1446                         get {
1447                                 return Cursor.Position;
1448                         }
1449                 }
1450                 
1451 #if NET_2_0
1452                 [MonoTODO]
1453                 public static bool CheckForIllegalCrossThreadCalls 
1454                 {
1455                         get {
1456                                 return verify_thread_handle;
1457                         }
1458
1459                         set {
1460                                 verify_thread_handle = value;
1461                         }
1462                 }
1463 #endif
1464                 #endregion      // Public Static Properties
1465
1466                 #region Public Instance Properties
1467                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1468                 [Browsable(false)]
1469                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1470                 public AccessibleObject AccessibilityObject {
1471                         get {
1472                                 if (accessibility_object==null) {
1473                                         accessibility_object=CreateAccessibilityInstance();
1474                                 }
1475                                 return accessibility_object;
1476                         }
1477                 }
1478
1479                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1480                 [Browsable(false)]
1481                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1482                 public string AccessibleDefaultActionDescription {
1483                         get {
1484                                 return AccessibilityObject.default_action;
1485                         }
1486
1487                         set {
1488                                 AccessibilityObject.default_action=value;
1489                         }
1490                 }
1491
1492                 [Localizable(true)]
1493                 [DefaultValue(null)]
1494                 [MWFCategory("Accessibility")]
1495                 public string AccessibleDescription {
1496                         get {
1497                                 return AccessibilityObject.description;
1498                         }
1499
1500                         set {
1501                                 AccessibilityObject.description=value;
1502                         }
1503                 }
1504
1505                 [Localizable(true)]
1506                 [DefaultValue(null)]
1507                 [MWFCategory("Accessibility")]
1508                 public string AccessibleName {
1509                         get {
1510                                 return AccessibilityObject.Name;
1511                         }
1512
1513                         set {
1514                                 AccessibilityObject.Name=value;
1515                         }
1516                 }
1517
1518                 [DefaultValue(AccessibleRole.Default)]
1519                 [MWFDescription("Role of the control"), MWFCategory("Accessibility")]
1520                 public AccessibleRole AccessibleRole {
1521                         get {
1522                                 return AccessibilityObject.role;
1523                         }
1524
1525                         set {
1526                                 AccessibilityObject.role=value;
1527                         }
1528                 }
1529
1530                 [DefaultValue(false)]
1531                 [MWFCategory("Behavior")]
1532                 public virtual bool AllowDrop {
1533                         get {
1534                                 return allow_drop;
1535                         }
1536
1537                         set {
1538                                 if (allow_drop == value)
1539                                         return;
1540                                 allow_drop = value;
1541                                 if (IsHandleCreated) {
1542                                         UpdateStyles();
1543                                         XplatUI.SetAllowDrop (Handle, value);
1544                                 }
1545                         }
1546                 }
1547
1548                 [Localizable(true)]
1549                 [RefreshProperties(RefreshProperties.Repaint)]
1550                 [DefaultValue(AnchorStyles.Top | AnchorStyles.Left)]
1551                 [MWFCategory("Layout")]
1552                 public virtual AnchorStyles Anchor {
1553                         get {
1554                                 return anchor_style;
1555                         }
1556
1557                         set {
1558                                 anchor_style=value;
1559
1560                                 if (parent != null) {
1561                                         parent.PerformLayout(this, "Parent");
1562                                 }
1563                         }
1564                 }
1565
1566 #if NET_2_0
1567                 // XXX: Implement me!
1568                 bool auto_size;
1569
1570                 public virtual bool AutoSize {
1571                         get {
1572                                 //Console.Error.WriteLine("Unimplemented: Control::get_AutoSize()");
1573                                 return auto_size;
1574                         }
1575                         set {
1576                                 Console.Error.WriteLine("Unimplemented: Control::set_AutoSize(bool)");
1577                                 auto_size = value;
1578                         }
1579                 }
1580
1581                 public virtual Size MaximumSize {
1582                         get {
1583                                 return maximum_size;
1584                         }
1585                         set {
1586                                 maximum_size = value;
1587                         }
1588                 }
1589
1590                 public virtual Size MinimumSize {
1591                         get {
1592                                 return minimum_size;
1593                         }
1594                         set {
1595                                 minimum_size = value;
1596                         }
1597                 }
1598 #endif // NET_2_0
1599
1600                 [DispId(-501)]
1601                 [MWFCategory("Appearance")]
1602                 public virtual Color BackColor {
1603                         get {
1604                                 if (background_color.IsEmpty) {
1605                                         if (parent!=null) {
1606                                                 Color pcolor = parent.BackColor;
1607                                                 if (pcolor.A == 0xff || GetStyle(ControlStyles.SupportsTransparentBackColor))
1608                                                         return pcolor;
1609                                         }
1610                                         return DefaultBackColor;
1611                                 }
1612                                 return background_color;
1613                         }
1614
1615                         set {
1616                                 if (!value.IsEmpty && (value.A != 0xff) && !GetStyle(ControlStyles.SupportsTransparentBackColor)) {
1617                                         throw new ArgumentException("Transparent background colors are not supported on this control");
1618                                 }
1619
1620                                 if (background_color != value) {
1621                                         background_color=value;
1622                                         SetChildColor(this);
1623                                         OnBackColorChanged(EventArgs.Empty);
1624                                         Invalidate();
1625                                 }
1626                         }
1627                 }
1628
1629                 [Localizable(true)]
1630                 [DefaultValue(null)]
1631                 [MWFCategory("Appearance")]
1632                 public virtual Image BackgroundImage {
1633                         get {
1634                                 return background_image;
1635                         }
1636
1637                         set {
1638                                 if (background_image!=value) {
1639                                         background_image=value;
1640                                         OnBackgroundImageChanged(EventArgs.Empty);
1641                                         Invalidate ();
1642                                 }
1643                         }
1644                 }
1645
1646                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1647                 [Browsable(false)]
1648                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1649                 public virtual BindingContext BindingContext {
1650                         get {
1651                                 if (binding_context != null)
1652                                         return binding_context;
1653                                 if (Parent == null)
1654                                         return null;
1655                                 binding_context = Parent.BindingContext;
1656                                 return binding_context;
1657                         }
1658                         set {
1659                                 if (binding_context != value) {
1660                                         binding_context = value;
1661                                         OnBindingContextChanged(EventArgs.Empty);
1662                                 }
1663                         }
1664                 }
1665
1666                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1667                 [Browsable(false)]
1668                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1669                 public int Bottom {
1670                         get {
1671                                 return bounds.Y+bounds.Height;
1672                         }
1673                 }
1674
1675                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1676                 [Browsable(false)]
1677                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1678                 public Rectangle Bounds {
1679                         get {
1680                                 return this.bounds;
1681                         }
1682
1683                         set {
1684                                 SetBounds(value.Left, value.Top, value.Width, value.Height, BoundsSpecified.All);
1685                         }
1686                 }
1687
1688                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1689                 [Browsable(false)]
1690                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1691                 public bool CanFocus {
1692                         get {
1693                                 if (IsHandleCreated && Visible && Enabled) {
1694                                         return true;
1695                                 }
1696                                 return false;
1697                         }
1698                 }
1699
1700                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1701                 [Browsable(false)]
1702                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1703                 public bool CanSelect {
1704                         get {
1705                                 Control parent;
1706
1707                                 if (!GetStyle(ControlStyles.Selectable)) {
1708                                         return false;
1709                                 }
1710
1711                                 parent = this;
1712                                 while (parent != null) {
1713                                         if (!parent.is_visible || !parent.is_enabled) {
1714                                                 return false;
1715                                         }
1716
1717                                         parent = parent.parent;
1718                                 }
1719                                 return true;
1720                         }
1721                 }
1722
1723                 internal virtual bool InternalCapture {
1724                         get {
1725                                 return Capture;
1726                         }
1727
1728                         set {
1729                                 Capture = value;
1730                         }
1731                 }
1732
1733                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1734                 [Browsable(false)]
1735                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1736                 public bool Capture {
1737                         get {
1738                                 return this.is_captured;
1739                         }
1740
1741                         set {
1742                                 if (this.IsHandleCreated && value != is_captured) {
1743                                         if (value) {
1744                                                 is_captured = true;
1745                                                 XplatUI.GrabWindow(this.window.Handle, IntPtr.Zero);
1746                                         } else {
1747                                                 XplatUI.UngrabWindow(this.window.Handle);
1748                                                 is_captured = false;
1749                                         }
1750                                 }
1751                         }
1752                 }
1753
1754                 [DefaultValue(true)]
1755                 [MWFCategory("Focus")]
1756                 public bool CausesValidation {
1757                         get {
1758                                 return this.causes_validation;
1759                         }
1760
1761                         set {
1762                                 if (this.causes_validation != value) {
1763                                         causes_validation = value;
1764                                         OnCausesValidationChanged(EventArgs.Empty);
1765                                 }
1766                         }
1767                 }
1768
1769                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1770                 [Browsable(false)]
1771                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1772                 public Rectangle ClientRectangle {
1773                         get {
1774                                 client_rect.Width = client_size.Width;
1775                                 client_rect.Height = client_size.Height;
1776                                 return client_rect;
1777                         }
1778                 }
1779
1780                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1781                 [Browsable(false)]
1782                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1783                 public Size ClientSize {
1784                         get {
1785 #if notneeded
1786                                 if ((this is Form) && (((Form)this).form_parent_window != null)) {
1787                                         return ((Form)this).form_parent_window.ClientSize;
1788                                 }
1789 #endif
1790
1791                                 return client_size;
1792                         }
1793
1794                         set {
1795                                 this.SetClientSizeCore(value.Width, value.Height);
1796                         }
1797                 }
1798
1799                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1800                 [Browsable(false)]
1801                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1802                 [DescriptionAttribute("ControlCompanyNameDescr")]
1803                 public String CompanyName {
1804                         get {
1805                                 return "Mono Project, Novell, Inc.";
1806                         }
1807                 }
1808
1809                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1810                 [Browsable(false)]
1811                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1812                 public bool ContainsFocus {
1813                         get {
1814                                 IntPtr focused_window;
1815
1816                                 focused_window = XplatUI.GetFocus();
1817                                 if (IsHandleCreated) {
1818                                         if (focused_window == Handle) {
1819                                                 return true;
1820                                         }
1821
1822                                         for (int i=0; i < child_controls.Count; i++) {
1823                                                 if (child_controls[i].ContainsFocus) {
1824                                                         return true;
1825                                                 }
1826                                         }
1827                                 }
1828                                 return false;
1829                         }
1830                 }
1831
1832                 [DefaultValue(null)]
1833                 [MWFCategory("Behavior")]
1834                 public virtual ContextMenu ContextMenu {
1835                         get {
1836                                 return context_menu;
1837                         }
1838
1839                         set {
1840                                 if (context_menu != value) {
1841                                         context_menu = value;
1842                                         OnContextMenuChanged(EventArgs.Empty);
1843                                 }
1844                         }
1845                 }
1846
1847                 [Browsable(false)]
1848                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1849                 public ControlCollection Controls {
1850                         get {
1851                                 return this.child_controls;
1852                         }
1853                 }
1854
1855                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1856                 [Browsable(false)]
1857                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1858                 public bool Created {
1859                         get {
1860                                 return (!is_disposed && is_created);
1861                         }
1862                 }
1863
1864                 [AmbientValue(null)]
1865                 [MWFCategory("Appearance")]
1866                 public virtual Cursor Cursor {
1867                         get {
1868                                 if (cursor != null) {
1869                                         return cursor;
1870                                 }
1871
1872                                 if (parent != null) {
1873                                         return parent.Cursor;
1874                                 }
1875
1876                                 return Cursors.Default;
1877                         }
1878
1879                         set {
1880                                 if (cursor != value) {
1881                                         Point pt;
1882
1883                                         cursor = value;
1884                                         
1885                                         if (IsHandleCreated) {
1886                                                 pt = Cursor.Position;
1887
1888                                                 if (bounds.Contains(pt) || Capture) {
1889                                                         if (GetChildAtPoint(pt) == null) {
1890                                                                 if (cursor != null) {
1891                                                                         XplatUI.SetCursor(window.Handle, cursor.handle);
1892                                                                 } else {
1893                                                                         if (parent != null) {
1894                                                                                 XplatUI.SetCursor(window.Handle, parent.Cursor.handle);
1895                                                                         } else {
1896                                                                                 XplatUI.SetCursor(window.Handle, Cursors.Default.handle);
1897                                                                         }
1898                                                                 }
1899                                                         }
1900                                                 }
1901                                         }
1902
1903                                         OnCursorChanged(EventArgs.Empty);
1904                                 }
1905                         }
1906                 }
1907
1908
1909                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1910                 [ParenthesizePropertyName(true)]
1911                 [RefreshProperties(RefreshProperties.All)]
1912                 [MWFCategory("Data")]
1913                 public ControlBindingsCollection DataBindings {
1914                         get {
1915                                 if (data_bindings == null)
1916                                         data_bindings = new ControlBindingsCollection (this);
1917                                 return data_bindings;
1918                         }
1919                 }
1920
1921                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1922                 [Browsable(false)]
1923                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1924                 public virtual Rectangle DisplayRectangle {
1925                         get {
1926                                 return ClientRectangle;
1927                         }
1928                 }
1929
1930                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1931                 [Browsable(false)]
1932                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1933                 public bool Disposing {
1934                         get {
1935                                 return is_disposed;
1936                         }
1937                 }
1938
1939                 [Localizable(true)]
1940                 [RefreshProperties(RefreshProperties.Repaint)]
1941                 [DefaultValue(DockStyle.None)]
1942                 [MWFCategory("Layout")]
1943                 public virtual DockStyle Dock {
1944                         get {
1945                                 return dock_style;
1946                         }
1947
1948                         set {
1949                                 if (dock_style == value) {
1950                                         return;
1951                                 }
1952
1953                                 if (!Enum.IsDefined (typeof (DockStyle), value)) {
1954                                         throw new InvalidEnumArgumentException ("value", (int) value,
1955                                                 typeof (DockStyle));
1956                                 }
1957
1958                                 dock_style = value;
1959
1960                                 if (dock_style == DockStyle.None) {
1961                                         if (explicit_bounds == Rectangle.Empty)
1962                                                 Bounds = new Rectangle (new Point (0, 0), DefaultSize);
1963                                         else
1964                                                 Bounds = explicit_bounds;
1965                                 }
1966
1967                                 if (parent != null) {
1968                                         parent.PerformLayout(this, "Parent");
1969                                 }
1970
1971                                 OnDockChanged(EventArgs.Empty);
1972                         }
1973                 }
1974
1975                 [DispId(-514)]
1976                 [Localizable(true)]
1977                 [MWFCategory("Behavior")]
1978                 public bool Enabled {
1979                         get {
1980                                 if (!is_enabled) {
1981                                         return false;
1982                                 }
1983
1984                                 if (parent != null) {
1985                                         return parent.Enabled;
1986                                 }
1987
1988                                 return true;
1989                         }
1990
1991                         set {
1992
1993                                 bool old_value = is_enabled;
1994
1995                                 is_enabled = value;
1996                                 if (old_value != value && !value && this.has_focus)
1997                                         SelectNextControl(this, true, true, true, true);
1998
1999                                 OnEnabledChanged (EventArgs.Empty);
2000                         }
2001                 }
2002
2003                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2004                 [Browsable(false)]
2005                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2006                 public virtual bool Focused {
2007                         get {
2008                                 return this.has_focus;
2009                         }
2010                 }
2011
2012                 [DispId(-512)]
2013                 [AmbientValue(null)]
2014                 [Localizable(true)]
2015                 [MWFCategory("Appearance")]
2016                 public virtual Font Font {
2017                         get {
2018                                 if (font != null) {
2019                                         return font;
2020                                 }
2021
2022                                 if (Parent != null && Parent.Font != null) {
2023                                         return Parent.Font;
2024                                 }
2025
2026                                 return DefaultFont;
2027                         }
2028
2029                         [param:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Font))]
2030                         set {
2031                                 if (font != null && font.Equals (value)) {
2032                                         return;
2033                                 }
2034
2035                                 font = value;
2036                                 Invalidate();
2037                                 OnFontChanged (EventArgs.Empty);
2038                         }
2039                 }
2040
2041                 [DispId(-513)]
2042                 [MWFCategory("Appearance")]
2043                 public virtual Color ForeColor {
2044                         get {
2045                                 if (foreground_color.IsEmpty) {
2046                                         if (parent!=null) {
2047                                                 return parent.ForeColor;
2048                                         }
2049                                         return DefaultForeColor;
2050                                 }
2051                                 return foreground_color;
2052                         }
2053
2054                         set {
2055                                 if (foreground_color != value) {
2056                                         foreground_color=value;
2057                                         Invalidate();
2058                                         OnForeColorChanged(EventArgs.Empty);
2059                                 }
2060                         }
2061                 }
2062
2063                 [DispId(-515)]
2064                 [Browsable(false)]
2065                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2066                 public IntPtr Handle {                                                  // IWin32Window
2067                         get {
2068 #if NET_2_0
2069                                 if (verify_thread_handle) {
2070                                         if (this.InvokeRequired) {
2071                                                 throw new InvalidOperationException("Cross-thread access of handle detected. Handle access only valid on thread that created the control");
2072                                         }
2073                                 }
2074 #endif
2075                                 if (!IsHandleCreated) {
2076                                         CreateHandle();
2077                                 }
2078                                 return window.Handle;
2079                         }
2080                 }
2081
2082                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2083                 [Browsable(false)]
2084                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2085                 public bool HasChildren {
2086                         get {
2087                                 if (this.child_controls.Count>0) {
2088                                         return true;
2089                                 }
2090                                 return false;
2091                         }
2092                 }
2093
2094                 [EditorBrowsable(EditorBrowsableState.Always)]
2095                 [Browsable(false)]
2096                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2097                 public int Height {
2098                         get {
2099                                 return this.bounds.Height;
2100                         }
2101
2102                         set {
2103                                 SetBounds(bounds.X, bounds.Y, bounds.Width, value, BoundsSpecified.Height);
2104                         }
2105                 }
2106
2107                 [AmbientValue(ImeMode.Inherit)]
2108                 [Localizable(true)]
2109                 [MWFCategory("Behavior")]
2110                 public ImeMode ImeMode {
2111                         get {
2112                                 if (ime_mode == ImeMode.Inherit) {
2113                                         if (parent != null)
2114                                                 return parent.ImeMode;
2115                                         else
2116                                                 return ImeMode.NoControl; // default value
2117                                 }
2118                                 return ime_mode;
2119                         }
2120
2121                         set {
2122                                 if (ime_mode != value) {
2123                                         ime_mode = value;
2124
2125                                         OnImeModeChanged(EventArgs.Empty);
2126                                 }
2127                         }
2128                 }
2129
2130                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2131                 [Browsable(false)]
2132                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2133                 public bool InvokeRequired {                                            // ISynchronizeInvoke
2134                         get {
2135                                 if (creator_thread != null && creator_thread!=Thread.CurrentThread) {
2136                                         return true;
2137                                 }
2138                                 return false;
2139                         }
2140                 }
2141
2142                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2143                 [Browsable(false)]
2144                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2145                 public bool IsAccessible {
2146                         get {
2147                                 return is_accessible;
2148                         }
2149
2150                         set {
2151                                 is_accessible = value;
2152                         }
2153                 }
2154
2155                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2156                 [Browsable(false)]
2157                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2158                 public bool IsDisposed {
2159                         get {
2160                                 return this.is_disposed;
2161                         }
2162                 }
2163
2164                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2165                 [Browsable(false)]
2166                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2167                 public bool IsHandleCreated {
2168                         get {
2169                                 if ((window != null) && (window.Handle != IntPtr.Zero)) {
2170                                         Hwnd hwnd = Hwnd.ObjectFromHandle (window.Handle);
2171                                         if (hwnd != null && !hwnd.zombie)
2172                                                 return true;
2173                                 }
2174
2175                                 return false;
2176                         }
2177                 }
2178
2179 #if NET_2_0
2180                 public virtual Layout.LayoutEngine LayoutEngine {
2181                         get { return new Layout.DefaultLayout (); }
2182                 } 
2183 #endif
2184
2185                 [EditorBrowsable(EditorBrowsableState.Always)]
2186                 [Browsable(false)]
2187                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2188                 public int Left {
2189                         get {
2190                                 return this.bounds.X;
2191                         }
2192
2193                         set {
2194                                 SetBounds(value, bounds.Y, bounds.Width, bounds.Height, BoundsSpecified.X);
2195                         }
2196                 }
2197
2198                 [Localizable(true)]
2199                 [MWFCategory("Layout")]
2200                 public Point Location {
2201                         get {
2202                                 return new Point(bounds.X, bounds.Y);
2203                         }
2204
2205                         set {
2206                                 SetBounds(value.X, value.Y, bounds.Width, bounds.Height, BoundsSpecified.Location);
2207                         }
2208                 }
2209
2210 #if NET_2_0
2211                 [Localizable (true)]
2212                 public Padding Margin {
2213                         get { return this.margin; }
2214                         set { this.margin = value; }
2215                 }
2216 #endif
2217
2218                 [Browsable(false)]
2219                 public string Name {
2220                         get {
2221                                 return name;
2222                         }
2223
2224                         set {
2225                                 name = value;
2226                         }
2227                 }
2228
2229 #if NET_2_0
2230                 [Localizable(true)]
2231                 public Padding Padding {
2232                         get {
2233                                 return padding;
2234                         }
2235
2236                         set {
2237                                 padding = value;
2238                         }
2239                 }
2240 #endif
2241
2242                 [Browsable(false)]
2243                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2244                 public Control Parent {
2245                         get {
2246                                 return this.parent;
2247                         }
2248
2249                         set {
2250                                 if (value == this) {
2251                                         throw new ArgumentException("A circular control reference has been made. A control cannot be owned or parented to itself.");
2252                                 }
2253
2254                                 if (parent!=value) {
2255                                         if (value==null) {
2256                                                 parent.Controls.Remove(this);
2257                                                 parent = null;
2258                                                 return;
2259                                         }
2260
2261                                         value.Controls.Add(this);
2262                                 }
2263                         }
2264                 }
2265
2266                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2267                 [Browsable(false)]
2268                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2269                 public string ProductName {
2270                         get {
2271                                 Type t = typeof (AssemblyProductAttribute);
2272                                 Assembly assembly = GetType().Module.Assembly;
2273                                 object [] attrs = assembly.GetCustomAttributes (t, false);
2274                                 AssemblyProductAttribute a = null;
2275                                 // On MS we get a NullRefException if product attribute is not
2276                                 // set. 
2277                                 if (attrs != null && attrs.Length > 0)
2278                                         a = (AssemblyProductAttribute) attrs [0];
2279                                 return a.Product;
2280                         }
2281                 }
2282
2283                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2284                 [Browsable(false)]
2285                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2286                 public string ProductVersion {
2287                         get {
2288                                 Type t = typeof (AssemblyVersionAttribute);
2289                                 Assembly assembly = GetType().Module.Assembly;
2290                                 object [] attrs = assembly.GetCustomAttributes (t, false);
2291                                 if (attrs == null || attrs.Length < 1)
2292                                         return "1.0.0.0";
2293                                 return ((AssemblyVersionAttribute)attrs [0]).Version;
2294                         }
2295                 }
2296
2297                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2298                 [Browsable(false)]
2299                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2300                 public bool RecreatingHandle {
2301                         get {
2302                                 return is_recreating;
2303                         }
2304                 }
2305
2306                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2307                 [Browsable(false)]
2308                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2309                 public Region Region {
2310                         get {
2311                                 return clip_region;
2312                         }
2313
2314                         set {
2315                                 if (IsHandleCreated) {
2316                                         XplatUI.SetClipRegion(Handle, value);
2317                                 }
2318                                 clip_region = value;
2319                         }
2320                 }
2321
2322                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2323                 [Browsable(false)]
2324                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2325                 public int Right {
2326                         get {
2327                                 return this.bounds.X+this.bounds.Width;
2328                         }
2329                 }
2330
2331                 [AmbientValue(RightToLeft.Inherit)]
2332                 [Localizable(true)]
2333                 [MWFCategory("Appearance")]
2334                 public virtual RightToLeft RightToLeft {
2335                         get {
2336                                 if (right_to_left == RightToLeft.Inherit) {
2337                                         if (parent != null)
2338                                                 return parent.RightToLeft;
2339                                         else
2340                                                 return RightToLeft.No; // default value
2341                                 }
2342                                 return right_to_left;
2343                         }
2344
2345                         set {
2346                                 if (value != right_to_left) {
2347                                         right_to_left = value;
2348                                         OnRightToLeftChanged(EventArgs.Empty);
2349                                 }
2350                         }
2351                 }
2352
2353                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2354                 public override ISite Site {
2355                         get {
2356                                 return base.Site;
2357                         }
2358
2359                         set {
2360                                 base.Site = value;
2361
2362                                 if (value != null) {
2363                                         AmbientProperties ap = (AmbientProperties) value.GetService (typeof (AmbientProperties));
2364                                         if (ap != null) {
2365                                                 BackColor = ap.BackColor;
2366                                                 ForeColor = ap.ForeColor;
2367                                                 Cursor = ap.Cursor;
2368                                                 Font = ap.Font;
2369                                         }
2370                                 }
2371                         }
2372                 }
2373
2374                 [Localizable(true)]
2375                 [MWFCategory("Layout")]
2376                 public Size Size {
2377                         get {
2378                                 return new Size(Width, Height);
2379                         }
2380
2381                         set {
2382                                 SetBounds(bounds.X, bounds.Y, value.Width, value.Height, BoundsSpecified.Size);
2383                         }
2384                 }
2385
2386                 [Localizable(true)]
2387                 [MergableProperty(false)]
2388                 [MWFCategory("Behavior")]
2389                 public int TabIndex {
2390                         get {
2391                                 if (tab_index != -1) {
2392                                         return tab_index;
2393                                 }
2394                                 return 0;
2395                         }
2396
2397                         set {
2398                                 if (tab_index != value) {
2399                                         tab_index = value;
2400                                         OnTabIndexChanged(EventArgs.Empty);
2401                                 }
2402                         }
2403                 }
2404
2405                 [DispId(-516)]
2406                 [DefaultValue(true)]
2407                 [MWFCategory("Behavior")]
2408                 public bool TabStop {
2409                         get {
2410                                 return tab_stop;
2411                         }
2412
2413                         set {
2414                                 if (tab_stop != value) {
2415                                         tab_stop = value;
2416                                         OnTabStopChanged(EventArgs.Empty);
2417                                 }
2418                         }
2419                 }
2420
2421                 [Localizable(false)]
2422                 [Bindable(true)]
2423                 [TypeConverter(typeof(StringConverter))]
2424                 [DefaultValue(null)]
2425                 [MWFCategory("Data")]
2426                 public object Tag {
2427                         get {
2428                                 return control_tag;
2429                         }
2430
2431                         set {
2432                                 control_tag = value;
2433                         }
2434                 }
2435
2436                 [DispId(-517)]
2437                 [Localizable(true)]
2438                 [BindableAttribute(true)]
2439                 [MWFCategory("Appearance")]
2440                 public virtual string Text {
2441                         get {
2442                                 // Our implementation ignores ControlStyles.CacheText - we always cache
2443                                 return this.text;
2444                         }
2445
2446                         set {
2447                                 if (value == null) {
2448                                         value = String.Empty;
2449                                 }
2450
2451                                 if (text!=value) {
2452                                         text=value;
2453                                         if (IsHandleCreated) {
2454                                                 /* we need to call .SetWindowStyle here instead of just .Text
2455                                                    because the presence/absence of Text (== "" or not) can cause
2456                                                    other window style things to appear/disappear */
2457                                                 XplatUI.SetWindowStyle(window.Handle, CreateParams);
2458                                                 XplatUI.Text(Handle, text);
2459                                         }
2460                                         OnTextChanged (EventArgs.Empty);
2461                                 }
2462                         }
2463                 }
2464
2465                 [EditorBrowsable(EditorBrowsableState.Always)]
2466                 [Browsable(false)]
2467                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2468                 public int Top {
2469                         get {
2470                                 return this.bounds.Y;
2471                         }
2472
2473                         set {
2474                                 SetBounds(bounds.X, value, bounds.Width, bounds.Height, BoundsSpecified.Y);
2475                         }
2476                 }
2477
2478                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2479                 [Browsable(false)]
2480                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2481                 public Control TopLevelControl {
2482                         get {
2483                                 Control p = this;
2484
2485                                 while (p.parent != null) {
2486                                         p = p.parent;
2487                                 }
2488
2489                                 return p is Form ? p : null;
2490                         }
2491                 }
2492
2493                 [Localizable(true)]
2494                 [MWFCategory("Behavior")]
2495                 public bool Visible {
2496                         get {
2497                                 if (!is_visible) {
2498                                         return false;
2499                                 } else if (parent != null) {
2500                                         return parent.Visible;
2501                                 }
2502
2503                                 return true;
2504                         }
2505
2506                         set {
2507                                 SetVisibleCore(value);
2508                         }
2509                 }
2510
2511                 [EditorBrowsable(EditorBrowsableState.Always)]
2512                 [Browsable(false)]
2513                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2514                 public int Width {
2515                         get {
2516                                 return this.bounds.Width;
2517                         }
2518
2519                         set {
2520                                 SetBounds(bounds.X, bounds.Y, value, bounds.Height, BoundsSpecified.Width);
2521                         }
2522                 }
2523
2524                 [EditorBrowsable(EditorBrowsableState.Never)]
2525                 [Browsable(false)]
2526                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2527                 public IWindowTarget WindowTarget {
2528                         get {
2529                                 return null;
2530                         }
2531
2532                         set {
2533                                 ;       // MS Internal
2534                         }
2535                 }
2536                 #endregion      // Public Instance Properties
2537
2538                 #region Protected Instance Properties
2539                 protected virtual CreateParams CreateParams {
2540                         get {
2541                                 CreateParams create_params = new CreateParams();
2542
2543                                 try {
2544                                         create_params.Caption = Text;
2545                                 }
2546                                 catch {
2547                                         create_params.Caption = text;
2548                                 }
2549
2550                                 try {
2551                                         create_params.X = Left;
2552                                 }
2553                                 catch {
2554                                         create_params.X = this.bounds.X;
2555                                 }
2556
2557                                 try {
2558                                         create_params.Y = Top;
2559                                 }
2560                                 catch {
2561                                         create_params.Y = this.bounds.Y;
2562                                 }
2563
2564                                 try {
2565                                         create_params.Width = Width;
2566                                 }
2567                                 catch {
2568                                         create_params.Width = this.bounds.Width;
2569                                 }
2570
2571                                 try {
2572                                         create_params.Height = Height;
2573                                 }
2574                                 catch {
2575                                         create_params.Height = this.bounds.Height;
2576                                 }
2577
2578
2579                                 create_params.ClassName = XplatUI.DefaultClassName;
2580                                 create_params.ClassStyle = 0;
2581                                 create_params.ExStyle = 0;
2582                                 create_params.Param = 0;
2583
2584                                 if (allow_drop) {
2585                                         create_params.ExStyle |= (int)WindowExStyles.WS_EX_ACCEPTFILES;
2586                                 }
2587
2588                                 if ((parent!=null) && (parent.IsHandleCreated)) {
2589                                         create_params.Parent = parent.Handle;
2590                                 }
2591
2592                                 create_params.Style = (int)WindowStyles.WS_CHILD | (int)WindowStyles.WS_CLIPCHILDREN | (int)WindowStyles.WS_CLIPSIBLINGS;
2593
2594                                 if (is_visible) {
2595                                         create_params.Style |= (int)WindowStyles.WS_VISIBLE;
2596                                 }
2597
2598                                 if (!is_enabled) {
2599                                         create_params.Style |= (int)WindowStyles.WS_DISABLED;
2600                                 }
2601
2602                                 switch (border_style) {
2603                                 case BorderStyle.FixedSingle:
2604                                         create_params.Style |= (int) WindowStyles.WS_BORDER;
2605                                         break;
2606                                 case BorderStyle.Fixed3D:
2607                                         create_params.ExStyle |= (int) WindowExStyles.WS_EX_CLIENTEDGE;
2608                                         break;
2609                                 }
2610
2611                                 return create_params;
2612                         }
2613                 }
2614
2615                 protected virtual ImeMode DefaultImeMode {
2616                         get {
2617                                 return ImeMode.Inherit;
2618                         }
2619                 }
2620
2621 #if NET_2_0
2622                 protected virtual Padding DefaultMargin {
2623                         get { return new Padding (3); }
2624                 }
2625 #endif
2626
2627                 protected virtual Size DefaultSize {
2628                         get {
2629                                 return new Size(0, 0);
2630                         }
2631                 }
2632
2633                 protected int FontHeight {
2634                         get {
2635                                 return Font.Height;
2636                         }
2637
2638                         set {
2639                                 ;; // Nothing to do
2640                         }
2641                 }
2642
2643                 protected bool RenderRightToLeft {
2644                         get {
2645                                 return (this.right_to_left == RightToLeft.Yes);
2646                         }
2647                 }
2648
2649                 protected bool ResizeRedraw {
2650                         get {
2651                                 return GetStyle(ControlStyles.ResizeRedraw);
2652                         }
2653
2654                         set {
2655                                 SetStyle(ControlStyles.ResizeRedraw, value);
2656                         }
2657                 }
2658
2659                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2660                 [Browsable(false)]
2661                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2662                 protected virtual bool ShowFocusCues {
2663                         get {
2664                                 return true;
2665                         }
2666                 }
2667
2668                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2669                 [Browsable(false)]
2670                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2671                 protected bool ShowKeyboardCues {
2672                         get {
2673                                 return true;
2674                         }
2675                 }
2676                 #endregion      // Protected Instance Properties
2677
2678                 #region Public Static Methods
2679                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2680                 public static Control FromChildHandle(IntPtr handle) {
2681                         return Control.ControlNativeWindow.ControlFromChildHandle (handle);
2682                 }
2683
2684                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2685                 public static Control FromHandle(IntPtr handle) {
2686                         return Control.ControlNativeWindow.ControlFromHandle(handle);
2687                 }
2688
2689                 public static bool IsMnemonic(char charCode, string text) {
2690                         int amp;
2691
2692                         amp = text.IndexOf('&');
2693
2694                         if (amp != -1) {
2695                                 if (amp + 1 < text.Length) {
2696                                         if (text[amp + 1] != '&') {
2697                                                 if (Char.ToUpper(charCode) == Char.ToUpper(text.ToCharArray(amp + 1, 1)[0])) {
2698                                                         return true;
2699                                                 }       
2700                                         }
2701                                 }
2702                         }
2703                         return false;
2704                 }
2705                 #endregion
2706
2707                 #region Protected Static Methods
2708                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2709                 protected static bool ReflectMessage(IntPtr hWnd, ref Message m) {
2710                         Control c;
2711
2712                         c = Control.FromHandle(hWnd);
2713
2714                         if (c != null) {
2715                                 c.WndProc(ref m);
2716                                 return true;
2717                         }
2718                         return false;
2719                 }
2720                 #endregion
2721
2722                 #region Public Instance Methods
2723                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2724                 public IAsyncResult BeginInvoke(Delegate method) {
2725                         object [] prms = null;
2726                         if (method is EventHandler)
2727                                 prms = new object [] { this, EventArgs.Empty };
2728                         return BeginInvokeInternal(method, prms, false);
2729                 }
2730
2731                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2732                 public IAsyncResult BeginInvoke (Delegate method, object[] args) {
2733                         return BeginInvokeInternal (method, args, false);
2734                 }
2735
2736                 public void BringToFront() {
2737                         if (parent != null) {
2738                                 parent.child_controls.SetChildIndex(this, 0);
2739                                 parent.Refresh();
2740                         } else {
2741                                 XplatUI.SetZOrder(Handle, IntPtr.Zero, false, false);
2742                         }
2743                 }
2744
2745                 public bool Contains(Control ctl) {
2746                         while (ctl != null) {
2747                                 ctl = ctl.parent;
2748                                 if (ctl == this) {
2749                                         return true;
2750                                 }
2751                         }
2752                         return false;
2753                 }
2754
2755                 public void CreateControl() {
2756                         if (is_disposed) {
2757                                 throw new ObjectDisposedException(GetType().FullName.ToString());
2758                         }
2759                         if (is_created) {
2760                                 return;
2761                         }
2762
2763                         if (!IsHandleCreated) {
2764                                 CreateHandle();
2765                         }
2766
2767                         if (!is_created) {
2768                                 is_created = true;
2769                         }
2770
2771                         Control [] controls = child_controls.GetAllControls ();
2772                         for (int i=0; i<controls.Length; i++) {
2773                                 controls [i].CreateControl ();
2774                         }
2775
2776                         UpdateChildrenZOrder();
2777
2778                         if (binding_context == null) {  // seem to be sent whenever it's null?
2779                                 OnBindingContextChanged(EventArgs.Empty);
2780                         }
2781
2782                         OnCreateControl();
2783                 }
2784
2785                 public Graphics CreateGraphics() {
2786                         if (!IsHandleCreated) {
2787                                 this.CreateHandle();
2788                         }
2789                         return Graphics.FromHwnd(this.window.Handle);
2790                 }
2791
2792                 public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects) {
2793                         return XplatUI.StartDrag(this.window.Handle, data, allowedEffects);
2794                 }
2795
2796                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2797                 public object EndInvoke (IAsyncResult async_result) {
2798                         AsyncMethodResult result = (AsyncMethodResult) async_result;
2799                         return result.EndInvoke ();
2800                 }
2801
2802                 public Form FindForm() {
2803                         Control c;
2804
2805                         c = this;
2806                         while (c != null) {
2807                                 if (c is Form) {
2808                                         return (Form)c;
2809                                 }
2810                                 c = c.Parent;
2811                         }
2812                         return null;
2813                 }
2814
2815                 public bool Focus() {
2816                         if (CanFocus && IsHandleCreated && !has_focus && !is_focusing) {
2817                                 is_focusing = true;
2818                                 Select(this);
2819                                 is_focusing = false;
2820                         }
2821                         return has_focus;
2822                 }
2823
2824                 public Control GetChildAtPoint(Point pt) {
2825                         // Microsoft's version of this function doesn't seem to work, so I can't check
2826                         // if we only consider children or also grandchildren, etc.
2827                         // I'm gonna say 'children only'
2828                         for (int i=0; i<child_controls.Count; i++) {
2829                                 if (child_controls[i].Bounds.Contains(pt)) {
2830                                         return child_controls[i];
2831                                 }
2832                         }
2833                         return null;
2834                 }
2835
2836                 public IContainerControl GetContainerControl() {
2837                         Control current = this;
2838
2839                         while (current!=null) {
2840                                 if ((current is IContainerControl) && ((current.control_style & ControlStyles.ContainerControl)!=0)) {
2841                                         return (IContainerControl)current;
2842                                 }
2843                                 current = current.parent;
2844                         }
2845                         return null;
2846                 }
2847
2848                 public Control GetNextControl(Control ctl, bool forward) {
2849
2850                         if (!this.Contains(ctl)) {
2851                                 ctl = this;
2852                         }
2853
2854                         if (forward) {
2855                                 ctl = FindControlForward(this, ctl);
2856                         }
2857                         else {
2858                                 ctl = FindControlBackward(this, ctl);
2859                         }
2860
2861                         if (ctl != this) {
2862                                 return ctl;
2863                         }
2864                         return null;
2865                 }
2866
2867 #if NET_2_0
2868                 public virtual Size GetPreferredSize (Size proposedSize) {
2869                         return preferred_size;
2870                 }
2871 #endif
2872
2873                 public void Hide() {
2874                         this.Visible = false;
2875                 }
2876
2877                 public void Invalidate() {
2878                         Invalidate(ClientRectangle, false);
2879                 }
2880
2881                 public void Invalidate(bool invalidateChildren) {
2882                         Invalidate(ClientRectangle, invalidateChildren);
2883                 }
2884
2885                 public void Invalidate(System.Drawing.Rectangle rc) {
2886                         Invalidate(rc, false);
2887                 }
2888
2889                 public void Invalidate(System.Drawing.Rectangle rc, bool invalidateChildren) {
2890                         if (!IsHandleCreated || !Visible || rc.Width == 0 || rc.Height == 0) {
2891                                 return;
2892                         }
2893
2894                         NotifyInvalidate(rc);
2895
2896                         XplatUI.Invalidate(Handle, rc, false);
2897
2898                         if (invalidateChildren) {
2899                                 Control [] controls = child_controls.GetAllControls ();
2900                                 for (int i=0; i<controls.Length; i++)
2901                                         controls [i].Invalidate ();
2902                         }
2903                         OnInvalidated(new InvalidateEventArgs(rc));
2904                 }
2905
2906                 public void Invalidate(System.Drawing.Region region) {
2907                         Invalidate(region, false);
2908                 }
2909
2910                 public void Invalidate(System.Drawing.Region region, bool invalidateChildren) {
2911                         RectangleF bounds = region.GetBounds (CreateGraphics ());
2912                         Invalidate (new Rectangle ((int) bounds.X, (int) bounds.Y, (int) bounds.Width, (int) bounds.Height),
2913                                         invalidateChildren);
2914                 }
2915
2916                 public object Invoke (Delegate method) {
2917                         object [] prms = null;
2918                         if (method is EventHandler)
2919                                 prms = new object [] { this, EventArgs.Empty };
2920
2921                         return Invoke(method, prms);
2922                 }
2923
2924                 public object Invoke (Delegate method, object[] args) {
2925                         if (!this.InvokeRequired) {
2926                                 return method.DynamicInvoke(args);
2927                         }
2928
2929                         IAsyncResult result = BeginInvoke (method, args);
2930                         return EndInvoke(result);
2931                 }
2932
2933                 internal object InvokeInternal (Delegate method, bool disposing) {
2934                         return InvokeInternal(method, null, disposing);
2935                 }
2936
2937                 internal object InvokeInternal (Delegate method, object[] args, bool disposing) {
2938                         if (!this.InvokeRequired) {
2939                                 return method.DynamicInvoke(args);
2940                         }
2941
2942                         IAsyncResult result = BeginInvokeInternal (method, args, disposing);
2943                         return EndInvoke(result);
2944                 }
2945
2946                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2947                 public void PerformLayout() {
2948                         PerformLayout(null, null);
2949                 }
2950
2951 #if !NET_2_0
2952                 private void SetImplicitBounds (int x, int y, int width, int height)
2953                 {
2954                         Rectangle saved_bounds = explicit_bounds;
2955                         SetBounds (x, y, width, height);
2956                         explicit_bounds = saved_bounds;
2957                 }
2958 #endif
2959
2960                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2961                 public void PerformLayout(Control affectedControl, string affectedProperty) {
2962                         LayoutEventArgs levent = new LayoutEventArgs(affectedControl, affectedProperty);
2963
2964                         if (layout_suspended > 0) {
2965                                 layout_pending = true;
2966                                 return;
2967                         }
2968
2969                         layout_pending = false;
2970
2971                         // Prevent us from getting messed up
2972                         layout_suspended++;
2973
2974                         // Perform all Dock and Anchor calculations
2975                         try {
2976
2977 #if NET_2_0
2978                         this.layout_engine.Layout(this, levent);
2979 #else           
2980                                 // This has been moved to Layout/DefaultLayout.cs for 2.0, please duplicate any changes/fixes there.
2981                                 Control         child;
2982                                 AnchorStyles    anchor;
2983                                 Rectangle       space;
2984
2985                                 space = DisplayRectangle;
2986
2987                                 // Deal with docking; go through in reverse, MS docs say that lowest Z-order is closest to edge
2988                                 Control [] controls = child_controls.GetAllControls ();
2989                                 for (int i = controls.Length - 1; i >= 0; i--) {
2990                                         child = controls [i];
2991
2992                                         if (!child.Visible) {
2993                                                 continue;
2994                                         }
2995
2996                                         switch (child.Dock) {
2997                                                 case DockStyle.None: {
2998                                                         // Do nothing
2999                                                         break;
3000                                                 }
3001
3002                                                 case DockStyle.Left: {
3003                                                         child.SetImplicitBounds(space.Left, space.Y, child.Width, space.Height);
3004                                                         space.X+=child.Width;
3005                                                         space.Width-=child.Width;
3006                                                         break;
3007                                                 }
3008
3009                                                 case DockStyle.Top: {
3010                                                         child.SetImplicitBounds(space.Left, space.Y, space.Width, child.Height);
3011                                                         space.Y+=child.Height;
3012                                                         space.Height-=child.Height;
3013                                                         break;
3014                                                 }
3015                                         
3016                                                 case DockStyle.Right: {
3017                                                         child.SetImplicitBounds(space.Right-child.Width, space.Y, child.Width, space.Height);
3018                                                         space.Width-=child.Width;
3019                                                         break;
3020                                                 }
3021
3022                                                 case DockStyle.Bottom: {
3023                                                         child.SetImplicitBounds(space.Left, space.Bottom-child.Height, space.Width, child.Height);
3024                                                         space.Height-=child.Height;
3025                                                         break;
3026                                                 }
3027                                         }
3028                                 }
3029
3030                                 for (int i = controls.Length - 1; i >= 0; i--) {
3031                                         child=controls[i];
3032
3033                                         //if (child.Visible && (child.Dock == DockStyle.Fill)) {
3034                                         if (child.Dock == DockStyle.Fill) {
3035                                                 child.SetImplicitBounds(space.Left, space.Top, space.Width, space.Height);
3036                                         }
3037                                 }
3038
3039                                 space = DisplayRectangle;
3040
3041                                 for (int i=0; i < controls.Length; i++) {
3042                                         int left;
3043                                         int top;
3044                                         int width;
3045                                         int height;
3046
3047                                         child = controls[i];
3048
3049                                         // If the control is docked we don't need to do anything
3050                                         if (child.Dock != DockStyle.None) {
3051                                                 continue;
3052                                         }
3053
3054                                         anchor = child.Anchor;
3055
3056                                         left = child.Left;
3057                                         top = child.Top;
3058                                         width = child.Width;
3059                                         height = child.Height;
3060
3061                                         if ((anchor & AnchorStyles.Left) !=0 ) {
3062                                                 if ((anchor & AnchorStyles.Right) != 0) {
3063                                                         width = space.Width - child.dist_right - left;
3064                                                 } else {
3065                                                         ; // Left anchored only, nothing to be done
3066                                                 }
3067                                         } else if ((anchor & AnchorStyles.Right) != 0) {
3068                                                 left = space.Width - child.dist_right - width;
3069                                         } else {
3070                                                 // left+=diff_width/2 will introduce rounding errors (diff_width removed from svn after r51780)
3071                                                 // This calculates from scratch every time:
3072                                                 left = child.dist_left + (space.Width - (child.dist_left + width + child.dist_right)) / 2;
3073                                         }
3074
3075                                         if ((anchor & AnchorStyles.Top) !=0 ) {
3076                                                 if ((anchor & AnchorStyles.Bottom) != 0) {
3077                                                         height = space.Height - child.dist_bottom - top;
3078                                                 } else {
3079                                                         ; // Top anchored only, nothing to be done
3080                                                 }
3081                                         } else if ((anchor & AnchorStyles.Bottom) != 0) {
3082                                                 top = space.Height - child.dist_bottom - height;
3083                                         } else {
3084                                                 // top += diff_height/2 will introduce rounding errors (diff_height removed from after r51780)
3085                                                 // This calculates from scratch every time:
3086                                                 top = child.dist_top + (space.Height - (child.dist_top + height + child.dist_bottom)) / 2;
3087                                         }
3088                                         
3089                                         // Sanity
3090                                         if (width < 0) {
3091                                                 width=0;
3092                                         }
3093
3094                                         if (height < 0) {
3095                                                 height=0;
3096                                         }
3097
3098                                         child.SetImplicitBounds(left, top, width, height);
3099                                 }
3100 #endif
3101
3102                                 // Let everyone know
3103                                 OnLayout(levent);
3104                         }
3105
3106                                 // Need to make sure we decremend layout_suspended
3107                         finally {
3108                                 layout_suspended--;
3109                         }
3110                 }
3111
3112                 public Point PointToClient (Point p) {
3113                         int x = p.X;
3114                         int y = p.Y;
3115
3116                         XplatUI.ScreenToClient (Handle, ref x, ref y);
3117
3118                         return new Point (x, y);
3119                 }
3120
3121                 public Point PointToScreen(Point p) {
3122                         int x = p.X;
3123                         int y = p.Y;
3124
3125                         XplatUI.ClientToScreen(Handle, ref x, ref y);
3126
3127                         return new Point(x, y);
3128                 }
3129
3130                 public virtual bool PreProcessMessage(ref Message msg) {
3131                         return InternalPreProcessMessage (ref msg);
3132                 }
3133
3134                 internal virtual bool InternalPreProcessMessage (ref Message msg) {
3135                         Keys key_data;
3136
3137                         if ((msg.Msg == (int)Msg.WM_KEYDOWN) || (msg.Msg == (int)Msg.WM_SYSKEYDOWN)) {
3138                                 key_data = (Keys)msg.WParam.ToInt32() | XplatUI.State.ModifierKeys;
3139
3140                                 if (!ProcessCmdKey(ref msg, key_data)) {
3141                                         if (IsInputKey(key_data)) {
3142                                                 return false;
3143                                         }
3144
3145                                         return ProcessDialogKey(key_data);
3146                                 }
3147
3148                                 return true;
3149                         } else if (msg.Msg == (int)Msg.WM_CHAR) {
3150                                 if (IsInputChar((char)msg.WParam)) {
3151                                         return false;
3152                                 }
3153                                 return ProcessDialogChar((char)msg.WParam);
3154                         } else if (msg.Msg == (int)Msg.WM_SYSCHAR) {
3155                                 return ProcessDialogChar((char)msg.WParam);
3156                         }
3157                         return false;
3158                 }
3159
3160                 public Rectangle RectangleToClient(Rectangle r) {
3161                         return new Rectangle(PointToClient(r.Location), r.Size);
3162                 }
3163
3164                 public Rectangle RectangleToScreen(Rectangle r) {
3165                         return new Rectangle(PointToScreen(r.Location), r.Size);
3166                 }
3167
3168                 public virtual void Refresh() {                 
3169                         if (IsHandleCreated == true) {
3170                                 Invalidate();
3171                                 XplatUI.UpdateWindow(window.Handle);
3172
3173                                 Control [] controls = child_controls.GetAllControls ();
3174                                 for (int i=0; i < controls.Length; i++) {
3175                                         controls[i].Refresh();
3176                                 }
3177                                 
3178                         }
3179                 }
3180
3181                 [EditorBrowsable(EditorBrowsableState.Never)]
3182                 public virtual void ResetBackColor() {
3183                         BackColor = Color.Empty;
3184                 }
3185
3186                 [EditorBrowsable(EditorBrowsableState.Never)]
3187                 public void ResetBindings() {
3188                         data_bindings.Clear();
3189                 }
3190
3191                 [EditorBrowsable(EditorBrowsableState.Never)]
3192                 public virtual void ResetCursor() {
3193                         Cursor = null;
3194                 }
3195
3196                 [EditorBrowsable(EditorBrowsableState.Never)]
3197                 public virtual void ResetFont() {
3198                         font = null;
3199                 }
3200
3201                 [EditorBrowsable(EditorBrowsableState.Never)]
3202                 public virtual void ResetForeColor() {
3203                         foreground_color = Color.Empty;
3204                 }
3205
3206                 [EditorBrowsable(EditorBrowsableState.Never)]
3207                 public void ResetImeMode() {
3208                         ime_mode = DefaultImeMode;
3209                 }
3210
3211                 [EditorBrowsable(EditorBrowsableState.Never)]
3212                 public virtual void ResetRightToLeft() {
3213                         right_to_left = RightToLeft.Inherit;
3214                 }
3215
3216                 public virtual void ResetText() {
3217                         text = String.Empty;
3218                 }
3219
3220                 public void ResumeLayout() {
3221                         ResumeLayout (true);
3222                 }
3223
3224                 public void ResumeLayout(bool performLayout) {
3225                         if (layout_suspended > 0) {
3226                                 layout_suspended--;
3227                         }
3228
3229                         if (layout_suspended == 0) {
3230                                 Control [] controls = child_controls.GetAllControls ();
3231                                 for (int i=0; i<controls.Length; i++) {
3232                                         controls [i].UpdateDistances ();
3233                                 }
3234
3235                                 if (performLayout && layout_pending) {
3236                                         PerformLayout();
3237                                 }
3238                         }
3239                 }
3240
3241                 public void Scale(float ratio) {
3242                         ScaleCore(ratio, ratio);
3243                 }
3244
3245                 public void Scale(float dx, float dy) {
3246                         ScaleCore(dx, dy);
3247                 }
3248
3249 #if NET_2_0
3250                 public void Scale(SizeF factor) {
3251                         ScaleCore(factor.Width, factor.Height);
3252                 }
3253 #endif
3254
3255                 public void Select() {
3256                         Select(false, false);
3257                 }
3258
3259 #if DebugFocus
3260                 private void printTree(Control c, string t) {
3261                         foreach(Control i in c.child_controls) {
3262                                 Console.WriteLine("{2}{0}.TabIndex={1}", i, i.tab_index, t);
3263                                 printTree(i, t+"\t");
3264                         }
3265                 }
3266 #endif
3267                 public bool SelectNextControl(Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap) {
3268                         Control c;
3269
3270 #if DebugFocus
3271                         Console.WriteLine("{0}", this.FindForm());
3272                         printTree(this, "\t");
3273 #endif
3274
3275                         if (!this.Contains(ctl) || (!nested && (ctl.parent != this))) {
3276                                 ctl = null;
3277                         }
3278                         c = ctl;
3279                         do {
3280                                 c = GetNextControl(c, forward);
3281                                 if (c == null) {
3282                                         if (wrap) {
3283                                                 wrap = false;
3284                                                 continue;
3285                                         }
3286                                         break;
3287                                 }
3288
3289                                 if (c.CanSelect && ((c.parent == this) || nested) && (c.tab_stop || !tabStopOnly)) {
3290                                         c.Select (true, true);
3291                                         return true;
3292                                 }
3293                         } while (c != ctl); // If we wrap back to ourselves we stop
3294
3295                         return false;
3296                 }
3297
3298                 public void SendToBack() {
3299                         if (parent != null) {
3300                                 parent.child_controls.SetChildIndex(this, parent.child_controls.Count);
3301                         }
3302                 }
3303
3304                 public void SetBounds(int x, int y, int width, int height) {
3305                         SetBounds(x, y, width, height, BoundsSpecified.All);
3306                 }
3307
3308                 public void SetBounds(int x, int y, int width, int height, BoundsSpecified specified) {
3309                         if ((specified & BoundsSpecified.X) != BoundsSpecified.X) {
3310                                 x = Left;
3311                         }
3312
3313                         if ((specified & BoundsSpecified.Y) != BoundsSpecified.Y) {
3314                                 y = Top;
3315                         }
3316
3317                         if ((specified & BoundsSpecified.Width) != BoundsSpecified.Width) {
3318                                 width = Width;
3319                         }
3320
3321                         if ((specified & BoundsSpecified.Height) != BoundsSpecified.Height) {
3322                                 height = Height;
3323                         }
3324
3325                         SetBoundsCore(x, y, width, height, specified);
3326                         if (parent != null) {
3327                                 parent.PerformLayout(this, "Bounds");
3328                         }
3329                 }
3330
3331                 public void Show() {
3332                         if (!is_created) {
3333                                 this.CreateControl();
3334                         }
3335
3336                         this.Visible=true;
3337                 }
3338
3339                 public void SuspendLayout() {
3340                         layout_suspended++;
3341                 }
3342
3343                 public void Update() {
3344                         if (IsHandleCreated) {
3345                                 XplatUI.UpdateWindow(window.Handle);
3346                         }
3347                 }
3348                 #endregion      // Public Instance Methods
3349
3350                 #region Protected Instance Methods
3351                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3352                 [MonoTODO("Implement this and tie it into Control.ControlAccessibleObject.NotifyClients")]
3353                 protected void AccessibilityNotifyClients(AccessibleEvents accEvent, int childID) {
3354                         throw new NotImplementedException();
3355                 }
3356
3357                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3358                 protected virtual AccessibleObject CreateAccessibilityInstance() {
3359                         return new Control.ControlAccessibleObject(this);
3360                 }
3361
3362                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3363                 protected virtual ControlCollection CreateControlsInstance() {
3364                         return new ControlCollection(this);
3365                 }
3366
3367                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3368                 protected virtual void CreateHandle() {
3369                         if (IsDisposed) {
3370                                 throw new ObjectDisposedException(GetType().FullName.ToString());
3371                         }
3372
3373                         if (IsHandleCreated && !is_recreating) {
3374                                 return;
3375                         }
3376
3377                         window.CreateHandle(CreateParams);
3378
3379                         if (window.Handle != IntPtr.Zero) {
3380                                 creator_thread = Thread.CurrentThread;
3381
3382                                 XplatUI.EnableWindow(window.Handle, is_enabled);
3383                                 XplatUI.SetVisible(window.Handle, is_visible, true);
3384
3385                                 if (clip_region != null) {
3386                                         XplatUI.SetClipRegion(Handle, clip_region);
3387                                 }
3388
3389                                 // Set our handle with our parent
3390                                 if ((parent != null) && (parent.IsHandleCreated)) {
3391                                         XplatUI.SetParent(window.Handle, parent.Handle);
3392                                 }
3393
3394                                 // Set our handle as parent for our children
3395                                 Control [] children;
3396
3397                                 children = child_controls.GetAllControls ();
3398                                 for (int i = 0; i < children.Length; i++ ) {
3399                                         if (!children[i].RecreatingHandle)
3400                                                 XplatUI.SetParent(children[i].Handle, window.Handle); 
3401                                 }
3402
3403                                 UpdateStyles();
3404                                 XplatUI.SetAllowDrop (Handle, allow_drop);
3405
3406                                 // Find out where the window manager placed us
3407                                 if ((CreateParams.Style & (int)WindowStyles.WS_CHILD) != 0) {
3408                                         XplatUI.SetBorderStyle(window.Handle, (FormBorderStyle)border_style);
3409                                 }
3410                                 UpdateBounds();
3411
3412                                 OnHandleCreated(EventArgs.Empty);
3413                         }
3414                 }
3415
3416                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3417                 protected virtual void DefWndProc(ref Message m) {
3418                         window.DefWndProc(ref m);
3419                 }
3420
3421                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3422                 protected virtual void DestroyHandle() {
3423                         if (IsHandleCreated) {
3424                                 if (window != null) {
3425                                         window.DestroyHandle();
3426                                 }
3427                         }
3428                 }
3429
3430                 protected internal bool GetStyle(ControlStyles flag) {
3431                         return (control_style & flag) != 0;
3432                 }
3433
3434                 protected bool GetTopLevel() {
3435                         return is_toplevel;
3436                 }
3437
3438                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3439                 protected virtual void InitLayout() {
3440                         UpdateDistances();
3441                 }
3442
3443                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3444                 protected void InvokeGotFocus(Control toInvoke, EventArgs e) {
3445                         toInvoke.OnGotFocus(e);
3446                 }
3447
3448                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3449                 protected void InvokeLostFocus(Control toInvoke, EventArgs e) {
3450                         toInvoke.OnLostFocus(e);
3451                 }
3452
3453                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3454                 protected void InvokeOnClick(Control toInvoke, EventArgs e) {
3455                         toInvoke.OnClick(e);
3456                 }
3457
3458                 protected void InvokePaint(Control toInvoke, PaintEventArgs e) {
3459                         toInvoke.OnPaint(e);
3460                 }
3461
3462                 protected void InvokePaintBackground(Control toInvoke, PaintEventArgs e) {
3463                         toInvoke.OnPaintBackground(e);
3464                 }
3465
3466                 protected virtual bool IsInputChar (char charCode) {
3467                         return true;
3468                 }
3469
3470                 protected virtual bool IsInputKey (Keys keyData) {
3471                         // Doc says this one calls IsInputChar; not sure what to do with that
3472                         return false;
3473                 }
3474
3475                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3476                 protected virtual void NotifyInvalidate(Rectangle invalidatedArea) {
3477                         // override me?
3478                 }
3479
3480                 protected virtual bool ProcessCmdKey(ref Message msg, Keys keyData) {
3481                         if ((context_menu != null) && context_menu.ProcessCmdKey(ref msg, keyData)) {
3482                                 return true;
3483                         }
3484
3485                         if (parent != null) {
3486                                 return parent.ProcessCmdKey(ref msg, keyData);
3487                         }
3488
3489                         return false;
3490                 }
3491
3492                 protected virtual bool ProcessDialogChar(char charCode) {
3493                         if (parent != null) {
3494                                 return parent.ProcessDialogChar (charCode);
3495                         }
3496
3497                         return false;
3498                 }
3499
3500                 protected virtual bool ProcessDialogKey (Keys keyData) {
3501                         if (parent != null) {
3502                                 return parent.ProcessDialogKey (keyData);
3503                         }
3504
3505                         return false;
3506                 }
3507
3508                 protected virtual bool ProcessKeyEventArgs (ref Message msg)
3509                 {
3510                         KeyEventArgs            key_event;
3511
3512                         switch (msg.Msg) {
3513                                 case (int)Msg.WM_SYSKEYDOWN:
3514                                 case (int)Msg.WM_KEYDOWN: {
3515                                         key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
3516                                         OnKeyDown (key_event);
3517                                         return key_event.Handled;
3518                                 }
3519
3520                                 case (int)Msg.WM_SYSKEYUP:
3521                                 case (int)Msg.WM_KEYUP: {
3522                                         key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
3523                                         OnKeyUp (key_event);
3524                                         return key_event.Handled;
3525                                 }
3526
3527                                 case (int)Msg.WM_SYSCHAR:
3528                                 case (int)Msg.WM_CHAR: {
3529                                         KeyPressEventArgs       key_press_event;
3530
3531                                         key_press_event = new KeyPressEventArgs((char)msg.WParam);
3532                                         OnKeyPress(key_press_event);
3533 #if NET_2_0
3534                                         msg.WParam = (IntPtr)key_press_event.KeyChar;
3535 #endif
3536                                         return key_press_event.Handled;
3537                                 }
3538
3539                                 default: {
3540                                         break;
3541                                 }
3542                         }
3543
3544                         return false;
3545                 }
3546
3547                 protected internal virtual bool ProcessKeyMessage(ref Message msg) {
3548                         if (parent != null) {
3549                                 if (parent.ProcessKeyPreview(ref msg)) {
3550                                         return true;
3551                                 }
3552                         }
3553
3554                         return ProcessKeyEventArgs(ref msg);
3555                 }
3556
3557                 protected virtual bool ProcessKeyPreview(ref Message msg) {
3558                         if (parent != null) {
3559                                 return parent.ProcessKeyPreview(ref msg);
3560                         }
3561
3562                         return false;
3563                 }
3564
3565                 protected virtual bool ProcessMnemonic(char charCode) {
3566                         // override me
3567                         return false;
3568                 }
3569
3570                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3571                 protected void RaiseDragEvent(object key, DragEventArgs e) {
3572                         // MS Internal
3573                 }
3574
3575                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3576                 protected void RaiseKeyEvent(object key, KeyEventArgs e) {
3577                         // MS Internal
3578                 }
3579
3580                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3581                 protected void RaiseMouseEvent(object key, MouseEventArgs e) {
3582                         // MS Internal
3583                 }
3584
3585                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3586                 protected void RaisePaintEvent(object key, PaintEventArgs e) {
3587                         // MS Internal
3588                 }
3589
3590                 private void SetIsRecreating ()
3591                 {
3592                         is_recreating=true;
3593
3594                         foreach (Control c in Controls.GetAllControls()) {
3595                                 c.SetIsRecreating ();
3596                         }
3597                 }
3598
3599                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3600                 protected void RecreateHandle() {
3601 #if DebugRecreate
3602                         Console.WriteLine("Recreating control {0}", XplatUI.Window(window.Handle));
3603 #endif
3604
3605                         SetIsRecreating ();
3606
3607                         if (IsHandleCreated) {
3608 #if DebugRecreate
3609                                 Console.WriteLine(" + handle is created, destroying it.");
3610 #endif
3611                                 DestroyHandle();
3612                                 // WM_DESTROY will CreateHandle for us
3613                         } else {
3614 #if DebugRecreate
3615                                 Console.WriteLine(" + handle is not created, creating it.");
3616 #endif
3617                                 if (!is_created) {
3618                                         CreateControl();
3619                                 } else {
3620                                         CreateHandle();
3621                                 }
3622
3623                                 is_recreating = false;
3624 #if DebugRecreate
3625                                 Console.WriteLine (" + new handle = {0:X}", Handle.ToInt32());
3626 #endif
3627                         }
3628
3629                 }
3630
3631                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3632                 protected void ResetMouseEventArgs() {
3633                         // MS Internal
3634                 }
3635
3636                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3637                 protected ContentAlignment RtlTranslateAlignment(ContentAlignment align) {
3638                         if (right_to_left == RightToLeft.No) {
3639                                 return align;
3640                         }
3641
3642                         switch (align) {
3643                                 case ContentAlignment.TopLeft: {
3644                                         return ContentAlignment.TopRight;
3645                                 }
3646
3647                                 case ContentAlignment.TopRight: {
3648                                         return ContentAlignment.TopLeft;
3649                                 }
3650
3651                                 case ContentAlignment.MiddleLeft: {
3652                                         return ContentAlignment.MiddleRight;
3653                                 }
3654
3655                                 case ContentAlignment.MiddleRight: {
3656                                         return ContentAlignment.MiddleLeft;
3657                                 }
3658
3659                                 case ContentAlignment.BottomLeft: {
3660                                         return ContentAlignment.BottomRight;
3661                                 }
3662
3663                                 case ContentAlignment.BottomRight: {
3664                                         return ContentAlignment.BottomLeft;
3665                                 }
3666
3667                                 default: {
3668                                         // if it's center it doesn't change
3669                                         return align;
3670                                 }
3671                         }
3672                 }
3673
3674                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3675                 protected HorizontalAlignment RtlTranslateAlignment(HorizontalAlignment align) {
3676                         if ((right_to_left == RightToLeft.No) || (align == HorizontalAlignment.Center)) {
3677                                 return align;
3678                         }
3679
3680                         if (align == HorizontalAlignment.Left) {
3681                                 return HorizontalAlignment.Right;
3682                         }
3683
3684                         // align must be HorizontalAlignment.Right
3685                         return HorizontalAlignment.Left;
3686                 }
3687
3688                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3689                 protected LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment align) {
3690                         if (right_to_left == RightToLeft.No) {
3691                                 return align;
3692                         }
3693
3694                         if (align == LeftRightAlignment.Left) {
3695                                 return LeftRightAlignment.Right;
3696                         }
3697
3698                         // align must be LeftRightAlignment.Right;
3699                         return LeftRightAlignment.Left;
3700                 }
3701
3702                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3703                 protected ContentAlignment RtlTranslateContent(ContentAlignment align) {
3704                         return RtlTranslateAlignment(align);
3705                 }
3706
3707                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3708                 protected HorizontalAlignment RtlTranslateHorizontal(HorizontalAlignment align) {
3709                         return RtlTranslateAlignment(align);
3710                 }
3711
3712                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3713                 protected LeftRightAlignment RtlTranslateLeftRight(LeftRightAlignment align) {
3714                         return RtlTranslateAlignment(align);
3715                 }
3716
3717                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3718                 protected virtual void ScaleCore(float dx, float dy) {
3719                         Point   location;
3720                         Size    size;
3721
3722                         SuspendLayout();
3723
3724                         location = new Point((int)(Left * dx), (int)(Top * dy));
3725                         size = this.ClientSize;
3726
3727                         if (!GetStyle(ControlStyles.FixedWidth)) {
3728                                 size.Width = (int)(size.Width * dx);
3729                         }
3730
3731                         if (!GetStyle(ControlStyles.FixedHeight)) {
3732                                 size.Height = (int)(size.Height * dy);
3733                         }
3734
3735                         SetBounds(location.X, location.Y, size.Width, size.Height, BoundsSpecified.All);
3736
3737                         /* Now scale our children */
3738                         Control [] controls = child_controls.GetAllControls ();
3739                         for (int i=0; i < controls.Length; i++) {
3740                                 controls[i].Scale(dx, dy);
3741                         }
3742
3743                         ResumeLayout();
3744                 }
3745
3746                 protected virtual void Select(bool directed, bool forward) {
3747                         IContainerControl       container;
3748                         
3749                         container = GetContainerControl();
3750                         if (container != null)
3751                                 container.ActiveControl = this;
3752                 }
3753
3754                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3755                 protected virtual void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
3756                         // SetBoundsCore updates the Win32 control itself. UpdateBounds updates the controls variables and fires events, I'm guessing - pdb
3757                         if (IsHandleCreated) {
3758                                 XplatUI.SetWindowPos(Handle, x, y, width, height);
3759
3760                                 // Win32 automatically changes negative width/height to 0.
3761                                 // The control has already been sent a WM_WINDOWPOSCHANGED message and it has the correct
3762                                 // data, but it'll be overwritten when we call UpdateBounds unless we get the updated
3763                                 // size.
3764                                 if (width < 0 || height < 0) {
3765                                         int cw, ch, ix, iy;
3766                                         XplatUI.GetWindowPos(Handle, this is Form, out ix, out iy, out width, out height, out cw, out ch);
3767                                 }
3768                         }
3769
3770                         UpdateBounds(x, y, width, height);
3771
3772                         UpdateDistances();
3773                 }
3774
3775                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3776                 protected virtual void SetClientSizeCore(int x, int y) {
3777                         // Calculate the actual window size from the client size (it usually stays the same or grows)
3778                         Rectangle       ClientRect;
3779                         Rectangle       WindowRect;
3780                         CreateParams    cp;
3781
3782                         ClientRect = new Rectangle(0, 0, x, y);
3783                         cp = this.CreateParams;
3784
3785                         if (XplatUI.CalculateWindowRect(ref ClientRect, cp.Style, cp.ExStyle, null, out WindowRect)==false) {
3786                                 return;
3787                         }
3788
3789                         SetBounds(bounds.X, bounds.Y, WindowRect.Width, WindowRect.Height, BoundsSpecified.Size);
3790                 }
3791
3792                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3793                 protected internal void SetStyle(ControlStyles flag, bool value) {
3794                         if (value) {
3795                                 control_style |= flag;
3796                         } else {
3797                                 control_style &= ~flag;
3798                         }
3799                 }
3800
3801                 protected void SetTopLevel(bool value) {
3802                         if ((GetTopLevel() != value) && (parent != null)) {
3803                                 throw new Exception();
3804                         }
3805
3806                         if (this is Form) {
3807                                 if (value == true) {
3808                                         if (!Visible) {
3809                                                 Visible = true;
3810                                         }
3811                                 } else {
3812                                         if (Visible) {
3813                                                 Visible = false;
3814                                         }
3815                                 }
3816                         }
3817                         is_toplevel = value;
3818                 }
3819
3820                 protected virtual void SetVisibleCore(bool value) {
3821                         if (value!=is_visible) {
3822                                 if (value && (window.Handle == IntPtr.Zero) || !is_created) {
3823                                         CreateControl();
3824                                 }
3825
3826                                 is_visible=value;
3827
3828                                 if (IsHandleCreated) {
3829                                         XplatUI.SetVisible(Handle, value, true);
3830                                         // Explicitly move Toplevel windows to where we want them;
3831                                         // apparently moving unmapped toplevel windows doesn't work
3832                                         if (is_visible && (this is Form)) {
3833                                                 XplatUI.SetWindowPos(window.Handle, bounds.X, bounds.Y, bounds.Width, bounds.Height);
3834                                         }
3835                                 }
3836
3837                                 OnVisibleChanged(EventArgs.Empty);
3838
3839                                 if (value == false && parent != null && Focused) {
3840                                         Control container;
3841
3842                                         // Need to start at parent, GetContainerControl might return ourselves if we're a container
3843                                         container = (Control)parent.GetContainerControl();
3844                                         if (container != null) {
3845                                                 container.SelectNextControl(this, true, true, true, true);
3846                                         }
3847                                 }
3848
3849                                 if (parent != null) {
3850                                         parent.PerformLayout(this, "visible");
3851                                 } else {
3852                                         PerformLayout(this, "visible");
3853                                 }
3854                         }
3855                 }
3856         
3857                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3858                 protected void UpdateBounds() {
3859                         int     x;
3860                         int     y;
3861                         int     width;
3862                         int     height;
3863                         int     client_width;
3864                         int     client_height;
3865
3866                         if (!IsHandleCreated) {
3867                                 CreateHandle();
3868                         }
3869
3870                         XplatUI.GetWindowPos(this.Handle, this is Form, out x, out y, out width, out height, out client_width, out client_height);
3871
3872                         UpdateBounds(x, y, width, height, client_width, client_height);
3873                 }
3874
3875                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3876                 protected void UpdateBounds(int x, int y, int width, int height) {
3877                         CreateParams    cp;
3878                         Rectangle       rect;
3879
3880                         // Calculate client rectangle
3881                         rect = new Rectangle(0, 0, 0, 0);
3882                         cp = CreateParams;
3883
3884                         XplatUI.CalculateWindowRect(ref rect, cp.Style, cp.ExStyle, cp.menu, out rect);
3885                         UpdateBounds(x, y, width, height, width - (rect.Right - rect.Left), height - (rect.Bottom - rect.Top));
3886                 }
3887
3888                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3889                 protected void UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight) {
3890                         // UpdateBounds only seems to set our sizes and fire events but not update the GUI window to match
3891                         bool    moved   = false;
3892                         bool    resized = false;
3893
3894                         // Needed to generate required notifications
3895                         if ((this.bounds.X!=x) || (this.bounds.Y!=y)) {
3896                                 moved=true;
3897                         }
3898
3899                         if ((this.Bounds.Width!=width) || (this.Bounds.Height!=height)) {
3900                                 resized=true;
3901                         }
3902
3903                         bounds.X=x;
3904                         bounds.Y=y;
3905                         bounds.Width=width;
3906                         bounds.Height=height;
3907
3908                         // Assume explicit bounds set. SetImplicitBounds will restore old bounds
3909                         explicit_bounds = bounds;
3910
3911                         client_size.Width=clientWidth;
3912                         client_size.Height=clientHeight;
3913
3914                         if (moved) {
3915                                 OnLocationChanged(EventArgs.Empty);
3916                         }
3917
3918                         if (resized) {
3919                                 OnSizeChanged(EventArgs.Empty);
3920                         }
3921                 }
3922
3923                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3924                 protected void UpdateStyles() {
3925                         if (!IsHandleCreated) {
3926                                 return;
3927                         }
3928
3929                         XplatUI.SetWindowStyle(window.Handle, CreateParams);
3930                         OnStyleChanged(EventArgs.Empty);
3931                 }
3932
3933                 private void UpdateZOrderOfChild(Control child) {
3934                         if (IsHandleCreated && child.IsHandleCreated && (child.parent == this)) {
3935                                 int     index;
3936
3937                                 index = child_controls.IndexOf(child);
3938
3939                                 if (index > 0) {
3940                                         XplatUI.SetZOrder(child.Handle, child_controls[index - 1].Handle, false, false);
3941                                 } else {
3942                                         XplatUI.SetZOrder(child.Handle, IntPtr.Zero, true, false);
3943                                 }
3944                         }
3945                 }
3946
3947                 private void UpdateChildrenZOrder() {
3948                         Control [] controls;
3949
3950                         if (!IsHandleCreated) {
3951                                 return;
3952                         }
3953
3954                         controls = child_controls.GetAllControls ();
3955                         for (int i = 1; i < controls.Length; i++ ) {
3956                                 XplatUI.SetZOrder(controls[i].Handle, controls[i-1].Handle, false, false);
3957                         }
3958                 }
3959
3960                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3961                 protected void UpdateZOrder() {
3962                         if (parent != null) {
3963                                 parent.UpdateZOrderOfChild(this);
3964                         }
3965                 }
3966
3967                 protected virtual void WndProc(ref Message m) {
3968 #if debug
3969                         Console.WriteLine("Control {0} received message {1}", window.Handle == IntPtr.Zero ? this.Text : XplatUI.Window(window.Handle), m.ToString ());
3970 #endif
3971                         if ((this.control_style & ControlStyles.EnableNotifyMessage) != 0) {
3972                                 OnNotifyMessage(m);
3973                         }
3974
3975                         switch((Msg)m.Msg) {
3976                         case Msg.WM_DESTROY: {
3977                                 OnHandleDestroyed(EventArgs.Empty);
3978 #if DebugRecreate
3979                                 IntPtr handle = window.Handle;
3980 #endif
3981                                 window.InvalidateHandle();
3982
3983                                 if (is_recreating) {
3984 #if DebugRecreate
3985                                         Console.WriteLine ("Creating handle for {0:X}", handle.ToInt32());
3986 #endif
3987                                         CreateHandle();
3988 #if DebugRecreate
3989                                         Console.WriteLine (" + new handle = {0:X}", Handle.ToInt32());
3990 #endif
3991                                         is_recreating = false;
3992                                 }
3993                                 return;
3994                         }
3995
3996                         case Msg.WM_WINDOWPOSCHANGED: {
3997                                 if (Visible) {
3998                                         Rectangle save_bounds = explicit_bounds;
3999                                         UpdateBounds();
4000                                         explicit_bounds = save_bounds;
4001                                         if (GetStyle(ControlStyles.ResizeRedraw)) {
4002                                                 Invalidate();
4003                                         }
4004                                 }
4005                                 return;
4006                         }
4007
4008                         // Nice description of what should happen when handling WM_PAINT
4009                         // can be found here: http://pluralsight.com/wiki/default.aspx/Craig/FlickerFreeControlDrawing.html
4010                         // and here http://msdn.microsoft.com/msdnmag/issues/06/03/WindowsFormsPerformance/
4011                         case Msg.WM_PAINT: {
4012                                 PaintEventArgs  paint_event;
4013
4014                                 paint_event = XplatUI.PaintEventStart(Handle, true);
4015
4016                                 if (paint_event == null) {
4017                                         return;
4018                                 }
4019
4020                                 if (invalid_region != null && !invalid_region.IsVisible (paint_event.ClipRectangle)) {
4021
4022                                         // Just blit the previous image
4023                                         XplatUI.BlitFromOffscreen (Handle, paint_event.Graphics, backbuffer, backbuffer_dc, paint_event.ClipRectangle);
4024                                         XplatUI.PaintEventEnd (Handle, true);
4025                                         return;
4026                                 }
4027
4028                                 Graphics dc = null;
4029                                 Graphics back_dc = null;
4030                                 object back = null;
4031                                 if (ThemeEngine.Current.DoubleBufferingSupported) {
4032                                         if ((control_style & ControlStyles.DoubleBuffer) != 0) {
4033                                                 CreateBackBuffer ();
4034                                                 back = backbuffer;
4035                                                 back_dc = backbuffer_dc;
4036                                                 dc = paint_event.SetGraphics (back_dc);
4037                                         }
4038                                 }
4039
4040                                 if (!GetStyle(ControlStyles.Opaque)) {
4041                                         OnPaintBackground(paint_event);
4042                                 }
4043
4044                                 // Button-derived controls choose to ignore their Opaque style, give them a chance to draw their background anyways
4045                                 OnPaintBackgroundInternal(paint_event);
4046
4047                                 OnPaintInternal(paint_event);
4048                                 if (!paint_event.Handled) {
4049                                         OnPaint(paint_event);
4050                                 }
4051
4052                                 if (ThemeEngine.Current.DoubleBufferingSupported)
4053                                         if ((control_style & ControlStyles.DoubleBuffer) != 0) {
4054                                                 XplatUI.BlitFromOffscreen (Handle, dc, back, back_dc, paint_event.ClipRectangle);
4055                                                 paint_event.SetGraphics (dc);
4056                                                 invalid_region.Exclude (paint_event.ClipRectangle);
4057
4058                                                 if (back != backbuffer)
4059                                                         XplatUI.DestroyOffscreenDrawable (back, back_dc);
4060                                         }
4061
4062                                 XplatUI.PaintEventEnd(Handle, true);
4063
4064                                 return;
4065                         }
4066                                         
4067                         case Msg.WM_ERASEBKGND: {
4068                                 // The DefWndProc will never have to handle this, we always paint the background in managed code
4069                                 // In theory this code would look at ControlStyles.AllPaintingInWmPaint and and call OnPaintBackground
4070                                 // here but it just makes things more complicated...
4071                                 m.Result = (IntPtr)1;
4072                                 return;
4073                         }
4074
4075                         case Msg.WM_LBUTTONUP: {
4076                                 MouseEventArgs me;
4077
4078                                 me = new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Left, 
4079                                                          mouse_clicks, 
4080                                                          LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4081                                                          0);
4082
4083                                 HandleClick(mouse_clicks, me);
4084                                 OnMouseUp (me);
4085
4086                                 if (InternalCapture) {
4087                                         InternalCapture = false;
4088                                 }
4089
4090                                 if (mouse_clicks > 1) {
4091                                         mouse_clicks = 1;
4092                                 }
4093                                 return;
4094                         }
4095                                         
4096                         case Msg.WM_LBUTTONDOWN: {
4097                                 if (CanSelect) {
4098                                         Select (true, true);
4099                                 }
4100                                 InternalCapture = true;
4101                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4102                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4103                                                                  0));
4104                                 
4105                                 return;
4106                         }
4107
4108                         case Msg.WM_LBUTTONDBLCLK: {
4109                                 InternalCapture = true;
4110                                 mouse_clicks++;
4111                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4112                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4113                                                                  0));
4114                                 return;
4115                         }
4116
4117                         case Msg.WM_MBUTTONUP: {
4118                                 MouseEventArgs me;
4119
4120                                 me = new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Middle, 
4121                                                          mouse_clicks, 
4122                                                          LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4123                                                          0);
4124
4125                                 HandleClick(mouse_clicks, me);
4126                                 OnMouseUp (me);
4127                                 if (InternalCapture) {
4128                                         InternalCapture = false;
4129                                 }
4130                                 if (mouse_clicks > 1) {
4131                                         mouse_clicks = 1;
4132                                 }
4133                                 return;
4134                         }
4135                                         
4136                         case Msg.WM_MBUTTONDOWN: {                                      
4137                                 InternalCapture = true;
4138                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4139                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4140                                                                  0));
4141                                 return;
4142                         }
4143
4144                         case Msg.WM_MBUTTONDBLCLK: {
4145                                 InternalCapture = true;
4146                                 mouse_clicks++;
4147                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4148                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4149                                                                  0));
4150                                 return;
4151                         }
4152
4153                         case Msg.WM_RBUTTONUP: {
4154                                 MouseEventArgs  me;
4155                                 Point           pt;
4156
4157                                 pt = new Point(LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()));
4158                                 pt = PointToScreen(pt);
4159
4160                                 XplatUI.SendMessage(m.HWnd, Msg.WM_CONTEXTMENU, m.HWnd, (IntPtr)(pt.X + (pt.Y << 16)));
4161
4162                                 me = new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Right, 
4163                                                          mouse_clicks, 
4164                                                          LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4165                                                          0);
4166
4167                                 HandleClick(mouse_clicks, me);
4168                                 OnMouseUp (me);
4169
4170                                 if (InternalCapture) {
4171                                         InternalCapture = false;
4172                                 }
4173
4174                                 if (mouse_clicks > 1) {
4175                                         mouse_clicks = 1;
4176                                 }
4177                                 return;
4178                         }
4179                                         
4180                         case Msg.WM_RBUTTONDOWN: {                                      
4181                                 InternalCapture = true;
4182                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4183                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4184                                                                  0));
4185                                 return;
4186                         }
4187
4188                         case Msg.WM_RBUTTONDBLCLK: {
4189                                 InternalCapture = true;
4190                                 mouse_clicks++;
4191                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4192                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4193                                                                  0));
4194                                 return;
4195                         }
4196
4197                         case Msg.WM_CONTEXTMENU: {
4198                                 if (context_menu != null) {
4199                                         Point   pt;
4200
4201                                         pt = new Point(LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()));
4202                                         context_menu.Show(this, PointToClient(pt));
4203                                         return;
4204                                 }
4205
4206                                 DefWndProc(ref m);
4207                                 return;
4208                         }
4209
4210                         case Msg.WM_MOUSEWHEEL: {                               
4211                                 DefWndProc(ref m);
4212                                 OnMouseWheel (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4213                                                                   mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4214                                                                   HighOrder(m.WParam.ToInt32())));
4215                                 return;
4216                         }
4217
4218
4219                         case Msg.WM_MOUSEMOVE: {                                        
4220                                 OnMouseMove  (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4221                                                                   mouse_clicks, 
4222                                                                   LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4223                                                                   0));
4224                                 return;
4225                         }
4226
4227                         case Msg.WM_MOUSE_ENTER: {
4228                                 if (is_entered) {
4229                                         return;
4230                                 }
4231                                 is_entered = true;
4232                                 OnMouseEnter(EventArgs.Empty);
4233                                 return;
4234                         }
4235
4236                         case Msg.WM_MOUSE_LEAVE: {
4237                                 is_entered=false;
4238                                 OnMouseLeave(EventArgs.Empty);
4239                                 return;
4240                         }
4241
4242                         case Msg.WM_MOUSEHOVER: {
4243                                 OnMouseHover(EventArgs.Empty);
4244                                 return;
4245                         }
4246
4247                         case Msg.WM_SYSKEYUP: {
4248                                 if (ProcessKeyMessage(ref m)) {
4249                                         m.Result = IntPtr.Zero;
4250                                         return;
4251                                 }
4252
4253                                 if ((m.WParam.ToInt32() & (int)Keys.KeyCode) == (int)Keys.Menu) {
4254                                         Form    form;
4255
4256                                         form = FindForm();
4257                                         if (form != null && form.ActiveMenu != null) {
4258                                                 form.ActiveMenu.ProcessCmdKey(ref m, (Keys)m.WParam.ToInt32());
4259                                         }
4260                                 }
4261
4262                                 DefWndProc (ref m);
4263                                 return;
4264                         }
4265
4266                         case Msg.WM_SYSKEYDOWN:
4267                         case Msg.WM_KEYDOWN:
4268                         case Msg.WM_KEYUP:
4269                         case Msg.WM_SYSCHAR:
4270                         case Msg.WM_CHAR: {
4271                                 if (ProcessKeyMessage(ref m)) {
4272                                         m.Result = IntPtr.Zero;
4273                                         return;
4274                                 }
4275                                 DefWndProc (ref m);
4276                                 return;
4277                         }
4278
4279                         case Msg.WM_HELP: {
4280                                 Point   mouse_pos;
4281                                 if (m.LParam != IntPtr.Zero) {
4282                                         HELPINFO        hi;
4283
4284                                         hi = new HELPINFO();
4285
4286                                         hi = (HELPINFO) Marshal.PtrToStructure (m.LParam, typeof (HELPINFO));
4287                                         mouse_pos = new Point(hi.MousePos.x, hi.MousePos.y);
4288                                 } else {
4289                                         mouse_pos = Control.MousePosition;
4290                                 }
4291                                 OnHelpRequested(new HelpEventArgs(mouse_pos));
4292                                 m.Result = (IntPtr)1;
4293                                 return;
4294                         }
4295
4296                         case Msg.WM_KILLFOCUS: {
4297                                 this.has_focus = false;
4298                                 OnLostFocusInternal (EventArgs.Empty);
4299                                 return;
4300                         }
4301
4302                         case Msg.WM_SETFOCUS: {
4303                                 if (!has_focus) {
4304                                         this.has_focus = true;
4305                                         OnGotFocusInternal (EventArgs.Empty);
4306                                 }
4307                                 return;
4308                         }
4309                                         
4310                         case Msg.WM_SYSCOLORCHANGE: {
4311                                 ThemeEngine.Current.ResetDefaults();
4312                                 OnSystemColorsChanged(EventArgs.Empty);
4313                                 return;
4314                         }
4315
4316                         case Msg.WM_SETCURSOR: {
4317                                 if ((cursor == null) || ((HitTest)(m.LParam.ToInt32() & 0xffff) != HitTest.HTCLIENT)) {
4318                                         DefWndProc(ref m);
4319                                         return;
4320                                 }
4321
4322                                 XplatUI.SetCursor(window.Handle, cursor.handle);
4323                                 m.Result = (IntPtr)1;
4324
4325                                 return;
4326                         }
4327
4328                         default:
4329                                 DefWndProc(ref m);
4330                                 return;
4331                         }
4332                 }
4333                 #endregion      // Public Instance Methods
4334
4335                 #region OnXXX methods
4336                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4337                 protected virtual void OnBackColorChanged(EventArgs e) {
4338                         EventHandler eh = (EventHandler)(Events [BackColorChangedEvent]);
4339                         if (eh != null)
4340                                 eh (this, e);
4341                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackColorChanged(e);
4342                 }
4343
4344                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4345                 protected virtual void OnBackgroundImageChanged(EventArgs e) {
4346                         EventHandler eh = (EventHandler)(Events [BackgroundImageChangedEvent]);
4347                         if (eh != null)
4348                                 eh (this, e);
4349                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackgroundImageChanged(e);
4350                 }
4351
4352                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4353                 protected virtual void OnBindingContextChanged(EventArgs e) {
4354                         CheckDataBindings ();
4355                         EventHandler eh = (EventHandler)(Events [BindingContextChangedEvent]);
4356                         if (eh != null)
4357                                 eh (this, e);
4358                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBindingContextChanged(e);
4359                 }
4360
4361                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4362                 protected virtual void OnCausesValidationChanged(EventArgs e) {
4363                         EventHandler eh = (EventHandler)(Events [CausesValidationChangedEvent]);
4364                         if (eh != null)
4365                                 eh (this, e);
4366                 }
4367
4368                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4369                 protected virtual void OnChangeUICues(UICuesEventArgs e) {
4370                         UICuesEventHandler eh = (UICuesEventHandler)(Events [ChangeUICuesEvent]);
4371                         if (eh != null)
4372                                 eh (this, e);
4373                 }
4374
4375                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4376                 protected virtual void OnClick(EventArgs e) {
4377                         EventHandler eh = (EventHandler)(Events [ClickEvent]);
4378                         if (eh != null)
4379                                 eh (this, e);
4380                 }
4381
4382                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4383                 protected virtual void OnContextMenuChanged(EventArgs e) {
4384                         EventHandler eh = (EventHandler)(Events [ContextMenuChangedEvent]);
4385                         if (eh != null)
4386                                 eh (this, e);
4387                 }
4388
4389                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4390                 protected virtual void OnControlAdded(ControlEventArgs e) {
4391                         ControlEventHandler eh = (ControlEventHandler)(Events [ControlAddedEvent]);
4392                         if (eh != null)
4393                                 eh (this, e);
4394                 }
4395
4396                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4397                 protected virtual void OnControlRemoved(ControlEventArgs e) {
4398                         ControlEventHandler eh = (ControlEventHandler)(Events [ControlRemovedEvent]);
4399                         if (eh != null)
4400                                 eh (this, e);
4401                 }
4402
4403                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4404                 protected virtual void OnCreateControl() {
4405                         // Override me!
4406                 }
4407
4408                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4409                 protected virtual void OnCursorChanged(EventArgs e) {
4410                         EventHandler eh = (EventHandler)(Events [CursorChangedEvent]);
4411                         if (eh != null)
4412                                 eh (this, e);
4413                 }
4414
4415                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4416                 protected virtual void OnDockChanged(EventArgs e) {
4417                         EventHandler eh = (EventHandler)(Events [DockChangedEvent]);
4418                         if (eh != null)
4419                                 eh (this, e);
4420                 }
4421
4422                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4423                 protected virtual void OnDoubleClick(EventArgs e) {
4424                         EventHandler eh = (EventHandler)(Events [DoubleClickEvent]);
4425                         if (eh != null)
4426                                 eh (this, e);
4427                 }
4428
4429                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4430                 protected virtual void OnDragDrop(DragEventArgs drgevent) {
4431                         DragEventHandler eh = (DragEventHandler)(Events [DragDropEvent]);
4432                         if (eh != null)
4433                                 eh (this, drgevent);
4434                 }
4435
4436                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4437                 protected virtual void OnDragEnter(DragEventArgs drgevent) {
4438                         DragEventHandler eh = (DragEventHandler)(Events [DragEnterEvent]);
4439                         if (eh != null)
4440                                 eh (this, drgevent);
4441                 }
4442
4443                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4444                 protected virtual void OnDragLeave(EventArgs e) {
4445                         EventHandler eh = (EventHandler)(Events [DragLeaveEvent]);
4446                         if (eh != null)
4447                                 eh (this, e);
4448                 }
4449
4450                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4451                 protected virtual void OnDragOver(DragEventArgs drgevent) {
4452                         DragEventHandler eh = (DragEventHandler)(Events [DragOverEvent]);
4453                         if (eh != null)
4454                                 eh (this, drgevent);
4455                 }
4456
4457                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4458                 protected virtual void OnEnabledChanged(EventArgs e) {
4459                         if (IsHandleCreated) {
4460                                 if (this is Form) {
4461                                         if (((Form)this).context == null) {
4462                                                 XplatUI.EnableWindow(window.Handle, Enabled);
4463                                         }
4464                                 } else {
4465                                         XplatUI.EnableWindow(window.Handle, Enabled);
4466                                 }
4467                                 Refresh();
4468                         }
4469
4470                         EventHandler eh = (EventHandler)(Events [EnabledChangedEvent]);
4471                         if (eh != null)
4472                                 eh (this, e);
4473
4474                         for (int i=0; i<child_controls.Count; i++) {
4475                                 child_controls[i].OnParentEnabledChanged(e);
4476                         }
4477                 }
4478
4479                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4480                 protected virtual void OnEnter(EventArgs e) {
4481                         EventHandler eh = (EventHandler)(Events [EnterEvent]);
4482                         if (eh != null)
4483                                 eh (this, e);
4484                 }
4485
4486                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4487                 protected virtual void OnFontChanged(EventArgs e) {
4488                         EventHandler eh = (EventHandler)(Events [FontChangedEvent]);
4489                         if (eh != null)
4490                                 eh (this, e);
4491                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentFontChanged(e);
4492                 }
4493
4494                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4495                 protected virtual void OnForeColorChanged(EventArgs e) {
4496                         EventHandler eh = (EventHandler)(Events [ForeColorChangedEvent]);
4497                         if (eh != null)
4498                                 eh (this, e);
4499                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentForeColorChanged(e);
4500                 }
4501
4502                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4503                 protected virtual void OnGiveFeedback(GiveFeedbackEventArgs gfbevent) {
4504                         GiveFeedbackEventHandler eh = (GiveFeedbackEventHandler)(Events [GiveFeedbackEvent]);
4505                         if (eh != null)
4506                                 eh (this, gfbevent);
4507                 }
4508                 
4509                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4510                 protected virtual void OnGotFocus(EventArgs e) {
4511                         EventHandler eh = (EventHandler)(Events [GotFocusEvent]);
4512                         if (eh != null)
4513                                 eh (this, e);
4514                 }
4515
4516                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4517                 protected virtual void OnHandleCreated(EventArgs e) {
4518                         EventHandler eh = (EventHandler)(Events [HandleCreatedEvent]);
4519                         if (eh != null)
4520                                 eh (this, e);
4521                 }
4522
4523                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4524                 protected virtual void OnHandleDestroyed(EventArgs e) {
4525                         EventHandler eh = (EventHandler)(Events [HandleDestroyedEvent]);
4526                         if (eh != null)
4527                                 eh (this, e);
4528                 }
4529
4530                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4531                 protected virtual void OnHelpRequested(HelpEventArgs hevent) {
4532                         HelpEventHandler eh = (HelpEventHandler)(Events [HelpRequestedEvent]);
4533                         if (eh != null)
4534                                 eh (this, hevent);
4535                 }
4536
4537                 protected virtual void OnImeModeChanged(EventArgs e) {
4538                         EventHandler eh = (EventHandler)(Events [ImeModeChangedEvent]);
4539                         if (eh != null)
4540                                 eh (this, e);
4541                 }
4542
4543                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4544                 protected virtual void OnInvalidated(InvalidateEventArgs e) {
4545                         if (ThemeEngine.Current.DoubleBufferingSupported)
4546                                 if ((control_style & ControlStyles.DoubleBuffer) != 0) {
4547                                         // should this block be here?  seems like it
4548                                         // would be more at home in
4549                                         // NotifyInvalidated..
4550                                         if (e.InvalidRect == ClientRectangle) {
4551                                                 InvalidateBackBuffer ();
4552                                         }
4553                                         else {
4554                                                 // we need this Inflate call here so
4555                                                 // that the border of the rectangle is
4556                                                 // considered Visible (the
4557                                                 // invalid_region.IsVisible call) in
4558                                                 // the WM_PAINT handling below.
4559                                                 Rectangle r = Rectangle.Inflate(e.InvalidRect, 1,1);
4560                                                 if (invalid_region == null)
4561                                                         invalid_region = new Region (r);
4562                                                 else
4563                                                         invalid_region.Union (r);
4564                                         }
4565                                 }
4566
4567                         InvalidateEventHandler eh = (InvalidateEventHandler)(Events [InvalidatedEvent]);
4568                         if (eh != null)
4569                                 eh (this, e);
4570                 }
4571
4572                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4573                 protected virtual void OnKeyDown(KeyEventArgs e) {
4574                         KeyEventHandler eh = (KeyEventHandler)(Events [KeyDownEvent]);
4575                         if (eh != null)
4576                                 eh (this, e);
4577                 }
4578
4579                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4580                 protected virtual void OnKeyPress(KeyPressEventArgs e) {
4581                         KeyPressEventHandler eh = (KeyPressEventHandler)(Events [KeyPressEvent]);
4582                         if (eh != null)
4583                                 eh (this, e);
4584                 }
4585
4586                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4587                 protected virtual void OnKeyUp(KeyEventArgs e) {
4588                         KeyEventHandler eh = (KeyEventHandler)(Events [KeyUpEvent]);
4589                         if (eh != null)
4590                                 eh (this, e);
4591                 }
4592
4593                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4594                 protected virtual void OnLayout(LayoutEventArgs levent) {
4595                         LayoutEventHandler eh = (LayoutEventHandler)(Events [LayoutEvent]);
4596                         if (eh != null)
4597                                 eh (this, levent);
4598                 }
4599
4600                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4601                 protected virtual void OnLeave(EventArgs e) {
4602                         EventHandler eh = (EventHandler)(Events [LeaveEvent]);
4603                         if (eh != null)
4604                                 eh (this, e);
4605                 }
4606
4607                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4608                 protected virtual void OnLocationChanged(EventArgs e) {
4609                         OnMove(e);
4610                         EventHandler eh = (EventHandler)(Events [LocationChangedEvent]);
4611                         if (eh != null)
4612                                 eh (this, e);
4613                 }
4614
4615                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4616                 protected virtual void OnLostFocus(EventArgs e) {
4617                         EventHandler eh = (EventHandler)(Events [LostFocusEvent]);
4618                         if (eh != null)
4619                                 eh (this, e);
4620                 }
4621
4622                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4623                 protected virtual void OnMouseDown(MouseEventArgs e) {
4624                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseDownEvent]);
4625                         if (eh != null)
4626                                 eh (this, e);
4627                 }
4628
4629                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4630                 protected virtual void OnMouseEnter(EventArgs e) {
4631                         EventHandler eh = (EventHandler)(Events [MouseEnterEvent]);
4632                         if (eh != null)
4633                                 eh (this, e);
4634                 }
4635
4636                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4637                 protected virtual void OnMouseHover(EventArgs e) {
4638                         EventHandler eh = (EventHandler)(Events [MouseHoverEvent]);
4639                         if (eh != null)
4640                                 eh (this, e);
4641                 }
4642
4643                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4644                 protected virtual void OnMouseLeave(EventArgs e) {
4645                         EventHandler eh = (EventHandler)(Events [MouseLeaveEvent]);
4646                         if (eh != null)
4647                                 eh (this, e);
4648                 }
4649
4650                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4651                 protected virtual void OnMouseMove(MouseEventArgs e) {
4652                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseMoveEvent]);
4653                         if (eh != null)
4654                                 eh (this, e);
4655                 }
4656
4657                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4658                 protected virtual void OnMouseUp(MouseEventArgs e) {
4659                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseUpEvent]);
4660                         if (eh != null)
4661                                 eh (this, e);
4662                 }
4663
4664                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4665                 protected virtual void OnMouseWheel(MouseEventArgs e) {
4666                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseWheelEvent]);
4667                         if (eh != null)
4668                                 eh (this, e);
4669                 }
4670
4671                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4672                 protected virtual void OnMove(EventArgs e) {
4673                         EventHandler eh = (EventHandler)(Events [MoveEvent]);
4674                         if (eh != null)
4675                                 eh (this, e);
4676                 }
4677
4678                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4679                 protected virtual void OnNotifyMessage(Message m) {
4680                         // Override me!
4681                 }
4682
4683                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4684                 protected virtual void OnPaint(PaintEventArgs e) {
4685                         PaintEventHandler eh = (PaintEventHandler)(Events [PaintEvent]);
4686                         if (eh != null)
4687                                 eh (this, e);
4688                 }
4689
4690                 internal virtual void OnPaintBackgroundInternal(PaintEventArgs e) {
4691                         // Override me
4692                 }
4693
4694                 internal virtual void OnPaintInternal(PaintEventArgs e) {
4695                         // Override me
4696                 }
4697
4698                 internal virtual void OnGotFocusInternal (EventArgs e)
4699                 {
4700                         OnGotFocus (e);
4701                 }
4702
4703                 internal virtual void OnLostFocusInternal (EventArgs e)
4704                 {
4705                         OnLostFocus (e);
4706                 }
4707
4708                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4709                 protected virtual void OnPaintBackground(PaintEventArgs pevent) {
4710                         PaintControlBackground (pevent);
4711                 }
4712
4713                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4714                 protected virtual void OnParentBackColorChanged(EventArgs e) {
4715                         if (background_color.IsEmpty && background_image==null) {
4716                                 Invalidate();
4717                                 OnBackColorChanged(e);
4718                         }
4719                 }
4720
4721                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4722                 protected virtual void OnParentBackgroundImageChanged(EventArgs e) {
4723                         if (background_color.IsEmpty && background_image==null) {
4724                                 Invalidate();
4725                                 OnBackgroundImageChanged(e);
4726                         }
4727                 }
4728
4729                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4730                 protected virtual void OnParentBindingContextChanged(EventArgs e) {
4731                         if (binding_context==null) {
4732                                 binding_context=Parent.binding_context;
4733                                 OnBindingContextChanged(e);
4734                         }
4735                 }
4736
4737                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4738                 protected virtual void OnParentChanged(EventArgs e) {
4739                         EventHandler eh = (EventHandler)(Events [ParentChangedEvent]);
4740                         if (eh != null)
4741                                 eh (this, e);
4742                 }
4743
4744                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4745                 protected virtual void OnParentEnabledChanged(EventArgs e) {
4746                         if (is_enabled) {
4747                                 OnEnabledChanged(e);
4748                         }
4749                 }
4750
4751                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4752                 protected virtual void OnParentFontChanged(EventArgs e) {
4753                         if (font==null) {
4754                                 Invalidate();
4755                                 OnFontChanged(e);
4756                         }
4757                 }
4758
4759                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4760                 protected virtual void OnParentForeColorChanged(EventArgs e) {
4761                         if (foreground_color.IsEmpty) {
4762                                 Invalidate();
4763                                 OnForeColorChanged(e);
4764                         }
4765                 }
4766
4767                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4768                 protected virtual void OnParentRightToLeftChanged(EventArgs e) {
4769                         if (right_to_left==RightToLeft.Inherit) {
4770                                 Invalidate();
4771                                 OnRightToLeftChanged(e);
4772                         }
4773                 }
4774
4775                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4776                 protected virtual void OnParentVisibleChanged(EventArgs e) {
4777                         if (is_visible) {
4778                                 OnVisibleChanged(e);
4779                         }
4780                 }
4781
4782                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4783                 protected virtual void OnQueryContinueDrag(QueryContinueDragEventArgs e) {
4784                         QueryContinueDragEventHandler eh = (QueryContinueDragEventHandler)(Events [QueryContinueDragEvent]);
4785                         if (eh != null)
4786                                 eh (this, e);
4787                 }
4788
4789                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4790                 protected virtual void OnResize(EventArgs e) {
4791                         EventHandler eh = (EventHandler)(Events [ResizeEvent]);
4792                         if (eh != null)
4793                                 eh (this, e);
4794
4795                         PerformLayout(this, "bounds");
4796
4797                         if (parent != null) {
4798                                 parent.PerformLayout();
4799                         }
4800                 }
4801
4802                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4803                 protected virtual void OnRightToLeftChanged(EventArgs e) {
4804                         EventHandler eh = (EventHandler)(Events [RightToLeftChangedEvent]);
4805                         if (eh != null)
4806                                 eh (this, e);
4807                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentRightToLeftChanged(e);
4808                 }
4809
4810                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4811                 protected virtual void OnSizeChanged(EventArgs e) {
4812                         DisposeBackBuffer ();
4813                         OnResize(e);
4814                         EventHandler eh = (EventHandler)(Events [SizeChangedEvent]);
4815                         if (eh != null)
4816                                 eh (this, e);
4817                 }
4818
4819                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4820                 protected virtual void OnStyleChanged(EventArgs e) {
4821                         EventHandler eh = (EventHandler)(Events [StyleChangedEvent]);
4822                         if (eh != null)
4823                                 eh (this, e);
4824                 }
4825
4826                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4827                 protected virtual void OnSystemColorsChanged(EventArgs e) {
4828                         EventHandler eh = (EventHandler)(Events [SystemColorsChangedEvent]);
4829                         if (eh != null)
4830                                 eh (this, e);
4831                 }
4832
4833                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4834                 protected virtual void OnTabIndexChanged(EventArgs e) {
4835                         EventHandler eh = (EventHandler)(Events [TabIndexChangedEvent]);
4836                         if (eh != null)
4837                                 eh (this, e);
4838                 }
4839
4840                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4841                 protected virtual void OnTabStopChanged(EventArgs e) {
4842                         EventHandler eh = (EventHandler)(Events [TabStopChangedEvent]);
4843                         if (eh != null)
4844                                 eh (this, e);
4845                 }
4846
4847                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4848                 protected virtual void OnTextChanged(EventArgs e) {
4849                         EventHandler eh = (EventHandler)(Events [TextChangedEvent]);
4850                         if (eh != null)
4851                                 eh (this, e);
4852                 }
4853
4854                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4855                 protected virtual void OnValidated(EventArgs e) {
4856                         EventHandler eh = (EventHandler)(Events [ValidatedEvent]);
4857                         if (eh != null)
4858                                 eh (this, e);
4859                 }
4860
4861                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4862                 protected virtual void OnValidating(System.ComponentModel.CancelEventArgs e) {
4863                         CancelEventHandler eh = (CancelEventHandler)(Events [ValidatingEvent]);
4864                         if (eh != null)
4865                                 eh (this, e);
4866                 }
4867
4868                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4869                 protected virtual void OnVisibleChanged(EventArgs e) {
4870                         if ((parent != null) && !Created && Visible) {
4871                                 if (!is_disposed) {
4872                                         CreateControl();
4873                                         PerformLayout();
4874                                 }
4875                         }
4876
4877                         EventHandler eh = (EventHandler)(Events [VisibleChangedEvent]);
4878                         if (eh != null)
4879                                 eh (this, e);
4880
4881                         // We need to tell our kids
4882                         for (int i=0; i<child_controls.Count; i++) {
4883                                 if (child_controls[i].Visible) {
4884                                         child_controls[i].OnParentVisibleChanged(e);
4885                                 }
4886                         }
4887                 }
4888                 #endregion      // OnXXX methods
4889
4890                 #region Events
4891                 static object BackColorChangedEvent = new object ();
4892                 static object BackgroundImageChangedEvent = new object ();
4893                 static object BindingContextChangedEvent = new object ();
4894                 static object CausesValidationChangedEvent = new object ();
4895                 static object ChangeUICuesEvent = new object ();
4896                 static object ClickEvent = new object ();
4897                 static object ContextMenuChangedEvent = new object ();
4898                 static object ControlAddedEvent = new object ();
4899                 static object ControlRemovedEvent = new object ();
4900                 static object CursorChangedEvent = new object ();
4901                 static object DockChangedEvent = new object ();
4902                 static object DoubleClickEvent = new object ();
4903                 static object DragDropEvent = new object ();
4904                 static object DragEnterEvent = new object ();
4905                 static object DragLeaveEvent = new object ();
4906                 static object DragOverEvent = new object ();
4907                 static object EnabledChangedEvent = new object ();
4908                 static object EnterEvent = new object ();
4909                 static object FontChangedEvent = new object ();
4910                 static object ForeColorChangedEvent = new object ();
4911                 static object GiveFeedbackEvent = new object ();
4912                 static object GotFocusEvent = new object ();
4913                 static object HandleCreatedEvent = new object ();
4914                 static object HandleDestroyedEvent = new object ();
4915                 static object HelpRequestedEvent = new object ();
4916                 static object ImeModeChangedEvent = new object ();
4917                 static object InvalidatedEvent = new object ();
4918                 static object KeyDownEvent = new object ();
4919                 static object KeyPressEvent = new object ();
4920                 static object KeyUpEvent = new object ();
4921                 static object LayoutEvent = new object ();
4922                 static object LeaveEvent = new object ();
4923                 static object LocationChangedEvent = new object ();
4924                 static object LostFocusEvent = new object ();
4925                 static object MouseDownEvent = new object ();
4926                 static object MouseEnterEvent = new object ();
4927                 static object MouseHoverEvent = new object ();
4928                 static object MouseLeaveEvent = new object ();
4929                 static object MouseMoveEvent = new object ();
4930                 static object MouseUpEvent = new object ();
4931                 static object MouseWheelEvent = new object ();
4932                 static object MoveEvent = new object ();
4933                 static object PaintEvent = new object ();
4934                 static object ParentChangedEvent = new object ();
4935                 static object QueryAccessibilityHelpEvent = new object ();
4936                 static object QueryContinueDragEvent = new object ();
4937                 static object ResizeEvent = new object ();
4938                 static object RightToLeftChangedEvent = new object ();
4939                 static object SizeChangedEvent = new object ();
4940                 static object StyleChangedEvent = new object ();
4941                 static object SystemColorsChangedEvent = new object ();
4942                 static object TabIndexChangedEvent = new object ();
4943                 static object TabStopChangedEvent = new object ();
4944                 static object TextChangedEvent = new object ();
4945                 static object ValidatedEvent = new object ();
4946                 static object ValidatingEvent = new object ();
4947                 static object VisibleChangedEvent = new object ();
4948
4949                 public event EventHandler BackColorChanged {
4950                         add { Events.AddHandler (BackColorChangedEvent, value); }
4951                         remove { Events.RemoveHandler (BackColorChangedEvent, value); }
4952                 }
4953
4954                 public event EventHandler BackgroundImageChanged {
4955                         add { Events.AddHandler (BackgroundImageChangedEvent, value); }
4956                         remove { Events.RemoveHandler (BackgroundImageChangedEvent, value); }
4957                 }
4958
4959                 public event EventHandler BindingContextChanged {
4960                         add { Events.AddHandler (BindingContextChangedEvent, value); }
4961                         remove { Events.RemoveHandler (BindingContextChangedEvent, value); }
4962                 }
4963
4964                 public event EventHandler CausesValidationChanged {
4965                         add { Events.AddHandler (CausesValidationChangedEvent, value); }
4966                         remove { Events.RemoveHandler (CausesValidationChangedEvent, value); }
4967                 }
4968
4969                 public event UICuesEventHandler ChangeUICues {
4970                         add { Events.AddHandler (ChangeUICuesEvent, value); }
4971                         remove { Events.RemoveHandler (ChangeUICuesEvent, value); }
4972                 }
4973
4974                 public event EventHandler Click {
4975                         add { Events.AddHandler (ClickEvent, value); }
4976                         remove { Events.RemoveHandler (ClickEvent, value); }
4977                 }
4978
4979                 public event EventHandler ContextMenuChanged {
4980                         add { Events.AddHandler (ContextMenuChangedEvent, value); }
4981                         remove { Events.RemoveHandler (ContextMenuChangedEvent, value); }
4982                 }
4983
4984                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4985                 [Browsable(false)]
4986                 public event ControlEventHandler ControlAdded {
4987                         add { Events.AddHandler (ControlAddedEvent, value); }
4988                         remove { Events.RemoveHandler (ControlAddedEvent, value); }
4989                 }
4990
4991                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4992                 [Browsable(false)]
4993                 public event ControlEventHandler ControlRemoved {
4994                         add { Events.AddHandler (ControlRemovedEvent, value); }
4995                         remove { Events.RemoveHandler (ControlRemovedEvent, value); }
4996                 }
4997
4998                 [MWFDescription("Fired when the cursor for the control has been changed"), MWFCategory("PropertyChanged")]
4999                 public event EventHandler CursorChanged {
5000                         add { Events.AddHandler (CursorChangedEvent, value); }
5001                         remove { Events.RemoveHandler (CursorChangedEvent, value); }
5002                 }
5003                 public event EventHandler DockChanged {
5004                         add { Events.AddHandler (DockChangedEvent, value); }
5005                         remove { Events.RemoveHandler (DockChangedEvent, value); }
5006                 }
5007
5008                 public event EventHandler DoubleClick {
5009                         add { Events.AddHandler (DoubleClickEvent, value); }
5010                         remove { Events.RemoveHandler (DoubleClickEvent, value); }
5011                 }
5012
5013                 public event DragEventHandler DragDrop {
5014                         add { Events.AddHandler (DragDropEvent, value); }
5015                         remove { Events.RemoveHandler (DragDropEvent, value); }
5016                 }
5017
5018                 public event DragEventHandler DragEnter {
5019                         add { Events.AddHandler (DragEnterEvent, value); }
5020                         remove { Events.RemoveHandler (DragEnterEvent, value); }
5021                 }
5022
5023                 public event EventHandler DragLeave {
5024                         add { Events.AddHandler (DragLeaveEvent, value); }
5025                         remove { Events.RemoveHandler (DragLeaveEvent, value); }
5026                 }
5027
5028                 public event DragEventHandler DragOver {
5029                         add { Events.AddHandler (DragOverEvent, value); }
5030                         remove { Events.RemoveHandler (DragOverEvent, value); }
5031                 }
5032
5033                 public event EventHandler EnabledChanged {
5034                         add { Events.AddHandler (EnabledChangedEvent, value); }
5035                         remove { Events.RemoveHandler (EnabledChangedEvent, value); }
5036                 }
5037
5038                 public event EventHandler Enter {
5039                         add { Events.AddHandler (EnterEvent, value); }
5040                         remove { Events.RemoveHandler (EnterEvent, value); }
5041                 }
5042
5043                 public event EventHandler FontChanged {
5044                         add { Events.AddHandler (FontChangedEvent, value); }
5045                         remove { Events.RemoveHandler (FontChangedEvent, value); }
5046                 }
5047
5048                 public event EventHandler ForeColorChanged {
5049                         add { Events.AddHandler (ForeColorChangedEvent, value); }
5050                         remove { Events.RemoveHandler (ForeColorChangedEvent, value); }
5051                 }
5052
5053                 public event GiveFeedbackEventHandler GiveFeedback {
5054                         add { Events.AddHandler (GiveFeedbackEvent, value); }
5055                         remove { Events.RemoveHandler (GiveFeedbackEvent, value); }
5056                 }
5057
5058                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5059                 [Browsable(false)]
5060                 public event EventHandler GotFocus {
5061                         add { Events.AddHandler (GotFocusEvent, value); }
5062                         remove { Events.RemoveHandler (GotFocusEvent, value); }
5063                 }
5064
5065
5066                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5067                 [Browsable(false)]
5068                 public event EventHandler HandleCreated {
5069                         add { Events.AddHandler (HandleCreatedEvent, value); }
5070                         remove { Events.RemoveHandler (HandleCreatedEvent, value); }
5071                 }
5072
5073                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5074                 [Browsable(false)]
5075                 public event EventHandler HandleDestroyed {
5076                         add { Events.AddHandler (HandleDestroyedEvent, value); }
5077                         remove { Events.RemoveHandler (HandleDestroyedEvent, value); }
5078                 }
5079
5080                 public event HelpEventHandler HelpRequested {
5081                         add { Events.AddHandler (HelpRequestedEvent, value); }
5082                         remove { Events.RemoveHandler (HelpRequestedEvent, value); }
5083                 }
5084
5085                 public event EventHandler ImeModeChanged {
5086                         add { Events.AddHandler (ImeModeChangedEvent, value); }
5087                         remove { Events.RemoveHandler (ImeModeChangedEvent, value); }
5088                 }
5089
5090                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5091                 [Browsable(false)]
5092                 public event InvalidateEventHandler Invalidated {
5093                         add { Events.AddHandler (InvalidatedEvent, value); }
5094                         remove { Events.RemoveHandler (InvalidatedEvent, value); }
5095                 }
5096
5097                 public event KeyEventHandler KeyDown {
5098                         add { Events.AddHandler (KeyDownEvent, value); }
5099                         remove { Events.RemoveHandler (KeyDownEvent, value); }
5100                 }
5101
5102                 public event KeyPressEventHandler KeyPress {
5103                         add { Events.AddHandler (KeyPressEvent, value); }
5104                         remove { Events.RemoveHandler (KeyPressEvent, value); }
5105                 }
5106
5107                 public event KeyEventHandler KeyUp {
5108                         add { Events.AddHandler (KeyUpEvent, value); }
5109                         remove { Events.RemoveHandler (KeyUpEvent, value); }
5110                 }
5111
5112                 public event LayoutEventHandler Layout {
5113                         add { Events.AddHandler (LayoutEvent, value); }
5114                         remove { Events.RemoveHandler (LayoutEvent, value); }
5115                 }
5116
5117                 public event EventHandler Leave {
5118                         add { Events.AddHandler (LeaveEvent, value); }
5119                         remove { Events.RemoveHandler (LeaveEvent, value); }
5120                 }
5121
5122                 public event EventHandler LocationChanged {
5123                         add { Events.AddHandler (LocationChangedEvent, value); }
5124                         remove { Events.RemoveHandler (LocationChangedEvent, value); }
5125                 }
5126
5127                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5128                 [Browsable(false)]
5129                 public event EventHandler LostFocus {
5130                         add { Events.AddHandler (LostFocusEvent, value); }
5131                         remove { Events.RemoveHandler (LostFocusEvent, value); }
5132                 }
5133
5134                 public event MouseEventHandler MouseDown {
5135                         add { Events.AddHandler (MouseDownEvent, value); }
5136                         remove { Events.RemoveHandler (MouseDownEvent, value); }
5137                 }
5138
5139                 public event EventHandler MouseEnter {
5140                         add { Events.AddHandler (MouseEnterEvent, value); }
5141                         remove { Events.RemoveHandler (MouseEnterEvent, value); }
5142                 }
5143
5144                 public event EventHandler MouseHover {
5145                         add { Events.AddHandler (MouseHoverEvent, value); }
5146                         remove { Events.RemoveHandler (MouseHoverEvent, value); }
5147                 }
5148
5149                 public event EventHandler MouseLeave {
5150                         add { Events.AddHandler (MouseLeaveEvent, value); }
5151                         remove { Events.RemoveHandler (MouseLeaveEvent, value); }
5152                 }
5153
5154                 public event MouseEventHandler MouseMove {
5155                         add { Events.AddHandler (MouseMoveEvent, value); }
5156                         remove { Events.RemoveHandler (MouseMoveEvent, value); }
5157                 }
5158
5159                 public event MouseEventHandler MouseUp {
5160                         add { Events.AddHandler (MouseUpEvent, value); }
5161                         remove { Events.RemoveHandler (MouseUpEvent, value); }
5162                 }
5163
5164                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5165                 [Browsable(false)]
5166                 public event MouseEventHandler MouseWheel {
5167                         add { Events.AddHandler (MouseWheelEvent, value); }
5168                         remove { Events.RemoveHandler (MouseWheelEvent, value); }
5169                 }
5170
5171                 public event EventHandler Move {
5172                         add { Events.AddHandler (MoveEvent, value); }
5173                         remove { Events.RemoveHandler (MoveEvent, value); }
5174                 }
5175
5176                 public event PaintEventHandler Paint {
5177                         add { Events.AddHandler (PaintEvent, value); }
5178                         remove { Events.RemoveHandler (PaintEvent, value); }
5179                 }
5180
5181                 public event EventHandler ParentChanged {
5182                         add { Events.AddHandler (ParentChangedEvent, value); }
5183                         remove { Events.RemoveHandler (ParentChangedEvent, value); }
5184                 }
5185
5186                 public event QueryAccessibilityHelpEventHandler QueryAccessibilityHelp {
5187                         add { Events.AddHandler (QueryAccessibilityHelpEvent, value); }
5188                         remove { Events.RemoveHandler (QueryAccessibilityHelpEvent, value); }
5189                 }
5190
5191                 public event QueryContinueDragEventHandler QueryContinueDrag {
5192                         add { Events.AddHandler (QueryContinueDragEvent, value); }
5193                         remove { Events.RemoveHandler (QueryContinueDragEvent, value); }
5194                 }
5195
5196                 public event EventHandler Resize {
5197                         add { Events.AddHandler (ResizeEvent, value); }
5198                         remove { Events.RemoveHandler (ResizeEvent, value); }
5199                 }
5200
5201                 public event EventHandler RightToLeftChanged {
5202                         add { Events.AddHandler (RightToLeftChangedEvent, value); }
5203                         remove { Events.RemoveHandler (RightToLeftChangedEvent, value); }
5204                 }
5205
5206                 public event EventHandler SizeChanged {
5207                         add { Events.AddHandler (SizeChangedEvent, value); }
5208                         remove { Events.RemoveHandler (SizeChangedEvent, value); }
5209                 }
5210
5211                 public event EventHandler StyleChanged {
5212                         add { Events.AddHandler (StyleChangedEvent, value); }
5213                         remove { Events.RemoveHandler (StyleChangedEvent, value); }
5214                 }
5215
5216                 public event EventHandler SystemColorsChanged {
5217                         add { Events.AddHandler (SystemColorsChangedEvent, value); }
5218                         remove { Events.RemoveHandler (SystemColorsChangedEvent, value); }
5219                 }
5220
5221                 public event EventHandler TabIndexChanged {
5222                         add { Events.AddHandler (TabIndexChangedEvent, value); }
5223                         remove { Events.RemoveHandler (TabIndexChangedEvent, value); }
5224                 }
5225
5226                 public event EventHandler TabStopChanged {
5227                         add { Events.AddHandler (TabStopChangedEvent, value); }
5228                         remove { Events.RemoveHandler (TabStopChangedEvent, value); }
5229                 }
5230
5231                 public event EventHandler TextChanged {
5232                         add { Events.AddHandler (TextChangedEvent, value); }
5233                         remove { Events.RemoveHandler (TextChangedEvent, value); }
5234                 }
5235
5236                 public event EventHandler Validated {
5237                         add { Events.AddHandler (ValidatedEvent, value); }
5238                         remove { Events.RemoveHandler (ValidatedEvent, value); }
5239                 }
5240
5241                 public event CancelEventHandler Validating {
5242                         add { Events.AddHandler (ValidatingEvent, value); }
5243                         remove { Events.RemoveHandler (ValidatingEvent, value); }
5244                 }
5245
5246                 public event EventHandler VisibleChanged {
5247                         add { Events.AddHandler (VisibleChangedEvent, value); }
5248                         remove { Events.RemoveHandler (VisibleChangedEvent, value); }
5249                 }
5250
5251                 #endregion      // Events
5252         }
5253 }