2006-12-11 Miguel de Icaza <miguel@novell.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 GetContextMenuInternal ();
1837                         }
1838
1839                         set {
1840                                 if (context_menu != value) {
1841                                         context_menu = value;
1842                                         OnContextMenuChanged(EventArgs.Empty);
1843                                 }
1844                         }
1845                 }
1846
1847                 internal virtual ContextMenu GetContextMenuInternal ()
1848                 {
1849                         return context_menu;
1850                 }
1851
1852                 [Browsable(false)]
1853                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1854                 public ControlCollection Controls {
1855                         get {
1856                                 return this.child_controls;
1857                         }
1858                 }
1859
1860                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1861                 [Browsable(false)]
1862                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1863                 public bool Created {
1864                         get {
1865                                 return (!is_disposed && is_created);
1866                         }
1867                 }
1868
1869                 [AmbientValue(null)]
1870                 [MWFCategory("Appearance")]
1871                 public virtual Cursor Cursor {
1872                         get {
1873                                 if (cursor != null) {
1874                                         return cursor;
1875                                 }
1876
1877                                 if (parent != null) {
1878                                         return parent.Cursor;
1879                                 }
1880
1881                                 return Cursors.Default;
1882                         }
1883
1884                         set {
1885                                 if (cursor != value) {
1886                                         Point pt;
1887
1888                                         cursor = value;
1889                                         
1890                                         if (IsHandleCreated) {
1891                                                 pt = Cursor.Position;
1892
1893                                                 if (bounds.Contains(pt) || Capture) {
1894                                                         if (GetChildAtPoint(pt) == null) {
1895                                                                 if (cursor != null) {
1896                                                                         XplatUI.SetCursor(window.Handle, cursor.handle);
1897                                                                 } else {
1898                                                                         if (parent != null) {
1899                                                                                 XplatUI.SetCursor(window.Handle, parent.Cursor.handle);
1900                                                                         } else {
1901                                                                                 XplatUI.SetCursor(window.Handle, Cursors.Default.handle);
1902                                                                         }
1903                                                                 }
1904                                                         }
1905                                                 }
1906                                         }
1907
1908                                         OnCursorChanged(EventArgs.Empty);
1909                                 }
1910                         }
1911                 }
1912
1913
1914                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1915                 [ParenthesizePropertyName(true)]
1916                 [RefreshProperties(RefreshProperties.All)]
1917                 [MWFCategory("Data")]
1918                 public ControlBindingsCollection DataBindings {
1919                         get {
1920                                 if (data_bindings == null)
1921                                         data_bindings = new ControlBindingsCollection (this);
1922                                 return data_bindings;
1923                         }
1924                 }
1925
1926                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1927                 [Browsable(false)]
1928                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1929                 public virtual Rectangle DisplayRectangle {
1930                         get {
1931                                 return ClientRectangle;
1932                         }
1933                 }
1934
1935                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1936                 [Browsable(false)]
1937                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1938                 public bool Disposing {
1939                         get {
1940                                 return is_disposed;
1941                         }
1942                 }
1943
1944                 [Localizable(true)]
1945                 [RefreshProperties(RefreshProperties.Repaint)]
1946                 [DefaultValue(DockStyle.None)]
1947                 [MWFCategory("Layout")]
1948                 public virtual DockStyle Dock {
1949                         get {
1950                                 return dock_style;
1951                         }
1952
1953                         set {
1954                                 if (dock_style == value) {
1955                                         return;
1956                                 }
1957
1958                                 if (!Enum.IsDefined (typeof (DockStyle), value)) {
1959                                         throw new InvalidEnumArgumentException ("value", (int) value,
1960                                                 typeof (DockStyle));
1961                                 }
1962
1963                                 dock_style = value;
1964
1965                                 if (dock_style == DockStyle.None) {
1966                                         if (explicit_bounds == Rectangle.Empty)
1967                                                 Bounds = new Rectangle (new Point (0, 0), DefaultSize);
1968                                         else
1969                                                 Bounds = explicit_bounds;
1970                                 }
1971
1972                                 if (parent != null) {
1973                                         parent.PerformLayout(this, "Parent");
1974                                 }
1975
1976                                 OnDockChanged(EventArgs.Empty);
1977                         }
1978                 }
1979
1980 #if NET_2_0
1981                 protected virtual bool DoubleBuffered {
1982                         get {
1983                                 return (control_style & ControlStyles.DoubleBuffer) != 0;
1984                         }
1985
1986                         set {
1987                                 SetStyle (ControlStyles.DoubleBuffer, value);
1988                         }
1989                 }
1990 #endif
1991                 
1992                 [DispId(-514)]
1993                 [Localizable(true)]
1994                 [MWFCategory("Behavior")]
1995                 public bool Enabled {
1996                         get {
1997                                 if (!is_enabled) {
1998                                         return false;
1999                                 }
2000
2001                                 if (parent != null) {
2002                                         return parent.Enabled;
2003                                 }
2004
2005                                 return true;
2006                         }
2007
2008                         set {
2009
2010                                 bool old_value = is_enabled;
2011
2012                                 is_enabled = value;
2013                                 if (old_value != value && !value && this.has_focus)
2014                                         SelectNextControl(this, true, true, true, true);
2015
2016                                 OnEnabledChanged (EventArgs.Empty);
2017                         }
2018                 }
2019
2020                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2021                 [Browsable(false)]
2022                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2023                 public virtual bool Focused {
2024                         get {
2025                                 return this.has_focus;
2026                         }
2027                 }
2028
2029                 [DispId(-512)]
2030                 [AmbientValue(null)]
2031                 [Localizable(true)]
2032                 [MWFCategory("Appearance")]
2033                 public virtual Font Font {
2034                         get {
2035                                 if (font != null) {
2036                                         return font;
2037                                 }
2038
2039                                 if (Parent != null && Parent.Font != null) {
2040                                         return Parent.Font;
2041                                 }
2042
2043                                 return DefaultFont;
2044                         }
2045
2046                         [param:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Font))]
2047                         set {
2048                                 if (font != null && font.Equals (value)) {
2049                                         return;
2050                                 }
2051
2052                                 font = value;
2053                                 Invalidate();
2054                                 OnFontChanged (EventArgs.Empty);
2055                         }
2056                 }
2057
2058                 [DispId(-513)]
2059                 [MWFCategory("Appearance")]
2060                 public virtual Color ForeColor {
2061                         get {
2062                                 if (foreground_color.IsEmpty) {
2063                                         if (parent!=null) {
2064                                                 return parent.ForeColor;
2065                                         }
2066                                         return DefaultForeColor;
2067                                 }
2068                                 return foreground_color;
2069                         }
2070
2071                         set {
2072                                 if (foreground_color != value) {
2073                                         foreground_color=value;
2074                                         Invalidate();
2075                                         OnForeColorChanged(EventArgs.Empty);
2076                                 }
2077                         }
2078                 }
2079
2080                 [DispId(-515)]
2081                 [Browsable(false)]
2082                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2083                 public IntPtr Handle {                                                  // IWin32Window
2084                         get {
2085 #if NET_2_0
2086                                 if (verify_thread_handle) {
2087                                         if (this.InvokeRequired) {
2088                                                 throw new InvalidOperationException("Cross-thread access of handle detected. Handle access only valid on thread that created the control");
2089                                         }
2090                                 }
2091 #endif
2092                                 if (!IsHandleCreated) {
2093                                         CreateHandle();
2094                                 }
2095                                 return window.Handle;
2096                         }
2097                 }
2098
2099                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2100                 [Browsable(false)]
2101                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2102                 public bool HasChildren {
2103                         get {
2104                                 if (this.child_controls.Count>0) {
2105                                         return true;
2106                                 }
2107                                 return false;
2108                         }
2109                 }
2110
2111                 [EditorBrowsable(EditorBrowsableState.Always)]
2112                 [Browsable(false)]
2113                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2114                 public int Height {
2115                         get {
2116                                 return this.bounds.Height;
2117                         }
2118
2119                         set {
2120                                 SetBounds(bounds.X, bounds.Y, bounds.Width, value, BoundsSpecified.Height);
2121                         }
2122                 }
2123
2124                 [AmbientValue(ImeMode.Inherit)]
2125                 [Localizable(true)]
2126                 [MWFCategory("Behavior")]
2127                 public ImeMode ImeMode {
2128                         get {
2129                                 if (ime_mode == ImeMode.Inherit) {
2130                                         if (parent != null)
2131                                                 return parent.ImeMode;
2132                                         else
2133                                                 return ImeMode.NoControl; // default value
2134                                 }
2135                                 return ime_mode;
2136                         }
2137
2138                         set {
2139                                 if (ime_mode != value) {
2140                                         ime_mode = value;
2141
2142                                         OnImeModeChanged(EventArgs.Empty);
2143                                 }
2144                         }
2145                 }
2146
2147                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2148                 [Browsable(false)]
2149                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2150                 public bool InvokeRequired {                                            // ISynchronizeInvoke
2151                         get {
2152                                 if (creator_thread != null && creator_thread!=Thread.CurrentThread) {
2153                                         return true;
2154                                 }
2155                                 return false;
2156                         }
2157                 }
2158
2159                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2160                 [Browsable(false)]
2161                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2162                 public bool IsAccessible {
2163                         get {
2164                                 return is_accessible;
2165                         }
2166
2167                         set {
2168                                 is_accessible = value;
2169                         }
2170                 }
2171
2172                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2173                 [Browsable(false)]
2174                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2175                 public bool IsDisposed {
2176                         get {
2177                                 return this.is_disposed;
2178                         }
2179                 }
2180
2181                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2182                 [Browsable(false)]
2183                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2184                 public bool IsHandleCreated {
2185                         get {
2186                                 if ((window != null) && (window.Handle != IntPtr.Zero)) {
2187                                         Hwnd hwnd = Hwnd.ObjectFromHandle (window.Handle);
2188                                         if (hwnd != null && !hwnd.zombie)
2189                                                 return true;
2190                                 }
2191
2192                                 return false;
2193                         }
2194                 }
2195
2196 #if NET_2_0
2197                 public virtual Layout.LayoutEngine LayoutEngine {
2198                         get { return new Layout.DefaultLayout (); }
2199                 } 
2200 #endif
2201
2202                 [EditorBrowsable(EditorBrowsableState.Always)]
2203                 [Browsable(false)]
2204                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2205                 public int Left {
2206                         get {
2207                                 return this.bounds.X;
2208                         }
2209
2210                         set {
2211                                 SetBounds(value, bounds.Y, bounds.Width, bounds.Height, BoundsSpecified.X);
2212                         }
2213                 }
2214
2215                 [Localizable(true)]
2216                 [MWFCategory("Layout")]
2217                 public Point Location {
2218                         get {
2219                                 return new Point(bounds.X, bounds.Y);
2220                         }
2221
2222                         set {
2223                                 SetBounds(value.X, value.Y, bounds.Width, bounds.Height, BoundsSpecified.Location);
2224                         }
2225                 }
2226
2227 #if NET_2_0
2228                 [Localizable (true)]
2229                 public Padding Margin {
2230                         get { return this.margin; }
2231                         set { this.margin = value; }
2232                 }
2233 #endif
2234
2235                 [Browsable(false)]
2236                 public string Name {
2237                         get {
2238                                 return name;
2239                         }
2240
2241                         set {
2242                                 name = value;
2243                         }
2244                 }
2245
2246 #if NET_2_0
2247                 [Localizable(true)]
2248                 public Padding Padding {
2249                         get {
2250                                 return padding;
2251                         }
2252
2253                         set {
2254                                 padding = value;
2255                         }
2256                 }
2257 #endif
2258
2259                 [Browsable(false)]
2260                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2261                 public Control Parent {
2262                         get {
2263                                 return this.parent;
2264                         }
2265
2266                         set {
2267                                 if (value == this) {
2268                                         throw new ArgumentException("A circular control reference has been made. A control cannot be owned or parented to itself.");
2269                                 }
2270
2271                                 if (parent!=value) {
2272                                         if (value==null) {
2273                                                 parent.Controls.Remove(this);
2274                                                 parent = null;
2275                                                 return;
2276                                         }
2277
2278                                         value.Controls.Add(this);
2279                                 }
2280                         }
2281                 }
2282
2283                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2284                 [Browsable(false)]
2285                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2286                 public string ProductName {
2287                         get {
2288                                 Type t = typeof (AssemblyProductAttribute);
2289                                 Assembly assembly = GetType().Module.Assembly;
2290                                 object [] attrs = assembly.GetCustomAttributes (t, false);
2291                                 AssemblyProductAttribute a = null;
2292                                 // On MS we get a NullRefException if product attribute is not
2293                                 // set. 
2294                                 if (attrs != null && attrs.Length > 0)
2295                                         a = (AssemblyProductAttribute) attrs [0];
2296                                 return a.Product;
2297                         }
2298                 }
2299
2300                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2301                 [Browsable(false)]
2302                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2303                 public string ProductVersion {
2304                         get {
2305                                 Type t = typeof (AssemblyVersionAttribute);
2306                                 Assembly assembly = GetType().Module.Assembly;
2307                                 object [] attrs = assembly.GetCustomAttributes (t, false);
2308                                 if (attrs == null || attrs.Length < 1)
2309                                         return "1.0.0.0";
2310                                 return ((AssemblyVersionAttribute)attrs [0]).Version;
2311                         }
2312                 }
2313
2314                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2315                 [Browsable(false)]
2316                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2317                 public bool RecreatingHandle {
2318                         get {
2319                                 return is_recreating;
2320                         }
2321                 }
2322
2323                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2324                 [Browsable(false)]
2325                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2326                 public Region Region {
2327                         get {
2328                                 return clip_region;
2329                         }
2330
2331                         set {
2332                                 if (IsHandleCreated) {
2333                                         XplatUI.SetClipRegion(Handle, value);
2334                                 }
2335                                 clip_region = value;
2336                         }
2337                 }
2338
2339                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2340                 [Browsable(false)]
2341                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2342                 public int Right {
2343                         get {
2344                                 return this.bounds.X+this.bounds.Width;
2345                         }
2346                 }
2347
2348                 [AmbientValue(RightToLeft.Inherit)]
2349                 [Localizable(true)]
2350                 [MWFCategory("Appearance")]
2351                 public virtual RightToLeft RightToLeft {
2352                         get {
2353                                 if (right_to_left == RightToLeft.Inherit) {
2354                                         if (parent != null)
2355                                                 return parent.RightToLeft;
2356                                         else
2357                                                 return RightToLeft.No; // default value
2358                                 }
2359                                 return right_to_left;
2360                         }
2361
2362                         set {
2363                                 if (value != right_to_left) {
2364                                         right_to_left = value;
2365                                         OnRightToLeftChanged(EventArgs.Empty);
2366                                 }
2367                         }
2368                 }
2369
2370                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2371                 public override ISite Site {
2372                         get {
2373                                 return base.Site;
2374                         }
2375
2376                         set {
2377                                 base.Site = value;
2378
2379                                 if (value != null) {
2380                                         AmbientProperties ap = (AmbientProperties) value.GetService (typeof (AmbientProperties));
2381                                         if (ap != null) {
2382                                                 BackColor = ap.BackColor;
2383                                                 ForeColor = ap.ForeColor;
2384                                                 Cursor = ap.Cursor;
2385                                                 Font = ap.Font;
2386                                         }
2387                                 }
2388                         }
2389                 }
2390
2391                 [Localizable(true)]
2392                 [MWFCategory("Layout")]
2393                 public Size Size {
2394                         get {
2395                                 return new Size(Width, Height);
2396                         }
2397
2398                         set {
2399                                 SetBounds(bounds.X, bounds.Y, value.Width, value.Height, BoundsSpecified.Size);
2400                         }
2401                 }
2402
2403                 [Localizable(true)]
2404                 [MergableProperty(false)]
2405                 [MWFCategory("Behavior")]
2406                 public int TabIndex {
2407                         get {
2408                                 if (tab_index != -1) {
2409                                         return tab_index;
2410                                 }
2411                                 return 0;
2412                         }
2413
2414                         set {
2415                                 if (tab_index != value) {
2416                                         tab_index = value;
2417                                         OnTabIndexChanged(EventArgs.Empty);
2418                                 }
2419                         }
2420                 }
2421
2422                 [DispId(-516)]
2423                 [DefaultValue(true)]
2424                 [MWFCategory("Behavior")]
2425                 public bool TabStop {
2426                         get {
2427                                 return tab_stop;
2428                         }
2429
2430                         set {
2431                                 if (tab_stop != value) {
2432                                         tab_stop = value;
2433                                         OnTabStopChanged(EventArgs.Empty);
2434                                 }
2435                         }
2436                 }
2437
2438                 [Localizable(false)]
2439                 [Bindable(true)]
2440                 [TypeConverter(typeof(StringConverter))]
2441                 [DefaultValue(null)]
2442                 [MWFCategory("Data")]
2443                 public object Tag {
2444                         get {
2445                                 return control_tag;
2446                         }
2447
2448                         set {
2449                                 control_tag = value;
2450                         }
2451                 }
2452
2453                 [DispId(-517)]
2454                 [Localizable(true)]
2455                 [BindableAttribute(true)]
2456                 [MWFCategory("Appearance")]
2457                 public virtual string Text {
2458                         get {
2459                                 // Our implementation ignores ControlStyles.CacheText - we always cache
2460                                 return this.text;
2461                         }
2462
2463                         set {
2464                                 if (value == null) {
2465                                         value = String.Empty;
2466                                 }
2467
2468                                 if (text!=value) {
2469                                         text=value;
2470                                         if (IsHandleCreated) {
2471                                                 /* we need to call .SetWindowStyle here instead of just .Text
2472                                                    because the presence/absence of Text (== "" or not) can cause
2473                                                    other window style things to appear/disappear */
2474                                                 XplatUI.SetWindowStyle(window.Handle, CreateParams);
2475                                                 XplatUI.Text(Handle, text);
2476                                         }
2477                                         OnTextChanged (EventArgs.Empty);
2478                                 }
2479                         }
2480                 }
2481
2482                 [EditorBrowsable(EditorBrowsableState.Always)]
2483                 [Browsable(false)]
2484                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2485                 public int Top {
2486                         get {
2487                                 return this.bounds.Y;
2488                         }
2489
2490                         set {
2491                                 SetBounds(bounds.X, value, bounds.Width, bounds.Height, BoundsSpecified.Y);
2492                         }
2493                 }
2494
2495                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2496                 [Browsable(false)]
2497                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2498                 public Control TopLevelControl {
2499                         get {
2500                                 Control p = this;
2501
2502                                 while (p.parent != null) {
2503                                         p = p.parent;
2504                                 }
2505
2506                                 return p is Form ? p : null;
2507                         }
2508                 }
2509
2510                 [Localizable(true)]
2511                 [MWFCategory("Behavior")]
2512                 public bool Visible {
2513                         get {
2514                                 if (!is_visible) {
2515                                         return false;
2516                                 } else if (parent != null) {
2517                                         return parent.Visible;
2518                                 }
2519
2520                                 return true;
2521                         }
2522
2523                         set {
2524                                 SetVisibleCore(value);
2525                         }
2526                 }
2527
2528                 [EditorBrowsable(EditorBrowsableState.Always)]
2529                 [Browsable(false)]
2530                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2531                 public int Width {
2532                         get {
2533                                 return this.bounds.Width;
2534                         }
2535
2536                         set {
2537                                 SetBounds(bounds.X, bounds.Y, value, bounds.Height, BoundsSpecified.Width);
2538                         }
2539                 }
2540
2541                 [EditorBrowsable(EditorBrowsableState.Never)]
2542                 [Browsable(false)]
2543                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2544                 public IWindowTarget WindowTarget {
2545                         get {
2546                                 return null;
2547                         }
2548
2549                         set {
2550                                 ;       // MS Internal
2551                         }
2552                 }
2553                 #endregion      // Public Instance Properties
2554
2555                 #region Protected Instance Properties
2556                 protected virtual CreateParams CreateParams {
2557                         get {
2558                                 CreateParams create_params = new CreateParams();
2559
2560                                 try {
2561                                         create_params.Caption = Text;
2562                                 }
2563                                 catch {
2564                                         create_params.Caption = text;
2565                                 }
2566
2567                                 try {
2568                                         create_params.X = Left;
2569                                 }
2570                                 catch {
2571                                         create_params.X = this.bounds.X;
2572                                 }
2573
2574                                 try {
2575                                         create_params.Y = Top;
2576                                 }
2577                                 catch {
2578                                         create_params.Y = this.bounds.Y;
2579                                 }
2580
2581                                 try {
2582                                         create_params.Width = Width;
2583                                 }
2584                                 catch {
2585                                         create_params.Width = this.bounds.Width;
2586                                 }
2587
2588                                 try {
2589                                         create_params.Height = Height;
2590                                 }
2591                                 catch {
2592                                         create_params.Height = this.bounds.Height;
2593                                 }
2594
2595
2596                                 create_params.ClassName = XplatUI.DefaultClassName;
2597                                 create_params.ClassStyle = 0;
2598                                 create_params.ExStyle = 0;
2599                                 create_params.Param = 0;
2600
2601                                 if (allow_drop) {
2602                                         create_params.ExStyle |= (int)WindowExStyles.WS_EX_ACCEPTFILES;
2603                                 }
2604
2605                                 if ((parent!=null) && (parent.IsHandleCreated)) {
2606                                         create_params.Parent = parent.Handle;
2607                                 }
2608
2609                                 create_params.Style = (int)WindowStyles.WS_CHILD | (int)WindowStyles.WS_CLIPCHILDREN | (int)WindowStyles.WS_CLIPSIBLINGS;
2610
2611                                 if (is_visible) {
2612                                         create_params.Style |= (int)WindowStyles.WS_VISIBLE;
2613                                 }
2614
2615                                 if (!is_enabled) {
2616                                         create_params.Style |= (int)WindowStyles.WS_DISABLED;
2617                                 }
2618
2619                                 switch (border_style) {
2620                                 case BorderStyle.FixedSingle:
2621                                         create_params.Style |= (int) WindowStyles.WS_BORDER;
2622                                         break;
2623                                 case BorderStyle.Fixed3D:
2624                                         create_params.ExStyle |= (int) WindowExStyles.WS_EX_CLIENTEDGE;
2625                                         break;
2626                                 }
2627
2628                                 return create_params;
2629                         }
2630                 }
2631
2632                 protected virtual ImeMode DefaultImeMode {
2633                         get {
2634                                 return ImeMode.Inherit;
2635                         }
2636                 }
2637
2638 #if NET_2_0
2639                 protected virtual Padding DefaultMargin {
2640                         get { return new Padding (3); }
2641                 }
2642 #endif
2643
2644                 protected virtual Size DefaultSize {
2645                         get {
2646                                 return new Size(0, 0);
2647                         }
2648                 }
2649
2650                 protected int FontHeight {
2651                         get {
2652                                 return Font.Height;
2653                         }
2654
2655                         set {
2656                                 ;; // Nothing to do
2657                         }
2658                 }
2659
2660                 protected bool RenderRightToLeft {
2661                         get {
2662                                 return (this.right_to_left == RightToLeft.Yes);
2663                         }
2664                 }
2665
2666                 protected bool ResizeRedraw {
2667                         get {
2668                                 return GetStyle(ControlStyles.ResizeRedraw);
2669                         }
2670
2671                         set {
2672                                 SetStyle(ControlStyles.ResizeRedraw, value);
2673                         }
2674                 }
2675
2676                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2677                 [Browsable(false)]
2678                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2679                 protected virtual bool ShowFocusCues {
2680                         get {
2681                                 return true;
2682                         }
2683                 }
2684
2685                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2686                 [Browsable(false)]
2687                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2688                 protected bool ShowKeyboardCues {
2689                         get {
2690                                 return true;
2691                         }
2692                 }
2693                 #endregion      // Protected Instance Properties
2694
2695                 #region Public Static Methods
2696                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2697                 public static Control FromChildHandle(IntPtr handle) {
2698                         return Control.ControlNativeWindow.ControlFromChildHandle (handle);
2699                 }
2700
2701                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2702                 public static Control FromHandle(IntPtr handle) {
2703                         return Control.ControlNativeWindow.ControlFromHandle(handle);
2704                 }
2705
2706                 public static bool IsMnemonic(char charCode, string text) {
2707                         int amp;
2708
2709                         amp = text.IndexOf('&');
2710
2711                         if (amp != -1) {
2712                                 if (amp + 1 < text.Length) {
2713                                         if (text[amp + 1] != '&') {
2714                                                 if (Char.ToUpper(charCode) == Char.ToUpper(text.ToCharArray(amp + 1, 1)[0])) {
2715                                                         return true;
2716                                                 }       
2717                                         }
2718                                 }
2719                         }
2720                         return false;
2721                 }
2722                 #endregion
2723
2724                 #region Protected Static Methods
2725                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2726                 protected static bool ReflectMessage(IntPtr hWnd, ref Message m) {
2727                         Control c;
2728
2729                         c = Control.FromHandle(hWnd);
2730
2731                         if (c != null) {
2732                                 c.WndProc(ref m);
2733                                 return true;
2734                         }
2735                         return false;
2736                 }
2737                 #endregion
2738
2739                 #region Public Instance Methods
2740                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2741                 public IAsyncResult BeginInvoke(Delegate method) {
2742                         object [] prms = null;
2743                         if (method is EventHandler)
2744                                 prms = new object [] { this, EventArgs.Empty };
2745                         return BeginInvokeInternal(method, prms, false);
2746                 }
2747
2748                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2749                 public IAsyncResult BeginInvoke (Delegate method, object[] args) {
2750                         return BeginInvokeInternal (method, args, false);
2751                 }
2752
2753                 public void BringToFront() {
2754                         if (parent != null) {
2755                                 parent.child_controls.SetChildIndex(this, 0);
2756                                 parent.Refresh();
2757                         } else {
2758                                 XplatUI.SetZOrder(Handle, IntPtr.Zero, false, false);
2759                         }
2760                 }
2761
2762                 public bool Contains(Control ctl) {
2763                         while (ctl != null) {
2764                                 ctl = ctl.parent;
2765                                 if (ctl == this) {
2766                                         return true;
2767                                 }
2768                         }
2769                         return false;
2770                 }
2771
2772                 public void CreateControl() {
2773                         if (is_disposed) {
2774                                 throw new ObjectDisposedException(GetType().FullName.ToString());
2775                         }
2776                         if (is_created) {
2777                                 return;
2778                         }
2779
2780                         if (!IsHandleCreated) {
2781                                 CreateHandle();
2782                         }
2783
2784                         if (!is_created) {
2785                                 is_created = true;
2786                         }
2787
2788                         Control [] controls = child_controls.GetAllControls ();
2789                         for (int i=0; i<controls.Length; i++) {
2790                                 controls [i].CreateControl ();
2791                         }
2792
2793                         UpdateChildrenZOrder();
2794
2795                         if (binding_context == null) {  // seem to be sent whenever it's null?
2796                                 OnBindingContextChanged(EventArgs.Empty);
2797                         }
2798
2799                         OnCreateControl();
2800                 }
2801
2802                 public Graphics CreateGraphics() {
2803                         if (!IsHandleCreated) {
2804                                 this.CreateHandle();
2805                         }
2806                         return Graphics.FromHwnd(this.window.Handle);
2807                 }
2808
2809                 public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects) {
2810                         return XplatUI.StartDrag(this.window.Handle, data, allowedEffects);
2811                 }
2812
2813                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2814                 public object EndInvoke (IAsyncResult async_result) {
2815                         AsyncMethodResult result = (AsyncMethodResult) async_result;
2816                         return result.EndInvoke ();
2817                 }
2818
2819                 public Form FindForm() {
2820                         Control c;
2821
2822                         c = this;
2823                         while (c != null) {
2824                                 if (c is Form) {
2825                                         return (Form)c;
2826                                 }
2827                                 c = c.Parent;
2828                         }
2829                         return null;
2830                 }
2831
2832                 public bool Focus() {
2833                         if (CanFocus && IsHandleCreated && !has_focus && !is_focusing) {
2834                                 is_focusing = true;
2835                                 Select(this);
2836                                 is_focusing = false;
2837                         }
2838                         return has_focus;
2839                 }
2840
2841                 public Control GetChildAtPoint(Point pt) {
2842                         // Microsoft's version of this function doesn't seem to work, so I can't check
2843                         // if we only consider children or also grandchildren, etc.
2844                         // I'm gonna say 'children only'
2845                         for (int i=0; i<child_controls.Count; i++) {
2846                                 if (child_controls[i].Bounds.Contains(pt)) {
2847                                         return child_controls[i];
2848                                 }
2849                         }
2850                         return null;
2851                 }
2852
2853                 public IContainerControl GetContainerControl() {
2854                         Control current = this;
2855
2856                         while (current!=null) {
2857                                 if ((current is IContainerControl) && ((current.control_style & ControlStyles.ContainerControl)!=0)) {
2858                                         return (IContainerControl)current;
2859                                 }
2860                                 current = current.parent;
2861                         }
2862                         return null;
2863                 }
2864
2865                 public Control GetNextControl(Control ctl, bool forward) {
2866
2867                         if (!this.Contains(ctl)) {
2868                                 ctl = this;
2869                         }
2870
2871                         if (forward) {
2872                                 ctl = FindControlForward(this, ctl);
2873                         }
2874                         else {
2875                                 ctl = FindControlBackward(this, ctl);
2876                         }
2877
2878                         if (ctl != this) {
2879                                 return ctl;
2880                         }
2881                         return null;
2882                 }
2883
2884 #if NET_2_0
2885                 public virtual Size GetPreferredSize (Size proposedSize) {
2886                         return preferred_size;
2887                 }
2888 #endif
2889
2890                 public void Hide() {
2891                         this.Visible = false;
2892                 }
2893
2894                 public void Invalidate() {
2895                         Invalidate(ClientRectangle, false);
2896                 }
2897
2898                 public void Invalidate(bool invalidateChildren) {
2899                         Invalidate(ClientRectangle, invalidateChildren);
2900                 }
2901
2902                 public void Invalidate(System.Drawing.Rectangle rc) {
2903                         Invalidate(rc, false);
2904                 }
2905
2906                 public void Invalidate(System.Drawing.Rectangle rc, bool invalidateChildren) {
2907                         if (!IsHandleCreated || !Visible || rc.Width == 0 || rc.Height == 0) {
2908                                 return;
2909                         }
2910
2911                         NotifyInvalidate(rc);
2912
2913                         XplatUI.Invalidate(Handle, rc, false);
2914
2915                         if (invalidateChildren) {
2916                                 Control [] controls = child_controls.GetAllControls ();
2917                                 for (int i=0; i<controls.Length; i++)
2918                                         controls [i].Invalidate ();
2919                         }
2920                         OnInvalidated(new InvalidateEventArgs(rc));
2921                 }
2922
2923                 public void Invalidate(System.Drawing.Region region) {
2924                         Invalidate(region, false);
2925                 }
2926
2927                 public void Invalidate(System.Drawing.Region region, bool invalidateChildren) {
2928                         RectangleF bounds = region.GetBounds (CreateGraphics ());
2929                         Invalidate (new Rectangle ((int) bounds.X, (int) bounds.Y, (int) bounds.Width, (int) bounds.Height),
2930                                         invalidateChildren);
2931                 }
2932
2933                 public object Invoke (Delegate method) {
2934                         object [] prms = null;
2935                         if (method is EventHandler)
2936                                 prms = new object [] { this, EventArgs.Empty };
2937
2938                         return Invoke(method, prms);
2939                 }
2940
2941                 public object Invoke (Delegate method, object[] args) {
2942                         if (!this.InvokeRequired) {
2943                                 return method.DynamicInvoke(args);
2944                         }
2945
2946                         IAsyncResult result = BeginInvoke (method, args);
2947                         return EndInvoke(result);
2948                 }
2949
2950                 internal object InvokeInternal (Delegate method, bool disposing) {
2951                         return InvokeInternal(method, null, disposing);
2952                 }
2953
2954                 internal object InvokeInternal (Delegate method, object[] args, bool disposing) {
2955                         if (!this.InvokeRequired) {
2956                                 return method.DynamicInvoke(args);
2957                         }
2958
2959                         IAsyncResult result = BeginInvokeInternal (method, args, disposing);
2960                         return EndInvoke(result);
2961                 }
2962
2963                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2964                 public void PerformLayout() {
2965                         PerformLayout(null, null);
2966                 }
2967
2968 #if !NET_2_0
2969                 private void SetImplicitBounds (int x, int y, int width, int height)
2970                 {
2971                         Rectangle saved_bounds = explicit_bounds;
2972                         SetBounds (x, y, width, height);
2973                         explicit_bounds = saved_bounds;
2974                 }
2975 #endif
2976
2977                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2978                 public void PerformLayout(Control affectedControl, string affectedProperty) {
2979                         LayoutEventArgs levent = new LayoutEventArgs(affectedControl, affectedProperty);
2980
2981                         if (layout_suspended > 0) {
2982                                 layout_pending = true;
2983                                 return;
2984                         }
2985
2986                         layout_pending = false;
2987
2988                         // Prevent us from getting messed up
2989                         layout_suspended++;
2990
2991                         // Perform all Dock and Anchor calculations
2992                         try {
2993
2994 #if NET_2_0
2995                         this.layout_engine.Layout(this, levent);
2996 #else           
2997                                 // This has been moved to Layout/DefaultLayout.cs for 2.0, please duplicate any changes/fixes there.
2998                                 Control         child;
2999                                 AnchorStyles    anchor;
3000                                 Rectangle       space;
3001
3002                                 space = DisplayRectangle;
3003
3004                                 // Deal with docking; go through in reverse, MS docs say that lowest Z-order is closest to edge
3005                                 Control [] controls = child_controls.GetAllControls ();
3006                                 for (int i = controls.Length - 1; i >= 0; i--) {
3007                                         child = controls [i];
3008
3009                                         if (!child.Visible) {
3010                                                 continue;
3011                                         }
3012
3013                                         switch (child.Dock) {
3014                                                 case DockStyle.None: {
3015                                                         // Do nothing
3016                                                         break;
3017                                                 }
3018
3019                                                 case DockStyle.Left: {
3020                                                         child.SetImplicitBounds(space.Left, space.Y, child.Width, space.Height);
3021                                                         space.X+=child.Width;
3022                                                         space.Width-=child.Width;
3023                                                         break;
3024                                                 }
3025
3026                                                 case DockStyle.Top: {
3027                                                         child.SetImplicitBounds(space.Left, space.Y, space.Width, child.Height);
3028                                                         space.Y+=child.Height;
3029                                                         space.Height-=child.Height;
3030                                                         break;
3031                                                 }
3032                                         
3033                                                 case DockStyle.Right: {
3034                                                         child.SetImplicitBounds(space.Right-child.Width, space.Y, child.Width, space.Height);
3035                                                         space.Width-=child.Width;
3036                                                         break;
3037                                                 }
3038
3039                                                 case DockStyle.Bottom: {
3040                                                         child.SetImplicitBounds(space.Left, space.Bottom-child.Height, space.Width, child.Height);
3041                                                         space.Height-=child.Height;
3042                                                         break;
3043                                                 }
3044                                         }
3045                                 }
3046
3047                                 for (int i = controls.Length - 1; i >= 0; i--) {
3048                                         child=controls[i];
3049
3050                                         //if (child.Visible && (child.Dock == DockStyle.Fill)) {
3051                                         if (child.Dock == DockStyle.Fill) {
3052                                                 child.SetImplicitBounds(space.Left, space.Top, space.Width, space.Height);
3053                                         }
3054                                 }
3055
3056                                 space = DisplayRectangle;
3057
3058                                 for (int i=0; i < controls.Length; i++) {
3059                                         int left;
3060                                         int top;
3061                                         int width;
3062                                         int height;
3063
3064                                         child = controls[i];
3065
3066                                         // If the control is docked we don't need to do anything
3067                                         if (child.Dock != DockStyle.None) {
3068                                                 continue;
3069                                         }
3070
3071                                         anchor = child.Anchor;
3072
3073                                         left = child.Left;
3074                                         top = child.Top;
3075                                         width = child.Width;
3076                                         height = child.Height;
3077
3078                                         if ((anchor & AnchorStyles.Left) !=0 ) {
3079                                                 if ((anchor & AnchorStyles.Right) != 0) {
3080                                                         width = space.Width - child.dist_right - left;
3081                                                 } else {
3082                                                         ; // Left anchored only, nothing to be done
3083                                                 }
3084                                         } else if ((anchor & AnchorStyles.Right) != 0) {
3085                                                 left = space.Width - child.dist_right - width;
3086                                         } else {
3087                                                 // left+=diff_width/2 will introduce rounding errors (diff_width removed from svn after r51780)
3088                                                 // This calculates from scratch every time:
3089                                                 left = child.dist_left + (space.Width - (child.dist_left + width + child.dist_right)) / 2;
3090                                         }
3091
3092                                         if ((anchor & AnchorStyles.Top) !=0 ) {
3093                                                 if ((anchor & AnchorStyles.Bottom) != 0) {
3094                                                         height = space.Height - child.dist_bottom - top;
3095                                                 } else {
3096                                                         ; // Top anchored only, nothing to be done
3097                                                 }
3098                                         } else if ((anchor & AnchorStyles.Bottom) != 0) {
3099                                                 top = space.Height - child.dist_bottom - height;
3100                                         } else {
3101                                                 // top += diff_height/2 will introduce rounding errors (diff_height removed from after r51780)
3102                                                 // This calculates from scratch every time:
3103                                                 top = child.dist_top + (space.Height - (child.dist_top + height + child.dist_bottom)) / 2;
3104                                         }
3105                                         
3106                                         // Sanity
3107                                         if (width < 0) {
3108                                                 width=0;
3109                                         }
3110
3111                                         if (height < 0) {
3112                                                 height=0;
3113                                         }
3114
3115                                         child.SetImplicitBounds(left, top, width, height);
3116                                 }
3117 #endif
3118
3119                                 // Let everyone know
3120                                 OnLayout(levent);
3121                         }
3122
3123                                 // Need to make sure we decremend layout_suspended
3124                         finally {
3125                                 layout_suspended--;
3126                         }
3127                 }
3128
3129                 public Point PointToClient (Point p) {
3130                         int x = p.X;
3131                         int y = p.Y;
3132
3133                         XplatUI.ScreenToClient (Handle, ref x, ref y);
3134
3135                         return new Point (x, y);
3136                 }
3137
3138                 public Point PointToScreen(Point p) {
3139                         int x = p.X;
3140                         int y = p.Y;
3141
3142                         XplatUI.ClientToScreen(Handle, ref x, ref y);
3143
3144                         return new Point(x, y);
3145                 }
3146
3147                 public virtual bool PreProcessMessage(ref Message msg) {
3148                         return InternalPreProcessMessage (ref msg);
3149                 }
3150
3151                 internal virtual bool InternalPreProcessMessage (ref Message msg) {
3152                         Keys key_data;
3153
3154                         if ((msg.Msg == (int)Msg.WM_KEYDOWN) || (msg.Msg == (int)Msg.WM_SYSKEYDOWN)) {
3155                                 key_data = (Keys)msg.WParam.ToInt32() | XplatUI.State.ModifierKeys;
3156
3157                                 if (!ProcessCmdKey(ref msg, key_data)) {
3158                                         if (IsInputKey(key_data)) {
3159                                                 return false;
3160                                         }
3161
3162                                         return ProcessDialogKey(key_data);
3163                                 }
3164
3165                                 return true;
3166                         } else if (msg.Msg == (int)Msg.WM_CHAR) {
3167                                 if (IsInputChar((char)msg.WParam)) {
3168                                         return false;
3169                                 }
3170                                 return ProcessDialogChar((char)msg.WParam);
3171                         } else if (msg.Msg == (int)Msg.WM_SYSCHAR) {
3172                                 return ProcessDialogChar((char)msg.WParam);
3173                         }
3174                         return false;
3175                 }
3176
3177                 public Rectangle RectangleToClient(Rectangle r) {
3178                         return new Rectangle(PointToClient(r.Location), r.Size);
3179                 }
3180
3181                 public Rectangle RectangleToScreen(Rectangle r) {
3182                         return new Rectangle(PointToScreen(r.Location), r.Size);
3183                 }
3184
3185                 public virtual void Refresh() {                 
3186                         if (IsHandleCreated == true) {
3187                                 Invalidate();
3188                                 XplatUI.UpdateWindow(window.Handle);
3189
3190                                 Control [] controls = child_controls.GetAllControls ();
3191                                 for (int i=0; i < controls.Length; i++) {
3192                                         controls[i].Refresh();
3193                                 }
3194                                 
3195                         }
3196                 }
3197
3198                 [EditorBrowsable(EditorBrowsableState.Never)]
3199                 public virtual void ResetBackColor() {
3200                         BackColor = Color.Empty;
3201                 }
3202
3203                 [EditorBrowsable(EditorBrowsableState.Never)]
3204                 public void ResetBindings() {
3205                         data_bindings.Clear();
3206                 }
3207
3208                 [EditorBrowsable(EditorBrowsableState.Never)]
3209                 public virtual void ResetCursor() {
3210                         Cursor = null;
3211                 }
3212
3213                 [EditorBrowsable(EditorBrowsableState.Never)]
3214                 public virtual void ResetFont() {
3215                         font = null;
3216                 }
3217
3218                 [EditorBrowsable(EditorBrowsableState.Never)]
3219                 public virtual void ResetForeColor() {
3220                         foreground_color = Color.Empty;
3221                 }
3222
3223                 [EditorBrowsable(EditorBrowsableState.Never)]
3224                 public void ResetImeMode() {
3225                         ime_mode = DefaultImeMode;
3226                 }
3227
3228                 [EditorBrowsable(EditorBrowsableState.Never)]
3229                 public virtual void ResetRightToLeft() {
3230                         right_to_left = RightToLeft.Inherit;
3231                 }
3232
3233                 public virtual void ResetText() {
3234                         text = String.Empty;
3235                 }
3236
3237                 public void ResumeLayout() {
3238                         ResumeLayout (true);
3239                 }
3240
3241                 public void ResumeLayout(bool performLayout) {
3242                         if (layout_suspended > 0) {
3243                                 layout_suspended--;
3244                         }
3245
3246                         if (layout_suspended == 0) {
3247                                 Control [] controls = child_controls.GetAllControls ();
3248                                 for (int i=0; i<controls.Length; i++) {
3249                                         controls [i].UpdateDistances ();
3250                                 }
3251
3252                                 if (performLayout && layout_pending) {
3253                                         PerformLayout();
3254                                 }
3255                         }
3256                 }
3257
3258                 public void Scale(float ratio) {
3259                         ScaleCore(ratio, ratio);
3260                 }
3261
3262                 public void Scale(float dx, float dy) {
3263                         ScaleCore(dx, dy);
3264                 }
3265
3266 #if NET_2_0
3267                 public void Scale(SizeF factor) {
3268                         ScaleCore(factor.Width, factor.Height);
3269                 }
3270 #endif
3271
3272                 public void Select() {
3273                         Select(false, false);
3274                 }
3275
3276 #if DebugFocus
3277                 private void printTree(Control c, string t) {
3278                         foreach(Control i in c.child_controls) {
3279                                 Console.WriteLine("{2}{0}.TabIndex={1}", i, i.tab_index, t);
3280                                 printTree(i, t+"\t");
3281                         }
3282                 }
3283 #endif
3284                 public bool SelectNextControl(Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap) {
3285                         Control c;
3286
3287 #if DebugFocus
3288                         Console.WriteLine("{0}", this.FindForm());
3289                         printTree(this, "\t");
3290 #endif
3291
3292                         if (!this.Contains(ctl) || (!nested && (ctl.parent != this))) {
3293                                 ctl = null;
3294                         }
3295                         c = ctl;
3296                         do {
3297                                 c = GetNextControl(c, forward);
3298                                 if (c == null) {
3299                                         if (wrap) {
3300                                                 wrap = false;
3301                                                 continue;
3302                                         }
3303                                         break;
3304                                 }
3305
3306                                 if (c.CanSelect && ((c.parent == this) || nested) && (c.tab_stop || !tabStopOnly)) {
3307                                         c.Select (true, true);
3308                                         return true;
3309                                 }
3310                         } while (c != ctl); // If we wrap back to ourselves we stop
3311
3312                         return false;
3313                 }
3314
3315                 public void SendToBack() {
3316                         if (parent != null) {
3317                                 parent.child_controls.SetChildIndex(this, parent.child_controls.Count);
3318                         }
3319                 }
3320
3321                 public void SetBounds(int x, int y, int width, int height) {
3322                         SetBounds(x, y, width, height, BoundsSpecified.All);
3323                 }
3324
3325                 public void SetBounds(int x, int y, int width, int height, BoundsSpecified specified) {
3326                         if ((specified & BoundsSpecified.X) != BoundsSpecified.X) {
3327                                 x = Left;
3328                         }
3329
3330                         if ((specified & BoundsSpecified.Y) != BoundsSpecified.Y) {
3331                                 y = Top;
3332                         }
3333
3334                         if ((specified & BoundsSpecified.Width) != BoundsSpecified.Width) {
3335                                 width = Width;
3336                         }
3337
3338                         if ((specified & BoundsSpecified.Height) != BoundsSpecified.Height) {
3339                                 height = Height;
3340                         }
3341
3342                         SetBoundsCore(x, y, width, height, specified);
3343                         if (parent != null) {
3344                                 parent.PerformLayout(this, "Bounds");
3345                         }
3346                 }
3347
3348                 public void Show() {
3349                         if (!is_created) {
3350                                 this.CreateControl();
3351                         }
3352
3353                         this.Visible=true;
3354                 }
3355
3356                 public void SuspendLayout() {
3357                         layout_suspended++;
3358                 }
3359
3360                 public void Update() {
3361                         if (IsHandleCreated) {
3362                                 XplatUI.UpdateWindow(window.Handle);
3363                         }
3364                 }
3365                 #endregion      // Public Instance Methods
3366
3367                 #region Protected Instance Methods
3368                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3369                 [MonoTODO("Implement this and tie it into Control.ControlAccessibleObject.NotifyClients")]
3370                 protected void AccessibilityNotifyClients(AccessibleEvents accEvent, int childID) {
3371                         throw new NotImplementedException();
3372                 }
3373
3374                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3375                 protected virtual AccessibleObject CreateAccessibilityInstance() {
3376                         return new Control.ControlAccessibleObject(this);
3377                 }
3378
3379                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3380                 protected virtual ControlCollection CreateControlsInstance() {
3381                         return new ControlCollection(this);
3382                 }
3383
3384                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3385                 protected virtual void CreateHandle() {
3386                         if (IsDisposed) {
3387                                 throw new ObjectDisposedException(GetType().FullName.ToString());
3388                         }
3389
3390                         if (IsHandleCreated && !is_recreating) {
3391                                 return;
3392                         }
3393
3394                         window.CreateHandle(CreateParams);
3395
3396                         if (window.Handle != IntPtr.Zero) {
3397                                 creator_thread = Thread.CurrentThread;
3398
3399                                 XplatUI.EnableWindow(window.Handle, is_enabled);
3400                                 XplatUI.SetVisible(window.Handle, is_visible, true);
3401
3402                                 if (clip_region != null) {
3403                                         XplatUI.SetClipRegion(Handle, clip_region);
3404                                 }
3405
3406                                 // Set our handle with our parent
3407                                 if ((parent != null) && (parent.IsHandleCreated)) {
3408                                         XplatUI.SetParent(window.Handle, parent.Handle);
3409                                 }
3410
3411                                 // Set our handle as parent for our children
3412                                 Control [] children;
3413
3414                                 children = child_controls.GetAllControls ();
3415                                 for (int i = 0; i < children.Length; i++ ) {
3416                                         if (!children[i].RecreatingHandle)
3417                                                 XplatUI.SetParent(children[i].Handle, window.Handle); 
3418                                 }
3419
3420                                 UpdateStyles();
3421                                 XplatUI.SetAllowDrop (Handle, allow_drop);
3422
3423                                 // Find out where the window manager placed us
3424                                 if ((CreateParams.Style & (int)WindowStyles.WS_CHILD) != 0) {
3425                                         XplatUI.SetBorderStyle(window.Handle, (FormBorderStyle)border_style);
3426                                 }
3427                                 UpdateBounds();
3428
3429                                 OnHandleCreated(EventArgs.Empty);
3430                         }
3431                 }
3432
3433                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3434                 protected virtual void DefWndProc(ref Message m) {
3435                         window.DefWndProc(ref m);
3436                 }
3437
3438                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3439                 protected virtual void DestroyHandle() {
3440                         if (IsHandleCreated) {
3441                                 if (window != null) {
3442                                         window.DestroyHandle();
3443                                 }
3444                         }
3445                 }
3446
3447                 protected internal bool GetStyle(ControlStyles flag) {
3448                         return (control_style & flag) != 0;
3449                 }
3450
3451                 protected bool GetTopLevel() {
3452                         return is_toplevel;
3453                 }
3454
3455                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3456                 protected virtual void InitLayout() {
3457                         UpdateDistances();
3458                 }
3459
3460                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3461                 protected void InvokeGotFocus(Control toInvoke, EventArgs e) {
3462                         toInvoke.OnGotFocus(e);
3463                 }
3464
3465                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3466                 protected void InvokeLostFocus(Control toInvoke, EventArgs e) {
3467                         toInvoke.OnLostFocus(e);
3468                 }
3469
3470                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3471                 protected void InvokeOnClick(Control toInvoke, EventArgs e) {
3472                         toInvoke.OnClick(e);
3473                 }
3474
3475                 protected void InvokePaint(Control toInvoke, PaintEventArgs e) {
3476                         toInvoke.OnPaint(e);
3477                 }
3478
3479                 protected void InvokePaintBackground(Control toInvoke, PaintEventArgs e) {
3480                         toInvoke.OnPaintBackground(e);
3481                 }
3482
3483                 protected virtual bool IsInputChar (char charCode) {
3484                         return true;
3485                 }
3486
3487                 protected virtual bool IsInputKey (Keys keyData) {
3488                         // Doc says this one calls IsInputChar; not sure what to do with that
3489                         return false;
3490                 }
3491
3492                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3493                 protected virtual void NotifyInvalidate(Rectangle invalidatedArea) {
3494                         // override me?
3495                 }
3496
3497                 protected virtual bool ProcessCmdKey(ref Message msg, Keys keyData) {
3498                         if ((context_menu != null) && context_menu.ProcessCmdKey(ref msg, keyData)) {
3499                                 return true;
3500                         }
3501
3502                         if (parent != null) {
3503                                 return parent.ProcessCmdKey(ref msg, keyData);
3504                         }
3505
3506                         return false;
3507                 }
3508
3509                 protected virtual bool ProcessDialogChar(char charCode) {
3510                         if (parent != null) {
3511                                 return parent.ProcessDialogChar (charCode);
3512                         }
3513
3514                         return false;
3515                 }
3516
3517                 protected virtual bool ProcessDialogKey (Keys keyData) {
3518                         if (parent != null) {
3519                                 return parent.ProcessDialogKey (keyData);
3520                         }
3521
3522                         return false;
3523                 }
3524
3525                 protected virtual bool ProcessKeyEventArgs (ref Message msg)
3526                 {
3527                         KeyEventArgs            key_event;
3528
3529                         switch (msg.Msg) {
3530                                 case (int)Msg.WM_SYSKEYDOWN:
3531                                 case (int)Msg.WM_KEYDOWN: {
3532                                         key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
3533                                         OnKeyDown (key_event);
3534                                         return key_event.Handled;
3535                                 }
3536
3537                                 case (int)Msg.WM_SYSKEYUP:
3538                                 case (int)Msg.WM_KEYUP: {
3539                                         key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
3540                                         OnKeyUp (key_event);
3541                                         return key_event.Handled;
3542                                 }
3543
3544                                 case (int)Msg.WM_SYSCHAR:
3545                                 case (int)Msg.WM_CHAR: {
3546                                         KeyPressEventArgs       key_press_event;
3547
3548                                         key_press_event = new KeyPressEventArgs((char)msg.WParam);
3549                                         OnKeyPress(key_press_event);
3550 #if NET_2_0
3551                                         msg.WParam = (IntPtr)key_press_event.KeyChar;
3552 #endif
3553                                         return key_press_event.Handled;
3554                                 }
3555
3556                                 default: {
3557                                         break;
3558                                 }
3559                         }
3560
3561                         return false;
3562                 }
3563
3564                 protected internal virtual bool ProcessKeyMessage(ref Message msg) {
3565                         if (parent != null) {
3566                                 if (parent.ProcessKeyPreview(ref msg)) {
3567                                         return true;
3568                                 }
3569                         }
3570
3571                         return ProcessKeyEventArgs(ref msg);
3572                 }
3573
3574                 protected virtual bool ProcessKeyPreview(ref Message msg) {
3575                         if (parent != null) {
3576                                 return parent.ProcessKeyPreview(ref msg);
3577                         }
3578
3579                         return false;
3580                 }
3581
3582                 protected virtual bool ProcessMnemonic(char charCode) {
3583                         // override me
3584                         return false;
3585                 }
3586
3587                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3588                 protected void RaiseDragEvent(object key, DragEventArgs e) {
3589                         // MS Internal
3590                 }
3591
3592                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3593                 protected void RaiseKeyEvent(object key, KeyEventArgs e) {
3594                         // MS Internal
3595                 }
3596
3597                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3598                 protected void RaiseMouseEvent(object key, MouseEventArgs e) {
3599                         // MS Internal
3600                 }
3601
3602                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3603                 protected void RaisePaintEvent(object key, PaintEventArgs e) {
3604                         // MS Internal
3605                 }
3606
3607                 private void SetIsRecreating ()
3608                 {
3609                         is_recreating=true;
3610
3611                         foreach (Control c in Controls.GetAllControls()) {
3612                                 c.SetIsRecreating ();
3613                         }
3614                 }
3615
3616                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3617                 protected void RecreateHandle() {
3618 #if DebugRecreate
3619                         Console.WriteLine("Recreating control {0}", XplatUI.Window(window.Handle));
3620 #endif
3621
3622                         SetIsRecreating ();
3623
3624                         if (IsHandleCreated) {
3625 #if DebugRecreate
3626                                 Console.WriteLine(" + handle is created, destroying it.");
3627 #endif
3628                                 DestroyHandle();
3629                                 // WM_DESTROY will CreateHandle for us
3630                         } else {
3631 #if DebugRecreate
3632                                 Console.WriteLine(" + handle is not created, creating it.");
3633 #endif
3634                                 if (!is_created) {
3635                                         CreateControl();
3636                                 } else {
3637                                         CreateHandle();
3638                                 }
3639
3640                                 is_recreating = false;
3641 #if DebugRecreate
3642                                 Console.WriteLine (" + new handle = {0:X}", Handle.ToInt32());
3643 #endif
3644                         }
3645
3646                 }
3647
3648                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3649                 protected void ResetMouseEventArgs() {
3650                         // MS Internal
3651                 }
3652
3653                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3654                 protected ContentAlignment RtlTranslateAlignment(ContentAlignment align) {
3655                         if (right_to_left == RightToLeft.No) {
3656                                 return align;
3657                         }
3658
3659                         switch (align) {
3660                                 case ContentAlignment.TopLeft: {
3661                                         return ContentAlignment.TopRight;
3662                                 }
3663
3664                                 case ContentAlignment.TopRight: {
3665                                         return ContentAlignment.TopLeft;
3666                                 }
3667
3668                                 case ContentAlignment.MiddleLeft: {
3669                                         return ContentAlignment.MiddleRight;
3670                                 }
3671
3672                                 case ContentAlignment.MiddleRight: {
3673                                         return ContentAlignment.MiddleLeft;
3674                                 }
3675
3676                                 case ContentAlignment.BottomLeft: {
3677                                         return ContentAlignment.BottomRight;
3678                                 }
3679
3680                                 case ContentAlignment.BottomRight: {
3681                                         return ContentAlignment.BottomLeft;
3682                                 }
3683
3684                                 default: {
3685                                         // if it's center it doesn't change
3686                                         return align;
3687                                 }
3688                         }
3689                 }
3690
3691                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3692                 protected HorizontalAlignment RtlTranslateAlignment(HorizontalAlignment align) {
3693                         if ((right_to_left == RightToLeft.No) || (align == HorizontalAlignment.Center)) {
3694                                 return align;
3695                         }
3696
3697                         if (align == HorizontalAlignment.Left) {
3698                                 return HorizontalAlignment.Right;
3699                         }
3700
3701                         // align must be HorizontalAlignment.Right
3702                         return HorizontalAlignment.Left;
3703                 }
3704
3705                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3706                 protected LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment align) {
3707                         if (right_to_left == RightToLeft.No) {
3708                                 return align;
3709                         }
3710
3711                         if (align == LeftRightAlignment.Left) {
3712                                 return LeftRightAlignment.Right;
3713                         }
3714
3715                         // align must be LeftRightAlignment.Right;
3716                         return LeftRightAlignment.Left;
3717                 }
3718
3719                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3720                 protected ContentAlignment RtlTranslateContent(ContentAlignment align) {
3721                         return RtlTranslateAlignment(align);
3722                 }
3723
3724                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3725                 protected HorizontalAlignment RtlTranslateHorizontal(HorizontalAlignment align) {
3726                         return RtlTranslateAlignment(align);
3727                 }
3728
3729                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3730                 protected LeftRightAlignment RtlTranslateLeftRight(LeftRightAlignment align) {
3731                         return RtlTranslateAlignment(align);
3732                 }
3733
3734                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3735                 protected virtual void ScaleCore(float dx, float dy) {
3736                         Point   location;
3737                         Size    size;
3738
3739                         SuspendLayout();
3740
3741                         location = new Point((int)(Left * dx), (int)(Top * dy));
3742                         size = this.ClientSize;
3743
3744                         if (!GetStyle(ControlStyles.FixedWidth)) {
3745                                 size.Width = (int)(size.Width * dx);
3746                         }
3747
3748                         if (!GetStyle(ControlStyles.FixedHeight)) {
3749                                 size.Height = (int)(size.Height * dy);
3750                         }
3751
3752                         SetBounds(location.X, location.Y, size.Width, size.Height, BoundsSpecified.All);
3753
3754                         /* Now scale our children */
3755                         Control [] controls = child_controls.GetAllControls ();
3756                         for (int i=0; i < controls.Length; i++) {
3757                                 controls[i].Scale(dx, dy);
3758                         }
3759
3760                         ResumeLayout();
3761                 }
3762
3763                 protected virtual void Select(bool directed, bool forward) {
3764                         IContainerControl       container;
3765                         
3766                         container = GetContainerControl();
3767                         if (container != null)
3768                                 container.ActiveControl = this;
3769                 }
3770
3771                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3772                 protected virtual void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
3773                         // SetBoundsCore updates the Win32 control itself. UpdateBounds updates the controls variables and fires events, I'm guessing - pdb
3774                         if (IsHandleCreated) {
3775                                 XplatUI.SetWindowPos(Handle, x, y, width, height);
3776
3777                                 // Win32 automatically changes negative width/height to 0.
3778                                 // The control has already been sent a WM_WINDOWPOSCHANGED message and it has the correct
3779                                 // data, but it'll be overwritten when we call UpdateBounds unless we get the updated
3780                                 // size.
3781                                 if (width < 0 || height < 0) {
3782                                         int cw, ch, ix, iy;
3783                                         XplatUI.GetWindowPos(Handle, this is Form, out ix, out iy, out width, out height, out cw, out ch);
3784                                 }
3785                         }
3786
3787                         UpdateBounds(x, y, width, height);
3788
3789                         UpdateDistances();
3790                 }
3791
3792                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3793                 protected virtual void SetClientSizeCore(int x, int y) {
3794                         // Calculate the actual window size from the client size (it usually stays the same or grows)
3795                         Rectangle       ClientRect;
3796                         Rectangle       WindowRect;
3797                         CreateParams    cp;
3798
3799                         ClientRect = new Rectangle(0, 0, x, y);
3800                         cp = this.CreateParams;
3801
3802                         if (XplatUI.CalculateWindowRect(ref ClientRect, cp.Style, cp.ExStyle, null, out WindowRect)==false) {
3803                                 return;
3804                         }
3805
3806                         SetBounds(bounds.X, bounds.Y, WindowRect.Width, WindowRect.Height, BoundsSpecified.Size);
3807                 }
3808
3809                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3810                 protected internal void SetStyle(ControlStyles flag, bool value) {
3811                         if (value) {
3812                                 control_style |= flag;
3813                         } else {
3814                                 control_style &= ~flag;
3815                         }
3816                 }
3817
3818                 protected void SetTopLevel(bool value) {
3819                         if ((GetTopLevel() != value) && (parent != null)) {
3820                                 throw new Exception();
3821                         }
3822
3823                         if (this is Form) {
3824                                 if (value == true) {
3825                                         if (!Visible) {
3826                                                 Visible = true;
3827                                         }
3828                                 } else {
3829                                         if (Visible) {
3830                                                 Visible = false;
3831                                         }
3832                                 }
3833                         }
3834                         is_toplevel = value;
3835                 }
3836
3837                 protected virtual void SetVisibleCore(bool value) {
3838                         if (value!=is_visible) {
3839                                 if (value && (window.Handle == IntPtr.Zero) || !is_created) {
3840                                         CreateControl();
3841                                 }
3842
3843                                 is_visible=value;
3844
3845                                 if (IsHandleCreated) {
3846                                         XplatUI.SetVisible(Handle, value, true);
3847                                         // Explicitly move Toplevel windows to where we want them;
3848                                         // apparently moving unmapped toplevel windows doesn't work
3849                                         if (is_visible && (this is Form)) {
3850                                                 XplatUI.SetWindowPos(window.Handle, bounds.X, bounds.Y, bounds.Width, bounds.Height);
3851                                         }
3852                                 }
3853
3854                                 OnVisibleChanged(EventArgs.Empty);
3855
3856                                 if (value == false && parent != null && Focused) {
3857                                         Control container;
3858
3859                                         // Need to start at parent, GetContainerControl might return ourselves if we're a container
3860                                         container = (Control)parent.GetContainerControl();
3861                                         if (container != null) {
3862                                                 container.SelectNextControl(this, true, true, true, true);
3863                                         }
3864                                 }
3865
3866                                 if (parent != null) {
3867                                         parent.PerformLayout(this, "visible");
3868                                 } else {
3869                                         PerformLayout(this, "visible");
3870                                 }
3871                         }
3872                 }
3873         
3874                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3875                 protected void UpdateBounds() {
3876                         int     x;
3877                         int     y;
3878                         int     width;
3879                         int     height;
3880                         int     client_width;
3881                         int     client_height;
3882
3883                         if (!IsHandleCreated) {
3884                                 CreateHandle();
3885                         }
3886
3887                         XplatUI.GetWindowPos(this.Handle, this is Form, out x, out y, out width, out height, out client_width, out client_height);
3888
3889                         UpdateBounds(x, y, width, height, client_width, client_height);
3890                 }
3891
3892                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3893                 protected void UpdateBounds(int x, int y, int width, int height) {
3894                         CreateParams    cp;
3895                         Rectangle       rect;
3896
3897                         // Calculate client rectangle
3898                         rect = new Rectangle(0, 0, 0, 0);
3899                         cp = CreateParams;
3900
3901                         XplatUI.CalculateWindowRect(ref rect, cp.Style, cp.ExStyle, cp.menu, out rect);
3902                         UpdateBounds(x, y, width, height, width - (rect.Right - rect.Left), height - (rect.Bottom - rect.Top));
3903                 }
3904
3905                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3906                 protected void UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight) {
3907                         // UpdateBounds only seems to set our sizes and fire events but not update the GUI window to match
3908                         bool    moved   = false;
3909                         bool    resized = false;
3910
3911                         // Needed to generate required notifications
3912                         if ((this.bounds.X!=x) || (this.bounds.Y!=y)) {
3913                                 moved=true;
3914                         }
3915
3916                         if ((this.Bounds.Width!=width) || (this.Bounds.Height!=height)) {
3917                                 resized=true;
3918                         }
3919
3920                         bounds.X=x;
3921                         bounds.Y=y;
3922                         bounds.Width=width;
3923                         bounds.Height=height;
3924
3925                         // Assume explicit bounds set. SetImplicitBounds will restore old bounds
3926                         explicit_bounds = bounds;
3927
3928                         client_size.Width=clientWidth;
3929                         client_size.Height=clientHeight;
3930
3931                         if (moved) {
3932                                 OnLocationChanged(EventArgs.Empty);
3933                         }
3934
3935                         if (resized) {
3936                                 OnSizeChanged(EventArgs.Empty);
3937                         }
3938                 }
3939
3940                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3941                 protected void UpdateStyles() {
3942                         if (!IsHandleCreated) {
3943                                 return;
3944                         }
3945
3946                         XplatUI.SetWindowStyle(window.Handle, CreateParams);
3947                         OnStyleChanged(EventArgs.Empty);
3948                 }
3949
3950                 private void UpdateZOrderOfChild(Control child) {
3951                         if (IsHandleCreated && child.IsHandleCreated && (child.parent == this)) {
3952                                 int     index;
3953
3954                                 index = child_controls.IndexOf(child);
3955
3956                                 if (index > 0) {
3957                                         XplatUI.SetZOrder(child.Handle, child_controls[index - 1].Handle, false, false);
3958                                 } else {
3959                                         XplatUI.SetZOrder(child.Handle, IntPtr.Zero, true, false);
3960                                 }
3961                         }
3962                 }
3963
3964                 private void UpdateChildrenZOrder() {
3965                         Control [] controls;
3966
3967                         if (!IsHandleCreated) {
3968                                 return;
3969                         }
3970
3971                         controls = child_controls.GetAllControls ();
3972                         for (int i = 1; i < controls.Length; i++ ) {
3973                                 XplatUI.SetZOrder(controls[i].Handle, controls[i-1].Handle, false, false);
3974                         }
3975                 }
3976
3977                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3978                 protected void UpdateZOrder() {
3979                         if (parent != null) {
3980                                 parent.UpdateZOrderOfChild(this);
3981                         }
3982                 }
3983
3984                 protected virtual void WndProc(ref Message m) {
3985 #if debug
3986                         Console.WriteLine("Control {0} received message {1}", window.Handle == IntPtr.Zero ? this.Text : XplatUI.Window(window.Handle), m.ToString ());
3987 #endif
3988                         if ((this.control_style & ControlStyles.EnableNotifyMessage) != 0) {
3989                                 OnNotifyMessage(m);
3990                         }
3991
3992                         switch((Msg)m.Msg) {
3993                         case Msg.WM_DESTROY: {
3994                                 OnHandleDestroyed(EventArgs.Empty);
3995 #if DebugRecreate
3996                                 IntPtr handle = window.Handle;
3997 #endif
3998                                 window.InvalidateHandle();
3999
4000                                 if (is_recreating) {
4001 #if DebugRecreate
4002                                         Console.WriteLine ("Creating handle for {0:X}", handle.ToInt32());
4003 #endif
4004                                         CreateHandle();
4005 #if DebugRecreate
4006                                         Console.WriteLine (" + new handle = {0:X}", Handle.ToInt32());
4007 #endif
4008                                         is_recreating = false;
4009                                 }
4010                                 return;
4011                         }
4012
4013                         case Msg.WM_WINDOWPOSCHANGED: {
4014                                 if (Visible) {
4015                                         Rectangle save_bounds = explicit_bounds;
4016                                         UpdateBounds();
4017                                         explicit_bounds = save_bounds;
4018                                         if (GetStyle(ControlStyles.ResizeRedraw)) {
4019                                                 Invalidate();
4020                                         }
4021                                 }
4022                                 return;
4023                         }
4024
4025                         // Nice description of what should happen when handling WM_PAINT
4026                         // can be found here: http://pluralsight.com/wiki/default.aspx/Craig/FlickerFreeControlDrawing.html
4027                         // and here http://msdn.microsoft.com/msdnmag/issues/06/03/WindowsFormsPerformance/
4028                         case Msg.WM_PAINT: {
4029                                 PaintEventArgs  paint_event;
4030
4031                                 paint_event = XplatUI.PaintEventStart(Handle, true);
4032
4033                                 if (paint_event == null) {
4034                                         return;
4035                                 }
4036
4037                                 if (invalid_region != null && !invalid_region.IsVisible (paint_event.ClipRectangle)) {
4038
4039                                         // Just blit the previous image
4040                                         XplatUI.BlitFromOffscreen (Handle, paint_event.Graphics, backbuffer, backbuffer_dc, paint_event.ClipRectangle);
4041                                         XplatUI.PaintEventEnd (Handle, true);
4042                                         return;
4043                                 }
4044
4045                                 Graphics dc = null;
4046                                 Graphics back_dc = null;
4047                                 object back = null;
4048                                 if (ThemeEngine.Current.DoubleBufferingSupported) {
4049                                         if ((control_style & ControlStyles.DoubleBuffer) != 0) {
4050                                                 CreateBackBuffer ();
4051                                                 back = backbuffer;
4052                                                 back_dc = backbuffer_dc;
4053                                                 dc = paint_event.SetGraphics (back_dc);
4054                                         }
4055                                 }
4056
4057                                 if (!GetStyle(ControlStyles.Opaque)) {
4058                                         OnPaintBackground(paint_event);
4059                                 }
4060
4061                                 // Button-derived controls choose to ignore their Opaque style, give them a chance to draw their background anyways
4062                                 OnPaintBackgroundInternal(paint_event);
4063
4064                                 OnPaintInternal(paint_event);
4065                                 if (!paint_event.Handled) {
4066                                         OnPaint(paint_event);
4067                                 }
4068
4069                                 if (ThemeEngine.Current.DoubleBufferingSupported)
4070                                         if ((control_style & ControlStyles.DoubleBuffer) != 0) {
4071                                                 XplatUI.BlitFromOffscreen (Handle, dc, back, back_dc, paint_event.ClipRectangle);
4072                                                 paint_event.SetGraphics (dc);
4073                                                 invalid_region.Exclude (paint_event.ClipRectangle);
4074
4075                                                 if (back != backbuffer)
4076                                                         XplatUI.DestroyOffscreenDrawable (back, back_dc);
4077                                         }
4078
4079                                 XplatUI.PaintEventEnd(Handle, true);
4080
4081                                 return;
4082                         }
4083                                         
4084                         case Msg.WM_ERASEBKGND: {
4085                                 // The DefWndProc will never have to handle this, we always paint the background in managed code
4086                                 // In theory this code would look at ControlStyles.AllPaintingInWmPaint and and call OnPaintBackground
4087                                 // here but it just makes things more complicated...
4088                                 m.Result = (IntPtr)1;
4089                                 return;
4090                         }
4091
4092                         case Msg.WM_LBUTTONUP: {
4093                                 MouseEventArgs me;
4094
4095                                 me = new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Left, 
4096                                                          mouse_clicks, 
4097                                                          LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4098                                                          0);
4099
4100                                 HandleClick(mouse_clicks, me);
4101                                 OnMouseUp (me);
4102
4103                                 if (InternalCapture) {
4104                                         InternalCapture = false;
4105                                 }
4106
4107                                 if (mouse_clicks > 1) {
4108                                         mouse_clicks = 1;
4109                                 }
4110                                 return;
4111                         }
4112                                         
4113                         case Msg.WM_LBUTTONDOWN: {
4114                                 if (CanSelect) {
4115                                         Select (true, true);
4116                                 }
4117                                 InternalCapture = true;
4118                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4119                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4120                                                                  0));
4121                                 
4122                                 return;
4123                         }
4124
4125                         case Msg.WM_LBUTTONDBLCLK: {
4126                                 InternalCapture = true;
4127                                 mouse_clicks++;
4128                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4129                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4130                                                                  0));
4131                                 return;
4132                         }
4133
4134                         case Msg.WM_MBUTTONUP: {
4135                                 MouseEventArgs me;
4136
4137                                 me = new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Middle, 
4138                                                          mouse_clicks, 
4139                                                          LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4140                                                          0);
4141
4142                                 HandleClick(mouse_clicks, me);
4143                                 OnMouseUp (me);
4144                                 if (InternalCapture) {
4145                                         InternalCapture = false;
4146                                 }
4147                                 if (mouse_clicks > 1) {
4148                                         mouse_clicks = 1;
4149                                 }
4150                                 return;
4151                         }
4152                                         
4153                         case Msg.WM_MBUTTONDOWN: {                                      
4154                                 InternalCapture = true;
4155                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4156                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4157                                                                  0));
4158                                 return;
4159                         }
4160
4161                         case Msg.WM_MBUTTONDBLCLK: {
4162                                 InternalCapture = true;
4163                                 mouse_clicks++;
4164                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4165                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4166                                                                  0));
4167                                 return;
4168                         }
4169
4170                         case Msg.WM_RBUTTONUP: {
4171                                 MouseEventArgs  me;
4172                                 Point           pt;
4173
4174                                 pt = new Point(LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()));
4175                                 pt = PointToScreen(pt);
4176
4177                                 XplatUI.SendMessage(m.HWnd, Msg.WM_CONTEXTMENU, m.HWnd, (IntPtr)(pt.X + (pt.Y << 16)));
4178
4179                                 me = new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Right, 
4180                                                          mouse_clicks, 
4181                                                          LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4182                                                          0);
4183
4184                                 HandleClick(mouse_clicks, me);
4185                                 OnMouseUp (me);
4186
4187                                 if (InternalCapture) {
4188                                         InternalCapture = false;
4189                                 }
4190
4191                                 if (mouse_clicks > 1) {
4192                                         mouse_clicks = 1;
4193                                 }
4194                                 return;
4195                         }
4196                                         
4197                         case Msg.WM_RBUTTONDOWN: {                                      
4198                                 InternalCapture = true;
4199                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4200                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4201                                                                  0));
4202                                 return;
4203                         }
4204
4205                         case Msg.WM_RBUTTONDBLCLK: {
4206                                 InternalCapture = true;
4207                                 mouse_clicks++;
4208                                 OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4209                                                                  mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4210                                                                  0));
4211                                 return;
4212                         }
4213
4214                         case Msg.WM_CONTEXTMENU: {
4215                                 if (context_menu != null) {
4216                                         Point   pt;
4217
4218                                         pt = new Point(LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()));
4219                                         context_menu.Show(this, PointToClient(pt));
4220                                         return;
4221                                 }
4222
4223                                 DefWndProc(ref m);
4224                                 return;
4225                         }
4226
4227                         case Msg.WM_MOUSEWHEEL: {                               
4228                                 DefWndProc(ref m);
4229                                 OnMouseWheel (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4230                                                                   mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4231                                                                   HighOrder(m.WParam.ToInt32())));
4232                                 return;
4233                         }
4234
4235
4236                         case Msg.WM_MOUSEMOVE: {                                        
4237                                 OnMouseMove  (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
4238                                                                   mouse_clicks, 
4239                                                                   LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
4240                                                                   0));
4241                                 return;
4242                         }
4243
4244                         case Msg.WM_MOUSE_ENTER: {
4245                                 if (is_entered) {
4246                                         return;
4247                                 }
4248                                 is_entered = true;
4249                                 OnMouseEnter(EventArgs.Empty);
4250                                 return;
4251                         }
4252
4253                         case Msg.WM_MOUSE_LEAVE: {
4254                                 is_entered=false;
4255                                 OnMouseLeave(EventArgs.Empty);
4256                                 return;
4257                         }
4258
4259                         case Msg.WM_MOUSEHOVER: {
4260                                 OnMouseHover(EventArgs.Empty);
4261                                 return;
4262                         }
4263
4264                         case Msg.WM_SYSKEYUP: {
4265                                 if (ProcessKeyMessage(ref m)) {
4266                                         m.Result = IntPtr.Zero;
4267                                         return;
4268                                 }
4269
4270                                 if ((m.WParam.ToInt32() & (int)Keys.KeyCode) == (int)Keys.Menu) {
4271                                         Form    form;
4272
4273                                         form = FindForm();
4274                                         if (form != null && form.ActiveMenu != null) {
4275                                                 form.ActiveMenu.ProcessCmdKey(ref m, (Keys)m.WParam.ToInt32());
4276                                         }
4277                                 }
4278
4279                                 DefWndProc (ref m);
4280                                 return;
4281                         }
4282
4283                         case Msg.WM_SYSKEYDOWN:
4284                         case Msg.WM_KEYDOWN:
4285                         case Msg.WM_KEYUP:
4286                         case Msg.WM_SYSCHAR:
4287                         case Msg.WM_CHAR: {
4288                                 if (ProcessKeyMessage(ref m)) {
4289                                         m.Result = IntPtr.Zero;
4290                                         return;
4291                                 }
4292                                 DefWndProc (ref m);
4293                                 return;
4294                         }
4295
4296                         case Msg.WM_HELP: {
4297                                 Point   mouse_pos;
4298                                 if (m.LParam != IntPtr.Zero) {
4299                                         HELPINFO        hi;
4300
4301                                         hi = new HELPINFO();
4302
4303                                         hi = (HELPINFO) Marshal.PtrToStructure (m.LParam, typeof (HELPINFO));
4304                                         mouse_pos = new Point(hi.MousePos.x, hi.MousePos.y);
4305                                 } else {
4306                                         mouse_pos = Control.MousePosition;
4307                                 }
4308                                 OnHelpRequested(new HelpEventArgs(mouse_pos));
4309                                 m.Result = (IntPtr)1;
4310                                 return;
4311                         }
4312
4313                         case Msg.WM_KILLFOCUS: {
4314                                 this.has_focus = false;
4315                                 OnLostFocusInternal (EventArgs.Empty);
4316                                 return;
4317                         }
4318
4319                         case Msg.WM_SETFOCUS: {
4320                                 if (!has_focus) {
4321                                         this.has_focus = true;
4322                                         OnGotFocusInternal (EventArgs.Empty);
4323                                 }
4324                                 return;
4325                         }
4326                                         
4327                         case Msg.WM_SYSCOLORCHANGE: {
4328                                 ThemeEngine.Current.ResetDefaults();
4329                                 OnSystemColorsChanged(EventArgs.Empty);
4330                                 return;
4331                         }
4332
4333                         case Msg.WM_SETCURSOR: {
4334                                 if ((cursor == null) || ((HitTest)(m.LParam.ToInt32() & 0xffff) != HitTest.HTCLIENT)) {
4335                                         DefWndProc(ref m);
4336                                         return;
4337                                 }
4338
4339                                 XplatUI.SetCursor(window.Handle, cursor.handle);
4340                                 m.Result = (IntPtr)1;
4341
4342                                 return;
4343                         }
4344
4345                         default:
4346                                 DefWndProc(ref m);
4347                                 return;
4348                         }
4349                 }
4350                 #endregion      // Public Instance Methods
4351
4352                 #region OnXXX methods
4353                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4354                 protected virtual void OnBackColorChanged(EventArgs e) {
4355                         EventHandler eh = (EventHandler)(Events [BackColorChangedEvent]);
4356                         if (eh != null)
4357                                 eh (this, e);
4358                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackColorChanged(e);
4359                 }
4360
4361                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4362                 protected virtual void OnBackgroundImageChanged(EventArgs e) {
4363                         EventHandler eh = (EventHandler)(Events [BackgroundImageChangedEvent]);
4364                         if (eh != null)
4365                                 eh (this, e);
4366                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackgroundImageChanged(e);
4367                 }
4368
4369                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4370                 protected virtual void OnBindingContextChanged(EventArgs e) {
4371                         CheckDataBindings ();
4372                         EventHandler eh = (EventHandler)(Events [BindingContextChangedEvent]);
4373                         if (eh != null)
4374                                 eh (this, e);
4375                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBindingContextChanged(e);
4376                 }
4377
4378                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4379                 protected virtual void OnCausesValidationChanged(EventArgs e) {
4380                         EventHandler eh = (EventHandler)(Events [CausesValidationChangedEvent]);
4381                         if (eh != null)
4382                                 eh (this, e);
4383                 }
4384
4385                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4386                 protected virtual void OnChangeUICues(UICuesEventArgs e) {
4387                         UICuesEventHandler eh = (UICuesEventHandler)(Events [ChangeUICuesEvent]);
4388                         if (eh != null)
4389                                 eh (this, e);
4390                 }
4391
4392                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4393                 protected virtual void OnClick(EventArgs e) {
4394                         EventHandler eh = (EventHandler)(Events [ClickEvent]);
4395                         if (eh != null)
4396                                 eh (this, e);
4397                 }
4398
4399                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4400                 protected virtual void OnContextMenuChanged(EventArgs e) {
4401                         EventHandler eh = (EventHandler)(Events [ContextMenuChangedEvent]);
4402                         if (eh != null)
4403                                 eh (this, e);
4404                 }
4405
4406                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4407                 protected virtual void OnControlAdded(ControlEventArgs e) {
4408                         ControlEventHandler eh = (ControlEventHandler)(Events [ControlAddedEvent]);
4409                         if (eh != null)
4410                                 eh (this, e);
4411                 }
4412
4413                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4414                 protected virtual void OnControlRemoved(ControlEventArgs e) {
4415                         ControlEventHandler eh = (ControlEventHandler)(Events [ControlRemovedEvent]);
4416                         if (eh != null)
4417                                 eh (this, e);
4418                 }
4419
4420                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4421                 protected virtual void OnCreateControl() {
4422                         // Override me!
4423                 }
4424
4425                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4426                 protected virtual void OnCursorChanged(EventArgs e) {
4427                         EventHandler eh = (EventHandler)(Events [CursorChangedEvent]);
4428                         if (eh != null)
4429                                 eh (this, e);
4430                 }
4431
4432                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4433                 protected virtual void OnDockChanged(EventArgs e) {
4434                         EventHandler eh = (EventHandler)(Events [DockChangedEvent]);
4435                         if (eh != null)
4436                                 eh (this, e);
4437                 }
4438
4439                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4440                 protected virtual void OnDoubleClick(EventArgs e) {
4441                         EventHandler eh = (EventHandler)(Events [DoubleClickEvent]);
4442                         if (eh != null)
4443                                 eh (this, e);
4444                 }
4445
4446                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4447                 protected virtual void OnDragDrop(DragEventArgs drgevent) {
4448                         DragEventHandler eh = (DragEventHandler)(Events [DragDropEvent]);
4449                         if (eh != null)
4450                                 eh (this, drgevent);
4451                 }
4452
4453                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4454                 protected virtual void OnDragEnter(DragEventArgs drgevent) {
4455                         DragEventHandler eh = (DragEventHandler)(Events [DragEnterEvent]);
4456                         if (eh != null)
4457                                 eh (this, drgevent);
4458                 }
4459
4460                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4461                 protected virtual void OnDragLeave(EventArgs e) {
4462                         EventHandler eh = (EventHandler)(Events [DragLeaveEvent]);
4463                         if (eh != null)
4464                                 eh (this, e);
4465                 }
4466
4467                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4468                 protected virtual void OnDragOver(DragEventArgs drgevent) {
4469                         DragEventHandler eh = (DragEventHandler)(Events [DragOverEvent]);
4470                         if (eh != null)
4471                                 eh (this, drgevent);
4472                 }
4473
4474                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4475                 protected virtual void OnEnabledChanged(EventArgs e) {
4476                         if (IsHandleCreated) {
4477                                 if (this is Form) {
4478                                         if (((Form)this).context == null) {
4479                                                 XplatUI.EnableWindow(window.Handle, Enabled);
4480                                         }
4481                                 } else {
4482                                         XplatUI.EnableWindow(window.Handle, Enabled);
4483                                 }
4484                                 Refresh();
4485                         }
4486
4487                         EventHandler eh = (EventHandler)(Events [EnabledChangedEvent]);
4488                         if (eh != null)
4489                                 eh (this, e);
4490
4491                         for (int i=0; i<child_controls.Count; i++) {
4492                                 child_controls[i].OnParentEnabledChanged(e);
4493                         }
4494                 }
4495
4496                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4497                 protected virtual void OnEnter(EventArgs e) {
4498                         EventHandler eh = (EventHandler)(Events [EnterEvent]);
4499                         if (eh != null)
4500                                 eh (this, e);
4501                 }
4502
4503                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4504                 protected virtual void OnFontChanged(EventArgs e) {
4505                         EventHandler eh = (EventHandler)(Events [FontChangedEvent]);
4506                         if (eh != null)
4507                                 eh (this, e);
4508                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentFontChanged(e);
4509                 }
4510
4511                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4512                 protected virtual void OnForeColorChanged(EventArgs e) {
4513                         EventHandler eh = (EventHandler)(Events [ForeColorChangedEvent]);
4514                         if (eh != null)
4515                                 eh (this, e);
4516                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentForeColorChanged(e);
4517                 }
4518
4519                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4520                 protected virtual void OnGiveFeedback(GiveFeedbackEventArgs gfbevent) {
4521                         GiveFeedbackEventHandler eh = (GiveFeedbackEventHandler)(Events [GiveFeedbackEvent]);
4522                         if (eh != null)
4523                                 eh (this, gfbevent);
4524                 }
4525                 
4526                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4527                 protected virtual void OnGotFocus(EventArgs e) {
4528                         EventHandler eh = (EventHandler)(Events [GotFocusEvent]);
4529                         if (eh != null)
4530                                 eh (this, e);
4531                 }
4532
4533                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4534                 protected virtual void OnHandleCreated(EventArgs e) {
4535                         EventHandler eh = (EventHandler)(Events [HandleCreatedEvent]);
4536                         if (eh != null)
4537                                 eh (this, e);
4538                 }
4539
4540                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4541                 protected virtual void OnHandleDestroyed(EventArgs e) {
4542                         EventHandler eh = (EventHandler)(Events [HandleDestroyedEvent]);
4543                         if (eh != null)
4544                                 eh (this, e);
4545                 }
4546
4547                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4548                 protected virtual void OnHelpRequested(HelpEventArgs hevent) {
4549                         HelpEventHandler eh = (HelpEventHandler)(Events [HelpRequestedEvent]);
4550                         if (eh != null)
4551                                 eh (this, hevent);
4552                 }
4553
4554                 protected virtual void OnImeModeChanged(EventArgs e) {
4555                         EventHandler eh = (EventHandler)(Events [ImeModeChangedEvent]);
4556                         if (eh != null)
4557                                 eh (this, e);
4558                 }
4559
4560                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4561                 protected virtual void OnInvalidated(InvalidateEventArgs e) {
4562                         if (ThemeEngine.Current.DoubleBufferingSupported)
4563                                 if ((control_style & ControlStyles.DoubleBuffer) != 0) {
4564                                         // should this block be here?  seems like it
4565                                         // would be more at home in
4566                                         // NotifyInvalidated..
4567                                         if (e.InvalidRect == ClientRectangle) {
4568                                                 InvalidateBackBuffer ();
4569                                         }
4570                                         else {
4571                                                 // we need this Inflate call here so
4572                                                 // that the border of the rectangle is
4573                                                 // considered Visible (the
4574                                                 // invalid_region.IsVisible call) in
4575                                                 // the WM_PAINT handling below.
4576                                                 Rectangle r = Rectangle.Inflate(e.InvalidRect, 1,1);
4577                                                 if (invalid_region == null)
4578                                                         invalid_region = new Region (r);
4579                                                 else
4580                                                         invalid_region.Union (r);
4581                                         }
4582                                 }
4583
4584                         InvalidateEventHandler eh = (InvalidateEventHandler)(Events [InvalidatedEvent]);
4585                         if (eh != null)
4586                                 eh (this, e);
4587                 }
4588
4589                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4590                 protected virtual void OnKeyDown(KeyEventArgs e) {
4591                         KeyEventHandler eh = (KeyEventHandler)(Events [KeyDownEvent]);
4592                         if (eh != null)
4593                                 eh (this, e);
4594                 }
4595
4596                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4597                 protected virtual void OnKeyPress(KeyPressEventArgs e) {
4598                         KeyPressEventHandler eh = (KeyPressEventHandler)(Events [KeyPressEvent]);
4599                         if (eh != null)
4600                                 eh (this, e);
4601                 }
4602
4603                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4604                 protected virtual void OnKeyUp(KeyEventArgs e) {
4605                         KeyEventHandler eh = (KeyEventHandler)(Events [KeyUpEvent]);
4606                         if (eh != null)
4607                                 eh (this, e);
4608                 }
4609
4610                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4611                 protected virtual void OnLayout(LayoutEventArgs levent) {
4612                         LayoutEventHandler eh = (LayoutEventHandler)(Events [LayoutEvent]);
4613                         if (eh != null)
4614                                 eh (this, levent);
4615                 }
4616
4617                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4618                 protected virtual void OnLeave(EventArgs e) {
4619                         EventHandler eh = (EventHandler)(Events [LeaveEvent]);
4620                         if (eh != null)
4621                                 eh (this, e);
4622                 }
4623
4624                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4625                 protected virtual void OnLocationChanged(EventArgs e) {
4626                         OnMove(e);
4627                         EventHandler eh = (EventHandler)(Events [LocationChangedEvent]);
4628                         if (eh != null)
4629                                 eh (this, e);
4630                 }
4631
4632                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4633                 protected virtual void OnLostFocus(EventArgs e) {
4634                         EventHandler eh = (EventHandler)(Events [LostFocusEvent]);
4635                         if (eh != null)
4636                                 eh (this, e);
4637                 }
4638
4639                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4640                 protected virtual void OnMouseDown(MouseEventArgs e) {
4641                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseDownEvent]);
4642                         if (eh != null)
4643                                 eh (this, e);
4644                 }
4645
4646                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4647                 protected virtual void OnMouseEnter(EventArgs e) {
4648                         EventHandler eh = (EventHandler)(Events [MouseEnterEvent]);
4649                         if (eh != null)
4650                                 eh (this, e);
4651                 }
4652
4653                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4654                 protected virtual void OnMouseHover(EventArgs e) {
4655                         EventHandler eh = (EventHandler)(Events [MouseHoverEvent]);
4656                         if (eh != null)
4657                                 eh (this, e);
4658                 }
4659
4660                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4661                 protected virtual void OnMouseLeave(EventArgs e) {
4662                         EventHandler eh = (EventHandler)(Events [MouseLeaveEvent]);
4663                         if (eh != null)
4664                                 eh (this, e);
4665                 }
4666
4667                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4668                 protected virtual void OnMouseMove(MouseEventArgs e) {
4669                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseMoveEvent]);
4670                         if (eh != null)
4671                                 eh (this, e);
4672                 }
4673
4674                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4675                 protected virtual void OnMouseUp(MouseEventArgs e) {
4676                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseUpEvent]);
4677                         if (eh != null)
4678                                 eh (this, e);
4679                 }
4680
4681                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4682                 protected virtual void OnMouseWheel(MouseEventArgs e) {
4683                         MouseEventHandler eh = (MouseEventHandler)(Events [MouseWheelEvent]);
4684                         if (eh != null)
4685                                 eh (this, e);
4686                 }
4687
4688                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4689                 protected virtual void OnMove(EventArgs e) {
4690                         EventHandler eh = (EventHandler)(Events [MoveEvent]);
4691                         if (eh != null)
4692                                 eh (this, e);
4693                 }
4694
4695                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4696                 protected virtual void OnNotifyMessage(Message m) {
4697                         // Override me!
4698                 }
4699
4700                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4701                 protected virtual void OnPaint(PaintEventArgs e) {
4702                         PaintEventHandler eh = (PaintEventHandler)(Events [PaintEvent]);
4703                         if (eh != null)
4704                                 eh (this, e);
4705                 }
4706
4707                 internal virtual void OnPaintBackgroundInternal(PaintEventArgs e) {
4708                         // Override me
4709                 }
4710
4711                 internal virtual void OnPaintInternal(PaintEventArgs e) {
4712                         // Override me
4713                 }
4714
4715                 internal virtual void OnGotFocusInternal (EventArgs e)
4716                 {
4717                         OnGotFocus (e);
4718                 }
4719
4720                 internal virtual void OnLostFocusInternal (EventArgs e)
4721                 {
4722                         OnLostFocus (e);
4723                 }
4724
4725                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4726                 protected virtual void OnPaintBackground(PaintEventArgs pevent) {
4727                         PaintControlBackground (pevent);
4728                 }
4729
4730                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4731                 protected virtual void OnParentBackColorChanged(EventArgs e) {
4732                         if (background_color.IsEmpty && background_image==null) {
4733                                 Invalidate();
4734                                 OnBackColorChanged(e);
4735                         }
4736                 }
4737
4738                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4739                 protected virtual void OnParentBackgroundImageChanged(EventArgs e) {
4740                         if (background_color.IsEmpty && background_image==null) {
4741                                 Invalidate();
4742                                 OnBackgroundImageChanged(e);
4743                         }
4744                 }
4745
4746                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4747                 protected virtual void OnParentBindingContextChanged(EventArgs e) {
4748                         if (binding_context==null) {
4749                                 binding_context=Parent.binding_context;
4750                                 OnBindingContextChanged(e);
4751                         }
4752                 }
4753
4754                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4755                 protected virtual void OnParentChanged(EventArgs e) {
4756                         EventHandler eh = (EventHandler)(Events [ParentChangedEvent]);
4757                         if (eh != null)
4758                                 eh (this, e);
4759                 }
4760
4761                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4762                 protected virtual void OnParentEnabledChanged(EventArgs e) {
4763                         if (is_enabled) {
4764                                 OnEnabledChanged(e);
4765                         }
4766                 }
4767
4768                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4769                 protected virtual void OnParentFontChanged(EventArgs e) {
4770                         if (font==null) {
4771                                 Invalidate();
4772                                 OnFontChanged(e);
4773                         }
4774                 }
4775
4776                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4777                 protected virtual void OnParentForeColorChanged(EventArgs e) {
4778                         if (foreground_color.IsEmpty) {
4779                                 Invalidate();
4780                                 OnForeColorChanged(e);
4781                         }
4782                 }
4783
4784                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4785                 protected virtual void OnParentRightToLeftChanged(EventArgs e) {
4786                         if (right_to_left==RightToLeft.Inherit) {
4787                                 Invalidate();
4788                                 OnRightToLeftChanged(e);
4789                         }
4790                 }
4791
4792                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4793                 protected virtual void OnParentVisibleChanged(EventArgs e) {
4794                         if (is_visible) {
4795                                 OnVisibleChanged(e);
4796                         }
4797                 }
4798
4799                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4800                 protected virtual void OnQueryContinueDrag(QueryContinueDragEventArgs e) {
4801                         QueryContinueDragEventHandler eh = (QueryContinueDragEventHandler)(Events [QueryContinueDragEvent]);
4802                         if (eh != null)
4803                                 eh (this, e);
4804                 }
4805
4806                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4807                 protected virtual void OnResize(EventArgs e) {
4808                         EventHandler eh = (EventHandler)(Events [ResizeEvent]);
4809                         if (eh != null)
4810                                 eh (this, e);
4811
4812                         PerformLayout(this, "bounds");
4813
4814                         if (parent != null) {
4815                                 parent.PerformLayout();
4816                         }
4817                 }
4818
4819                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4820                 protected virtual void OnRightToLeftChanged(EventArgs e) {
4821                         EventHandler eh = (EventHandler)(Events [RightToLeftChangedEvent]);
4822                         if (eh != null)
4823                                 eh (this, e);
4824                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentRightToLeftChanged(e);
4825                 }
4826
4827                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4828                 protected virtual void OnSizeChanged(EventArgs e) {
4829                         DisposeBackBuffer ();
4830                         OnResize(e);
4831                         EventHandler eh = (EventHandler)(Events [SizeChangedEvent]);
4832                         if (eh != null)
4833                                 eh (this, e);
4834                 }
4835
4836                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4837                 protected virtual void OnStyleChanged(EventArgs e) {
4838                         EventHandler eh = (EventHandler)(Events [StyleChangedEvent]);
4839                         if (eh != null)
4840                                 eh (this, e);
4841                 }
4842
4843                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4844                 protected virtual void OnSystemColorsChanged(EventArgs e) {
4845                         EventHandler eh = (EventHandler)(Events [SystemColorsChangedEvent]);
4846                         if (eh != null)
4847                                 eh (this, e);
4848                 }
4849
4850                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4851                 protected virtual void OnTabIndexChanged(EventArgs e) {
4852                         EventHandler eh = (EventHandler)(Events [TabIndexChangedEvent]);
4853                         if (eh != null)
4854                                 eh (this, e);
4855                 }
4856
4857                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4858                 protected virtual void OnTabStopChanged(EventArgs e) {
4859                         EventHandler eh = (EventHandler)(Events [TabStopChangedEvent]);
4860                         if (eh != null)
4861                                 eh (this, e);
4862                 }
4863
4864                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4865                 protected virtual void OnTextChanged(EventArgs e) {
4866                         EventHandler eh = (EventHandler)(Events [TextChangedEvent]);
4867                         if (eh != null)
4868                                 eh (this, e);
4869                 }
4870
4871                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4872                 protected virtual void OnValidated(EventArgs e) {
4873                         EventHandler eh = (EventHandler)(Events [ValidatedEvent]);
4874                         if (eh != null)
4875                                 eh (this, e);
4876                 }
4877
4878                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4879                 protected virtual void OnValidating(System.ComponentModel.CancelEventArgs e) {
4880                         CancelEventHandler eh = (CancelEventHandler)(Events [ValidatingEvent]);
4881                         if (eh != null)
4882                                 eh (this, e);
4883                 }
4884
4885                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4886                 protected virtual void OnVisibleChanged(EventArgs e) {
4887                         if ((parent != null) && !Created && Visible) {
4888                                 if (!is_disposed) {
4889                                         CreateControl();
4890                                         PerformLayout();
4891                                 }
4892                         }
4893
4894                         EventHandler eh = (EventHandler)(Events [VisibleChangedEvent]);
4895                         if (eh != null)
4896                                 eh (this, e);
4897
4898                         // We need to tell our kids
4899                         for (int i=0; i<child_controls.Count; i++) {
4900                                 if (child_controls[i].Visible) {
4901                                         child_controls[i].OnParentVisibleChanged(e);
4902                                 }
4903                         }
4904                 }
4905                 #endregion      // OnXXX methods
4906
4907                 #region Events
4908                 static object BackColorChangedEvent = new object ();
4909                 static object BackgroundImageChangedEvent = new object ();
4910                 static object BindingContextChangedEvent = new object ();
4911                 static object CausesValidationChangedEvent = new object ();
4912                 static object ChangeUICuesEvent = new object ();
4913                 static object ClickEvent = new object ();
4914                 static object ContextMenuChangedEvent = new object ();
4915                 static object ControlAddedEvent = new object ();
4916                 static object ControlRemovedEvent = new object ();
4917                 static object CursorChangedEvent = new object ();
4918                 static object DockChangedEvent = new object ();
4919                 static object DoubleClickEvent = new object ();
4920                 static object DragDropEvent = new object ();
4921                 static object DragEnterEvent = new object ();
4922                 static object DragLeaveEvent = new object ();
4923                 static object DragOverEvent = new object ();
4924                 static object EnabledChangedEvent = new object ();
4925                 static object EnterEvent = new object ();
4926                 static object FontChangedEvent = new object ();
4927                 static object ForeColorChangedEvent = new object ();
4928                 static object GiveFeedbackEvent = new object ();
4929                 static object GotFocusEvent = new object ();
4930                 static object HandleCreatedEvent = new object ();
4931                 static object HandleDestroyedEvent = new object ();
4932                 static object HelpRequestedEvent = new object ();
4933                 static object ImeModeChangedEvent = new object ();
4934                 static object InvalidatedEvent = new object ();
4935                 static object KeyDownEvent = new object ();
4936                 static object KeyPressEvent = new object ();
4937                 static object KeyUpEvent = new object ();
4938                 static object LayoutEvent = new object ();
4939                 static object LeaveEvent = new object ();
4940                 static object LocationChangedEvent = new object ();
4941                 static object LostFocusEvent = new object ();
4942                 static object MouseDownEvent = new object ();
4943                 static object MouseEnterEvent = new object ();
4944                 static object MouseHoverEvent = new object ();
4945                 static object MouseLeaveEvent = new object ();
4946                 static object MouseMoveEvent = new object ();
4947                 static object MouseUpEvent = new object ();
4948                 static object MouseWheelEvent = new object ();
4949                 static object MoveEvent = new object ();
4950                 static object PaintEvent = new object ();
4951                 static object ParentChangedEvent = new object ();
4952                 static object QueryAccessibilityHelpEvent = new object ();
4953                 static object QueryContinueDragEvent = new object ();
4954                 static object ResizeEvent = new object ();
4955                 static object RightToLeftChangedEvent = new object ();
4956                 static object SizeChangedEvent = new object ();
4957                 static object StyleChangedEvent = new object ();
4958                 static object SystemColorsChangedEvent = new object ();
4959                 static object TabIndexChangedEvent = new object ();
4960                 static object TabStopChangedEvent = new object ();
4961                 static object TextChangedEvent = new object ();
4962                 static object ValidatedEvent = new object ();
4963                 static object ValidatingEvent = new object ();
4964                 static object VisibleChangedEvent = new object ();
4965
4966                 public event EventHandler BackColorChanged {
4967                         add { Events.AddHandler (BackColorChangedEvent, value); }
4968                         remove { Events.RemoveHandler (BackColorChangedEvent, value); }
4969                 }
4970
4971                 public event EventHandler BackgroundImageChanged {
4972                         add { Events.AddHandler (BackgroundImageChangedEvent, value); }
4973                         remove { Events.RemoveHandler (BackgroundImageChangedEvent, value); }
4974                 }
4975
4976                 public event EventHandler BindingContextChanged {
4977                         add { Events.AddHandler (BindingContextChangedEvent, value); }
4978                         remove { Events.RemoveHandler (BindingContextChangedEvent, value); }
4979                 }
4980
4981                 public event EventHandler CausesValidationChanged {
4982                         add { Events.AddHandler (CausesValidationChangedEvent, value); }
4983                         remove { Events.RemoveHandler (CausesValidationChangedEvent, value); }
4984                 }
4985
4986                 public event UICuesEventHandler ChangeUICues {
4987                         add { Events.AddHandler (ChangeUICuesEvent, value); }
4988                         remove { Events.RemoveHandler (ChangeUICuesEvent, value); }
4989                 }
4990
4991                 public event EventHandler Click {
4992                         add { Events.AddHandler (ClickEvent, value); }
4993                         remove { Events.RemoveHandler (ClickEvent, value); }
4994                 }
4995
4996                 public event EventHandler ContextMenuChanged {
4997                         add { Events.AddHandler (ContextMenuChangedEvent, value); }
4998                         remove { Events.RemoveHandler (ContextMenuChangedEvent, value); }
4999                 }
5000
5001                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5002                 [Browsable(false)]
5003                 public event ControlEventHandler ControlAdded {
5004                         add { Events.AddHandler (ControlAddedEvent, value); }
5005                         remove { Events.RemoveHandler (ControlAddedEvent, value); }
5006                 }
5007
5008                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5009                 [Browsable(false)]
5010                 public event ControlEventHandler ControlRemoved {
5011                         add { Events.AddHandler (ControlRemovedEvent, value); }
5012                         remove { Events.RemoveHandler (ControlRemovedEvent, value); }
5013                 }
5014
5015                 [MWFDescription("Fired when the cursor for the control has been changed"), MWFCategory("PropertyChanged")]
5016                 public event EventHandler CursorChanged {
5017                         add { Events.AddHandler (CursorChangedEvent, value); }
5018                         remove { Events.RemoveHandler (CursorChangedEvent, value); }
5019                 }
5020                 public event EventHandler DockChanged {
5021                         add { Events.AddHandler (DockChangedEvent, value); }
5022                         remove { Events.RemoveHandler (DockChangedEvent, value); }
5023                 }
5024
5025                 public event EventHandler DoubleClick {
5026                         add { Events.AddHandler (DoubleClickEvent, value); }
5027                         remove { Events.RemoveHandler (DoubleClickEvent, value); }
5028                 }
5029
5030                 public event DragEventHandler DragDrop {
5031                         add { Events.AddHandler (DragDropEvent, value); }
5032                         remove { Events.RemoveHandler (DragDropEvent, value); }
5033                 }
5034
5035                 public event DragEventHandler DragEnter {
5036                         add { Events.AddHandler (DragEnterEvent, value); }
5037                         remove { Events.RemoveHandler (DragEnterEvent, value); }
5038                 }
5039
5040                 public event EventHandler DragLeave {
5041                         add { Events.AddHandler (DragLeaveEvent, value); }
5042                         remove { Events.RemoveHandler (DragLeaveEvent, value); }
5043                 }
5044
5045                 public event DragEventHandler DragOver {
5046                         add { Events.AddHandler (DragOverEvent, value); }
5047                         remove { Events.RemoveHandler (DragOverEvent, value); }
5048                 }
5049
5050                 public event EventHandler EnabledChanged {
5051                         add { Events.AddHandler (EnabledChangedEvent, value); }
5052                         remove { Events.RemoveHandler (EnabledChangedEvent, value); }
5053                 }
5054
5055                 public event EventHandler Enter {
5056                         add { Events.AddHandler (EnterEvent, value); }
5057                         remove { Events.RemoveHandler (EnterEvent, value); }
5058                 }
5059
5060                 public event EventHandler FontChanged {
5061                         add { Events.AddHandler (FontChangedEvent, value); }
5062                         remove { Events.RemoveHandler (FontChangedEvent, value); }
5063                 }
5064
5065                 public event EventHandler ForeColorChanged {
5066                         add { Events.AddHandler (ForeColorChangedEvent, value); }
5067                         remove { Events.RemoveHandler (ForeColorChangedEvent, value); }
5068                 }
5069
5070                 public event GiveFeedbackEventHandler GiveFeedback {
5071                         add { Events.AddHandler (GiveFeedbackEvent, value); }
5072                         remove { Events.RemoveHandler (GiveFeedbackEvent, value); }
5073                 }
5074
5075                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5076                 [Browsable(false)]
5077                 public event EventHandler GotFocus {
5078                         add { Events.AddHandler (GotFocusEvent, value); }
5079                         remove { Events.RemoveHandler (GotFocusEvent, value); }
5080                 }
5081
5082
5083                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5084                 [Browsable(false)]
5085                 public event EventHandler HandleCreated {
5086                         add { Events.AddHandler (HandleCreatedEvent, value); }
5087                         remove { Events.RemoveHandler (HandleCreatedEvent, value); }
5088                 }
5089
5090                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5091                 [Browsable(false)]
5092                 public event EventHandler HandleDestroyed {
5093                         add { Events.AddHandler (HandleDestroyedEvent, value); }
5094                         remove { Events.RemoveHandler (HandleDestroyedEvent, value); }
5095                 }
5096
5097                 public event HelpEventHandler HelpRequested {
5098                         add { Events.AddHandler (HelpRequestedEvent, value); }
5099                         remove { Events.RemoveHandler (HelpRequestedEvent, value); }
5100                 }
5101
5102                 public event EventHandler ImeModeChanged {
5103                         add { Events.AddHandler (ImeModeChangedEvent, value); }
5104                         remove { Events.RemoveHandler (ImeModeChangedEvent, value); }
5105                 }
5106
5107                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5108                 [Browsable(false)]
5109                 public event InvalidateEventHandler Invalidated {
5110                         add { Events.AddHandler (InvalidatedEvent, value); }
5111                         remove { Events.RemoveHandler (InvalidatedEvent, value); }
5112                 }
5113
5114                 public event KeyEventHandler KeyDown {
5115                         add { Events.AddHandler (KeyDownEvent, value); }
5116                         remove { Events.RemoveHandler (KeyDownEvent, value); }
5117                 }
5118
5119                 public event KeyPressEventHandler KeyPress {
5120                         add { Events.AddHandler (KeyPressEvent, value); }
5121                         remove { Events.RemoveHandler (KeyPressEvent, value); }
5122                 }
5123
5124                 public event KeyEventHandler KeyUp {
5125                         add { Events.AddHandler (KeyUpEvent, value); }
5126                         remove { Events.RemoveHandler (KeyUpEvent, value); }
5127                 }
5128
5129                 public event LayoutEventHandler Layout {
5130                         add { Events.AddHandler (LayoutEvent, value); }
5131                         remove { Events.RemoveHandler (LayoutEvent, value); }
5132                 }
5133
5134                 public event EventHandler Leave {
5135                         add { Events.AddHandler (LeaveEvent, value); }
5136                         remove { Events.RemoveHandler (LeaveEvent, value); }
5137                 }
5138
5139                 public event EventHandler LocationChanged {
5140                         add { Events.AddHandler (LocationChangedEvent, value); }
5141                         remove { Events.RemoveHandler (LocationChangedEvent, value); }
5142                 }
5143
5144                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5145                 [Browsable(false)]
5146                 public event EventHandler LostFocus {
5147                         add { Events.AddHandler (LostFocusEvent, value); }
5148                         remove { Events.RemoveHandler (LostFocusEvent, value); }
5149                 }
5150
5151                 public event MouseEventHandler MouseDown {
5152                         add { Events.AddHandler (MouseDownEvent, value); }
5153                         remove { Events.RemoveHandler (MouseDownEvent, value); }
5154                 }
5155
5156                 public event EventHandler MouseEnter {
5157                         add { Events.AddHandler (MouseEnterEvent, value); }
5158                         remove { Events.RemoveHandler (MouseEnterEvent, value); }
5159                 }
5160
5161                 public event EventHandler MouseHover {
5162                         add { Events.AddHandler (MouseHoverEvent, value); }
5163                         remove { Events.RemoveHandler (MouseHoverEvent, value); }
5164                 }
5165
5166                 public event EventHandler MouseLeave {
5167                         add { Events.AddHandler (MouseLeaveEvent, value); }
5168                         remove { Events.RemoveHandler (MouseLeaveEvent, value); }
5169                 }
5170
5171                 public event MouseEventHandler MouseMove {
5172                         add { Events.AddHandler (MouseMoveEvent, value); }
5173                         remove { Events.RemoveHandler (MouseMoveEvent, value); }
5174                 }
5175
5176                 public event MouseEventHandler MouseUp {
5177                         add { Events.AddHandler (MouseUpEvent, value); }
5178                         remove { Events.RemoveHandler (MouseUpEvent, value); }
5179                 }
5180
5181                 [EditorBrowsable(EditorBrowsableState.Advanced)]
5182                 [Browsable(false)]
5183                 public event MouseEventHandler MouseWheel {
5184                         add { Events.AddHandler (MouseWheelEvent, value); }
5185                         remove { Events.RemoveHandler (MouseWheelEvent, value); }
5186                 }
5187
5188                 public event EventHandler Move {
5189                         add { Events.AddHandler (MoveEvent, value); }
5190                         remove { Events.RemoveHandler (MoveEvent, value); }
5191                 }
5192
5193                 public event PaintEventHandler Paint {
5194                         add { Events.AddHandler (PaintEvent, value); }
5195                         remove { Events.RemoveHandler (PaintEvent, value); }
5196                 }
5197
5198                 public event EventHandler ParentChanged {
5199                         add { Events.AddHandler (ParentChangedEvent, value); }
5200                         remove { Events.RemoveHandler (ParentChangedEvent, value); }
5201                 }
5202
5203                 public event QueryAccessibilityHelpEventHandler QueryAccessibilityHelp {
5204                         add { Events.AddHandler (QueryAccessibilityHelpEvent, value); }
5205                         remove { Events.RemoveHandler (QueryAccessibilityHelpEvent, value); }
5206                 }
5207
5208                 public event QueryContinueDragEventHandler QueryContinueDrag {
5209                         add { Events.AddHandler (QueryContinueDragEvent, value); }
5210                         remove { Events.RemoveHandler (QueryContinueDragEvent, value); }
5211                 }
5212
5213                 public event EventHandler Resize {
5214                         add { Events.AddHandler (ResizeEvent, value); }
5215                         remove { Events.RemoveHandler (ResizeEvent, value); }
5216                 }
5217
5218                 public event EventHandler RightToLeftChanged {
5219                         add { Events.AddHandler (RightToLeftChangedEvent, value); }
5220                         remove { Events.RemoveHandler (RightToLeftChangedEvent, value); }
5221                 }
5222
5223                 public event EventHandler SizeChanged {
5224                         add { Events.AddHandler (SizeChangedEvent, value); }
5225                         remove { Events.RemoveHandler (SizeChangedEvent, value); }
5226                 }
5227
5228                 public event EventHandler StyleChanged {
5229                         add { Events.AddHandler (StyleChangedEvent, value); }
5230                         remove { Events.RemoveHandler (StyleChangedEvent, value); }
5231                 }
5232
5233                 public event EventHandler SystemColorsChanged {
5234                         add { Events.AddHandler (SystemColorsChangedEvent, value); }
5235                         remove { Events.RemoveHandler (SystemColorsChangedEvent, value); }
5236                 }
5237
5238                 public event EventHandler TabIndexChanged {
5239                         add { Events.AddHandler (TabIndexChangedEvent, value); }
5240                         remove { Events.RemoveHandler (TabIndexChangedEvent, value); }
5241                 }
5242
5243                 public event EventHandler TabStopChanged {
5244                         add { Events.AddHandler (TabStopChangedEvent, value); }
5245                         remove { Events.RemoveHandler (TabStopChangedEvent, value); }
5246                 }
5247
5248                 public event EventHandler TextChanged {
5249                         add { Events.AddHandler (TextChangedEvent, value); }
5250                         remove { Events.RemoveHandler (TextChangedEvent, value); }
5251                 }
5252
5253                 public event EventHandler Validated {
5254                         add { Events.AddHandler (ValidatedEvent, value); }
5255                         remove { Events.RemoveHandler (ValidatedEvent, value); }
5256                 }
5257
5258                 public event CancelEventHandler Validating {
5259                         add { Events.AddHandler (ValidatingEvent, value); }
5260                         remove { Events.RemoveHandler (ValidatingEvent, value); }
5261                 }
5262
5263                 public event EventHandler VisibleChanged {
5264                         add { Events.AddHandler (VisibleChangedEvent, value); }
5265                         remove { Events.RemoveHandler (VisibleChangedEvent, value); }
5266                 }
5267
5268                 #endregion      // Events
5269         }
5270 }