2005-12-07 Peter Dennis Bartok <pbartok@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-2005 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 using System;
36 using System.ComponentModel;
37 using System.ComponentModel.Design;
38 using System.ComponentModel.Design.Serialization;
39 using System.Collections;
40 using System.Diagnostics;
41 using System.Drawing;
42 using System.Reflection;
43 using System.Runtime.InteropServices;
44 using System.Security;
45 using System.Threading;
46
47
48 namespace System.Windows.Forms
49 {
50         [Designer("System.Windows.Forms.Design.ControlDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
51         [DefaultProperty("Text")]
52         [DefaultEvent("Click")]
53         [DesignerSerializer("System.Windows.Forms.Design.ControlCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
54         [ToolboxItemFilter("System.Windows.Forms")]
55         public class Control : Component, ISynchronizeInvoke, IWin32Window
56         {
57                 #region Local Variables
58
59                 // Basic
60                 internal Rectangle              bounds;                 // bounding rectangle for control (client area + decorations)
61                 internal object                 creator_thread;         // thread that created the control
62                 internal ControlNativeWindow    window;                 // object for native window handle
63                 internal string                 name;                   // for object naming
64
65                 // State
66                 private bool                    create_handled;         // true if OnCreateControl has been sent
67                 internal bool                   has_focus;              // true if control has focus
68                 internal bool                   is_visible;             // true if control is visible
69                 internal bool                   is_entered;             // is the mouse inside the control?
70                 internal bool                   is_enabled;             // true if control is enabled (usable/not grayed out)
71                 internal bool                   is_selected;            // true if control is selected
72                 internal bool                   is_accessible;          // true if the control is visible to accessibility applications
73                 internal bool                   is_captured;            // tracks if the control has captured the mouse
74                 internal bool                   is_toplevel;            // tracks if the control is a toplevel window
75                 internal bool                   is_recreating;          // tracks if the handle for the control is being recreated
76                 internal bool                   causes_validation;      // tracks if validation is executed on changes
77                 internal int                    tab_index;              // position in tab order of siblings
78                 internal bool                   tab_stop = true;        // is the control a tab stop?
79                 internal bool                   is_disposed;            // has the window already been disposed?
80                 internal Size                   client_size;            // size of the client area (window excluding decorations)
81                 internal Rectangle              client_rect;            // rectangle with the client area (window excluding decorations)
82                 internal ControlStyles          control_style;          // rather win32-specific, style bits for control
83                 internal ImeMode                ime_mode = ImeMode.Inherit;
84                 internal bool                   layout_pending;         // true if our parent needs to re-layout us
85                 internal object                 control_tag;            // object that contains data about our control
86                 internal int                    mouse_clicks;           // Counter for mouse clicks
87                 internal Cursor                 cursor;                 // Cursor for the window
88                 internal bool                   allow_drop;             // true if the control accepts droping objects on it   
89
90                 // Visuals
91                 internal Color                  foreground_color;       // foreground color for control
92                 internal Color                  background_color;       // background color for control
93                 internal Image                  background_image;       // background image for control
94                 internal Font                   font;                   // font for control
95                 internal string                 text;                   // window/title text for control
96                 internal BorderStyle            border_style;           // Border style of control
97
98                 // Layout
99                 internal AnchorStyles           anchor_style;           // anchoring requirements for our control
100                 internal DockStyle              dock_style;             // docking requirements for our control (supercedes anchoring)
101                 internal int                    dist_left;              // distance to the left border of the parent
102                 internal int                    dist_top;               // distance to the top border of the parent
103                 internal int                    dist_right;             // distance to the right border of the parent
104                 internal int                    dist_bottom;            // distance to the bottom border of the parent
105
106                 // to be categorized...
107                 static internal ArrayList       controls = new ArrayList();             // All of the application's controls, in a flat list
108                 internal ControlCollection      child_controls;         // our children
109                 internal Control                parent;                 // our parent control
110                 internal AccessibleObject       accessibility_object;   // object that contains accessibility information about our control
111                 internal BindingContext         binding_context;        // TODO
112                 internal RightToLeft            right_to_left;          // drawing direction for control
113                 internal int                    layout_suspended;
114                 internal ContextMenu            context_menu;           // Context menu associated with the control
115
116                 private Graphics                dc_mem;                 // Graphics context for double buffering
117                 private Bitmap                  bmp_mem;                // Bitmap for double buffering control
118                 private bool                    needs_redraw = true;
119
120                 private ControlBindingsCollection data_bindings;
121
122                 #endregion      // Local Variables
123
124                 #region Private Classes
125                 // This helper class allows us to dispatch messages to Control.WndProc
126                 internal class ControlNativeWindow : NativeWindow {
127                         private Control owner;
128
129                         public ControlNativeWindow(Control control) : base() {
130                                 this.owner=control;
131                         }
132
133
134                         public Control Owner {
135                                 get {
136                                         return owner;
137                                 }
138                         }
139
140                         static internal Control ControlFromHandle(IntPtr hWnd) {
141                                 ControlNativeWindow     window;
142
143                                 window = (ControlNativeWindow)window_collection[hWnd];
144
145                                 return window.owner;
146                         }
147
148                         protected override void WndProc(ref Message m) {
149                                 owner.WndProc(ref m);
150                         }
151                 }
152                 #endregion
153                 
154                 #region Public Classes
155                 [ComVisible(true)]
156                 public class ControlAccessibleObject : AccessibleObject {                       
157                         #region ControlAccessibleObject Local Variables
158                         private Control owner;
159                         #endregion      // ControlAccessibleObject Local Variables
160
161                         #region ControlAccessibleObject Constructors
162                         public ControlAccessibleObject(Control ownerControl) {
163                                 this.owner = ownerControl;
164                         }
165                         #endregion      // ControlAccessibleObject Constructors
166
167                         #region ControlAccessibleObject Public Instance Properties
168                         public override string DefaultAction {
169                                 get {
170                                         return base.DefaultAction;
171                                 }
172                         }
173
174                         public override string Description {
175                                 get {
176                                         return base.Description;
177                                 }
178                         }
179
180                         public IntPtr Handle {
181                                 get {
182                                         return owner.Handle;
183                                 }
184
185                                 set {
186                                         // We don't want to let them set it
187                                 }
188                         }
189
190                         public override string Help {
191                                 get {
192                                         return base.Help;
193                                 }
194                         }
195
196                         public override string KeyboardShortcut {
197                                 get {
198                                         return base.KeyboardShortcut;
199                                 }
200                         }
201
202                         public override string Name {
203                                 get {
204                                         return base.Name;
205                                 }
206
207                                 set {
208                                         base.Name = value;
209                                 }
210                         }
211
212                         public Control Owner {
213                                 get {
214                                         return owner;
215                                 }
216                         }
217
218                         public override AccessibleObject Parent {
219                                 get {
220                                         return base.Parent;
221                                 }
222                         }
223
224
225                         public override AccessibleRole Role {
226                                 get {
227                                         return base.Role;
228                                 }
229                         }
230                         #endregion      // ControlAccessibleObject Public Instance Properties
231
232                         #region ControlAccessibleObject Public Instance Methods
233                         public override int GetHelpTopic(out string FileName) {
234                                 return base.GetHelpTopic (out FileName);
235                         }
236
237                         [MonoTODO("Implement this and tie it into Control.AccessibilityNotifyClients")]
238                         public void NotifyClients(AccessibleEvents accEvent) {
239                                 throw new NotImplementedException();
240                         }
241
242                         [MonoTODO("Implement this and tie it into Control.AccessibilityNotifyClients")]
243                         public void NotifyClients(AccessibleEvents accEvent, int childID) {
244                                 throw new NotImplementedException();
245                         }
246
247                         public override string ToString() {
248                                 return "ControlAccessibleObject: Owner = " + owner.ToString() + ", Text: " + owner.text;
249                         }
250
251                         #endregion      // ControlAccessibleObject Public Instance Methods
252                 }
253
254                 [DesignerSerializer("System.Windows.Forms.Design.ControlCollectionCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
255                 [ListBindable(false)]
256                 public class ControlCollection : IList, ICollection, ICloneable, IEnumerable {
257                         #region ControlCollection Local Variables
258                         private ArrayList       list;
259                         private ArrayList       impl_list;
260                         private Control []      all_controls;
261                         internal Control        owner;
262                         #endregion      // ControlCollection Local Variables
263
264                         #region ControlCollection Public Constructor
265                         public ControlCollection(Control owner) {
266                                 this.owner=owner;
267                                 this.list=new ArrayList();
268                         }
269                         #endregion
270
271                         #region ControlCollection Public Instance Properties
272                         public int Count {
273                                 get {
274                                         return list.Count;
275                                 }
276                         }
277
278                         public virtual bool IsReadOnly {
279                                 get {
280                                         return list.IsReadOnly;
281                                 }
282                         }
283
284                         public virtual Control this[int index] {
285                                 get {
286                                         if (index < 0 || index >= list.Count) {
287                                                 throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
288                                         }
289                                         return (Control)list[index];
290                                 }
291                         }
292                         #endregion // ControlCollection Public Instance Properties
293                         
294                         #region ControlCollection Private Instance Methods
295                         public virtual void Add (Control value)
296                         {
297                                 if (value == null)
298                                         return;
299                                 
300                                 if (Contains (value))
301                                         return;
302
303                                 if (value.tab_index == -1) {
304                                         int     end;
305                                         int     index;
306                                         int     use;
307
308                                         use = 0;
309                                         end = owner.child_controls.Count;
310                                         for (int i = 0; i < end; i++) {
311                                                 index = owner.child_controls[i].tab_index;
312                                                 if (index >= use) {
313                                                         use = index + 1;
314                                                 }
315                                         }
316                                         value.tab_index = use;
317                                 }
318
319                                 all_controls = null;
320                                 list.Add (value);
321                                 value.Parent = owner;
322                                 owner.UpdateZOrder();
323                                 owner.OnControlAdded(new ControlEventArgs(value));
324                         }
325                         
326                         internal void AddToList (Control c)
327                         {
328                                 all_controls = null;
329                                 list.Add (c);
330                         }
331
332                         internal virtual void AddImplicit (Control control)
333                         {
334                                 if (impl_list == null)
335                                         impl_list = new ArrayList ();
336                                 all_controls = null;
337                                 impl_list.Add (control);
338                                 control.Parent = owner;
339                                 owner.UpdateZOrder ();
340                         }
341
342                         public virtual void AddRange (Control[] controls)
343                         {
344                                 if (controls == null)
345                                         throw new ArgumentNullException ("controls");
346
347                                 owner.SuspendLayout ();
348
349                                 try {
350                                         for (int i = 0; i < controls.Length; i++) 
351                                                 Add (controls[i]);
352                                 } finally {
353                                         owner.ResumeLayout ();
354                                 }
355                         }
356
357                         internal virtual void AddRangeImplicit (Control [] controls)
358                         {
359                                 if (controls == null)
360                                         throw new ArgumentNullException ("controls");
361
362                                 owner.SuspendLayout ();
363
364                                 try {
365                                         for (int i = 0; i < controls.Length; i++)
366                                                 AddImplicit (controls [i]);
367                                 } finally {
368                                         owner.ResumeLayout ();
369                                 }
370                         }
371
372                         public virtual void Clear ()
373                         {
374                                 owner.SuspendLayout();
375                                 all_controls = null;
376                                 for (int i = 0; i < list.Count; i++) {
377                                         owner.OnControlRemoved(new ControlEventArgs((Control)list[i]));
378                                 }
379                                 list.Clear();
380                                 owner.ResumeLayout();
381                         }
382
383                         internal virtual void ClearImplicit ()
384                         {
385                                 if (impl_list == null)
386                                         return;
387                                 all_controls = null;
388                                 impl_list.Clear ();
389                         }
390
391                         public bool Contains (Control value)
392                         {
393                                 for (int i = list.Count; i > 0; ) {
394                                         i--;
395                                         
396                                         if (list [i] == value) {
397                                                 // Do we need to do anything here?
398                                                 return true;
399                                         }
400                                 }
401                                 return false;
402                         }
403
404                         internal bool ImplicitContains (Control value)
405                         {
406                                 if (impl_list == null)
407                                         return false;
408
409                                 for (int i = impl_list.Count; i > 0; ) {
410                                         i--;
411                                         
412                                         if (impl_list [i] == value) {
413                                                 // Do we need to do anything here?
414                                                 return true;
415                                         }
416                                 }
417                                 return false;
418                         }
419
420                         internal bool AllContains (Control value)
421                         {
422                                 return Contains (value) || ImplicitContains (value);
423                         }
424
425                         public virtual void CopyTo (Array array, int index)
426                         {
427                                 list.CopyTo(array, index);
428                         }
429
430                         public override bool Equals(object other) {
431                                 if (other is ControlCollection && (((ControlCollection)other).owner==this.owner)) {
432                                         return(true);
433                                 } else {
434                                         return(false);
435                                 }
436                         }
437
438                         public int GetChildIndex(Control child) {
439                                 return GetChildIndex(child, false);
440                         }
441
442                         public int GetChildIndex(Control child, bool throwException) {
443                                 int index;
444
445                                 index=list.IndexOf(child);
446
447                                 if (index==-1 && throwException) {
448                                         throw new ArgumentException("Not a child control", "child");
449                                 }
450                                 return index;
451                         }
452
453                         public IEnumerator GetEnumerator() {
454                                 return list.GetEnumerator();
455                         }
456
457                         internal IEnumerator GetAllEnumerator ()
458                         {
459                                 Control [] res = GetAllControls ();
460                                 return res.GetEnumerator ();
461                         }
462
463                         internal Control [] GetAllControls ()
464                         {
465                                 if (all_controls != null)
466                                         return all_controls;
467
468                                 if (impl_list == null)
469                                         return (Control []) list.ToArray (typeof (Control));
470                                 Control [] res = new Control [list.Count + impl_list.Count];
471                                 list.CopyTo (res);
472                                 impl_list.CopyTo (res, list.Count);
473                                 return res;
474                         }
475
476                         public override int GetHashCode() {
477                                 return base.GetHashCode();
478                         }
479
480                         public int IndexOf(Control control) {
481                                 return list.IndexOf(control);
482                         }
483
484                         public virtual void Remove(Control value) {
485                                 all_controls = null;
486
487                                 owner.OnControlRemoved(new ControlEventArgs(value));
488                                 list.Remove(value);
489                                 value.parent = null;
490                                 owner.UpdateZOrder();
491                         }
492
493                         internal virtual void RemoveImplicit (Control control)
494                         {
495                                 if (impl_list != null) {
496                                         all_controls = null;
497                                         impl_list.Remove (control);
498                                 }
499                                 control.Parent = null;
500                                 owner.UpdateZOrder ();
501                         }
502
503                         public void RemoveAt(int index) {
504                                 if (index < 0 || index >= list.Count) {
505                                         throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
506                                 }
507                                 Remove ((Control)list[index]);
508                         }
509
510                         public void SetChildIndex(Control child, int newIndex) {
511                                 int     old_index;
512
513                                 old_index=list.IndexOf(child);
514                                 if (old_index==-1) {
515                                         throw new ArgumentException("Not a child control", "child");
516                                 }
517
518                                 if (old_index==newIndex) {
519                                         return;
520                                 }
521
522                                 RemoveAt(old_index);
523
524                                 if (newIndex>list.Count) {
525                                         list.Add(child);
526                                 } else {
527                                         list.Insert(newIndex, child);
528                                 }
529                                 child.parent = owner;
530                                 owner.UpdateZOrder();
531                         }
532                         #endregion // ControlCollection Private Instance Methods
533
534                         #region ControlCollection Interface Properties
535                         object IList.this[int index] {
536                                 get {
537                                         if (index<0 || index>=list.Count) {
538                                                 throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
539                                         }
540                                         return this[index];
541                                 }
542
543                                 set {
544                                         if (!(value is Control)) {
545                                                 throw new ArgumentException("Object of type Control required", "value");
546                                         }
547
548                                         list[index]=(Control)value;
549                                 }
550                         }
551
552                         bool IList.IsFixedSize {
553                                 get {
554                                         return false;
555                                 }
556                         }
557
558                         bool IList.IsReadOnly {
559                                 get {
560                                         return list.IsReadOnly;
561                                 }
562                         }
563
564                         bool ICollection.IsSynchronized {
565                                 get {
566                                         return list.IsSynchronized;
567                                 }
568                         }
569
570                         object ICollection.SyncRoot {
571                                 get {
572                                         return list.SyncRoot;
573                                 }
574                         }
575                         #endregion // ControlCollection Interface Properties
576
577                         #region ControlCollection Interface Methods
578                         int IList.Add(object value) {
579                                 if (value == null) {
580                                         throw new ArgumentNullException("value", "Cannot add null controls");
581                                 }
582
583                                 if (!(value is Control)) {
584                                         throw new ArgumentException("Object of type Control required", "value");
585                                 }
586
587                                 return list.Add(value);
588                         }
589
590                         bool IList.Contains(object value) {
591                                 if (!(value is Control)) {
592                                         throw new ArgumentException("Object of type Control required", "value");
593                                 }
594
595                                 return this.Contains((Control) value);
596                         }
597
598                         int IList.IndexOf(object value) {
599                                 if (!(value is Control)) {
600                                         throw new ArgumentException("Object of type Control  required", "value");
601                                 }
602
603                                 return this.IndexOf((Control) value);
604                         }
605
606                         void IList.Insert(int index, object value) {
607                                 if (!(value is Control)) {
608                                         throw new ArgumentException("Object of type Control required", "value");
609                                 }
610                                 all_controls = null;
611                                 list.Insert(index, value);
612                         }
613
614                         void IList.Remove(object value) {
615                                 if (!(value is Control)) {
616                                         throw new ArgumentException("Object of type Control required", "value");
617                                 }
618                                 all_controls = null;
619                                 list.Remove(value);
620                         }
621
622                         void ICollection.CopyTo(Array array, int index) {
623                                 if (list.Count>0) {
624                                         list.CopyTo(array, index);
625                                 }
626                         }
627
628                         Object ICloneable.Clone() {
629                                 ControlCollection clone = new ControlCollection(this.owner);
630                                 clone.list=(ArrayList)list.Clone();             // FIXME: Do we need this?
631                                 return clone;
632                         }
633                         #endregion // ControlCollection Interface Methods
634                 }
635                 #endregion      // ControlCollection Class
636                 
637                 #region Public Constructors
638                 public Control() {                      
639                         creator_thread = Thread.CurrentThread;
640
641                         anchor_style = AnchorStyles.Top | AnchorStyles.Left;
642
643                         create_handled = false;
644                         is_visible = true;
645                         is_captured = false;
646                         is_disposed = false;
647                         is_enabled = true;
648                         is_entered = false;
649                         layout_pending = false;
650                         is_toplevel = false;
651                         causes_validation = true;
652                         has_focus = false;
653                         layout_suspended = 0;           
654                         mouse_clicks = 1;
655                         tab_index = -1;
656                         cursor = null;
657                         right_to_left = RightToLeft.Inherit;
658                         border_style = BorderStyle.None;
659                         background_color = Color.Empty;
660                         dist_left = 0;
661                         dist_right = 0;
662                         dist_top = 0;
663                         dist_bottom = 0;
664
665                         control_style = ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | 
666                                         ControlStyles.Selectable | ControlStyles.StandardClick | 
667                                         ControlStyles.StandardDoubleClick;
668
669                         parent = null;
670                         background_image = null;
671                         text = string.Empty;
672                         name = string.Empty;                    
673
674                         window = new ControlNativeWindow(this);
675                         child_controls = CreateControlsInstance();
676                         client_size = new Size(DefaultSize.Width, DefaultSize.Height);
677                         client_rect = new Rectangle(0, 0, DefaultSize.Width, DefaultSize.Height);
678                         XplatUI.CalculateWindowRect(IntPtr.Zero, ref client_rect, CreateParams.Style, CreateParams.ExStyle, null, out bounds);
679                         if ((CreateParams.Style & (int)WindowStyles.WS_CHILD) == 0) {
680                                 bounds.X=-1;
681                                 bounds.Y=-1;
682                         }
683                 }
684
685                 public Control(Control parent, string text) : this() {
686                         Text=text;
687                         Parent=parent;
688                 }
689
690                 public Control(Control parent, string text, int left, int top, int width, int height) : this() {
691                         Parent=parent;
692                         bounds.X=left;
693                         bounds.Y=top;
694                         bounds.Width=width;
695                         bounds.Height=height;
696                         SetBoundsCore(left, top, width, height, BoundsSpecified.All);
697                         Text=text;
698                 }
699
700                 public Control(string text) : this() {
701                         Text=text;
702                 }
703
704                 public Control(string text, int left, int top, int width, int height) : this() {
705                         bounds.X=left;
706                         bounds.Y=top;
707                         bounds.Width=width;
708                         bounds.Height=height;
709                         SetBoundsCore(left, top, width, height, BoundsSpecified.All);
710                         Text=text;
711                 }
712
713                 private delegate void RemoveDelegate(object c);
714
715                 protected override void Dispose(bool disposing) {
716                         is_disposed = true;
717                         if (dc_mem!=null) {
718                                 dc_mem.Dispose();
719                                 dc_mem=null;
720                         }
721
722                         if (bmp_mem!=null) {
723                                 bmp_mem.Dispose();
724                                 bmp_mem=null;
725                         }
726
727                         if (this.InvokeRequired) {
728                                 this.Invoke(new MethodInvoker(DestroyHandle));
729                                 this.Invoke(new RemoveDelegate(controls.Remove), new object[] {this});
730                         } else {
731                                 DestroyHandle();
732                                 controls.Remove(this);
733                         }
734                 }
735                 #endregion      // Public Constructors
736
737                 #region Internal Properties
738                 internal BorderStyle InternalBorderStyle {
739                         get {
740                                 return border_style;
741                         }
742
743                         set {
744                                 if (!Enum.IsDefined (typeof (BorderStyle), value))
745                                         throw new InvalidEnumArgumentException (string.Format("Enum argument value '{0}' is not valid for BorderStyle", value));
746
747                                 if (border_style != value) {
748                                         border_style = value;
749
750                                         if (IsHandleCreated) {
751                                                 XplatUI.SetBorderStyle(window.Handle, (FormBorderStyle)border_style);
752                                                 Refresh();
753                                         }
754                                 }
755                         }
756                 }
757                 #endregion      // Internal Properties
758
759                 #region Private & Internal Methods
760                 internal IAsyncResult BeginInvokeInternal (Delegate method, object [] args) {
761                         AsyncMethodResult       result;
762                         AsyncMethodData         data;
763                         Control                 p;
764
765                         p = this;
766                         do {
767                                 if (!p.IsHandleCreated) {
768                                         throw new InvalidOperationException("Cannot call Invoke or InvokeAsync on a control until the window handle is created");
769                                 }
770                                 p = p.parent;
771                         } while (p != null);
772
773                         result = new AsyncMethodResult ();
774                         data = new AsyncMethodData ();
775
776                         data.Method = method;
777                         data.Args = args;
778                         data.Result = new WeakReference (result);
779
780 #if NET_2_0
781                         if (!ExecutionContext.IsFlowSuppressed ()) {
782                                 data.Context = ExecutionContext.Capture ();
783                         }
784 #else
785 #if !MWF_ON_MSRUNTIME
786                         if (SecurityManager.SecurityEnabled) {
787                                 data.Stack = CompressedStack.GetCompressedStack ();
788                         }
789 #endif
790 #endif
791
792                         XplatUI.SendAsyncMethod (data);
793                         return result;
794                 }
795
796                 
797                 internal void PointToClient (ref int x, ref int y)
798                 {
799                         XplatUI.ScreenToClient (Handle, ref x, ref y);
800                 }
801
802                 internal void PointToScreen (ref int x, ref int y)
803                 {
804                         XplatUI.ClientToScreen (Handle, ref x, ref y);
805                 }
806
807                 internal Graphics DeviceContext {
808                         get { 
809                                 if (dc_mem==null) {
810                                         CreateBuffers(this.Width, this.Height);
811                                 }
812                                 return dc_mem;
813                         }
814                 }
815
816                 private Bitmap ImageBuffer {
817                         get {
818                                 if (bmp_mem==null) {
819                                         CreateBuffers(this.Width, this.Height);
820                                 }
821                                 return bmp_mem;
822                         }
823                 }
824
825                 internal void CreateBuffers (int width, int height) {
826                         if (dc_mem != null) {
827                                 dc_mem.Dispose ();
828                         }
829                         if (bmp_mem != null)
830                                 bmp_mem.Dispose ();
831
832                         if (width < 1) {
833                                 width = 1;
834                         }
835
836                         if (height < 1) {
837                                 height = 1;
838                         }
839
840                         bmp_mem = new Bitmap (width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
841                         dc_mem = Graphics.FromImage (bmp_mem);
842                         needs_redraw = true;
843                 }
844
845                 internal void InvalidateBuffers ()
846                 {
847                         if (dc_mem != null) {
848                                 dc_mem.Dispose ();
849                         }
850                         if (bmp_mem != null)
851                                 bmp_mem.Dispose ();
852
853                         dc_mem = null;
854                         bmp_mem = null;
855                         needs_redraw = true;
856                 }
857
858                 internal static void SetChildColor(Control parent) {
859                         Control child;
860
861                         for (int i=0; i < parent.child_controls.Count; i++) {
862                                 child=parent.child_controls[i];
863                                 if (child.child_controls.Count>0) {
864                                         SetChildColor(child);
865                                 }
866                         }
867                                 
868                 }
869
870                 internal bool Select(Control control) {
871                         Control                 parent;
872                         IContainerControl       container;
873
874                         if (control == null) {
875                                 return false;
876                         }
877
878                         parent = control.parent;
879
880                         if (((control.control_style & ControlStyles.Selectable) !=0)  && (parent != null)) {
881                                 while (parent != null) {
882                                         if (!parent.Visible || !parent.is_enabled) {
883                                                 return false;
884                                         }
885                                         parent = parent.parent;
886                                 }
887                         }
888
889                         control.is_selected = true;
890
891                         container = GetContainerControl();
892                         if (container != null) {
893                                 container.ActiveControl = control;
894                         }
895                         if (control.IsHandleCreated) {
896                                 XplatUI.SetFocus(control.window.Handle);
897                         }
898                         return true;
899                 }
900
901                 internal virtual void DoDefaultAction() {
902                         // Only here to be overriden by our actual controls; this is needed by the accessibility class
903                 }
904
905                 internal static int LowOrder (int param) {
906                         return ((int)(short)(param & 0xffff));
907                 }
908
909                 internal static int HighOrder (int param) {
910                         return ((int)(short)(param >> 16));
911                 }
912
913                 // This method exists so controls overriding OnPaintBackground can have default background painting done
914                 internal virtual void PaintControlBackground (PaintEventArgs pevent)
915                 {
916                         if (background_image == null) {
917                                 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));
918                                 return;
919                         }
920
921                         DrawBackgroundImage (pevent.Graphics);
922                 }
923
924                 void DrawBackgroundImage (Graphics g)
925                 {
926                         using (TextureBrush b = new TextureBrush (background_image)) {
927                                 g.FillRectangle (b, ClientRectangle);
928                         }
929                 }
930
931                 internal virtual void DndEnter (DragEventArgs e)
932                 {
933                         try {
934                                 OnDragEnter (e);
935                         } catch { }
936                 }
937
938                 internal virtual void DndOver (DragEventArgs e)
939                 {
940                         try {
941                                 OnDragOver (e);
942                         } catch { }
943                 }
944
945                 internal virtual void DndDrop (DragEventArgs e)
946                 {
947                         try {
948                                 OnDragDrop (e);
949                         } catch (Exception exc) {
950                                 Console.Error.WriteLine ("MWF: Exception while dropping:");
951                                 Console.Error.WriteLine (exc);
952                         }
953                 }
954
955                 internal virtual void DndLeave (EventArgs e)
956                 {
957                         try {
958                                 OnDragLeave (e);
959                         } catch { }
960                 }
961
962                 internal virtual void DndFeedback(GiveFeedbackEventArgs e)
963                 {
964                         try {
965                                 OnGiveFeedback(e);
966                         } catch { }
967                 }
968
969                 internal virtual void DndContinueDrag(QueryContinueDragEventArgs e)
970                 {
971                         try {
972                                 OnQueryContinueDrag(e);
973                         } catch { }
974                 }
975                 
976                 internal static MouseButtons FromParamToMouseButtons (int param) {              
977                         MouseButtons buttons = MouseButtons.None;
978                                         
979                         if ((param & (int) MsgButtons.MK_LBUTTON) != 0)
980                                 buttons |= MouseButtons.Left;
981                         
982                         if ((param & (int) MsgButtons.MK_MBUTTON) != 0)
983                                 buttons |= MouseButtons.Middle;
984                                 
985                         if ((param & (int) MsgButtons.MK_RBUTTON) != 0)
986                                 buttons |= MouseButtons.Right;          
987                                 
988                         return buttons;
989
990                 }
991
992                 internal virtual bool ProcessControlMnemonic(char charCode) {
993                         return ProcessMnemonic(charCode);
994                 }
995
996                 private static Control FindFlatForward(Control container, Control start) {
997                         Control found;
998                         int     index;
999                         int     end;
1000
1001                         found = null;
1002                         end = container.child_controls.Count;
1003
1004                         if (start != null) {
1005                                 index = start.tab_index;
1006                         } else {
1007                                 index = -1;
1008                         }
1009
1010                         for (int i = 0; i < end; i++) {
1011                                 if (found == null) {
1012                                         if (container.child_controls[i].tab_index > index) {
1013                                                 found = container.child_controls[i];
1014                                         }
1015                                 } else if (found.tab_index > container.child_controls[i].tab_index) {
1016                                         if (container.child_controls[i].tab_index > index) {
1017                                                 found = container.child_controls[i];
1018                                         }
1019                                 }
1020                         }
1021                         return found;
1022                 }
1023
1024                 private static Control FindControlForward(Control container, Control start) {
1025                         Control found;
1026                         Control p;
1027
1028                         found = null;
1029
1030                         if (start != null) {
1031                                 if ((start is IContainerControl) || start.GetStyle(ControlStyles.ContainerControl)) {
1032                                         found = FindControlForward(start, null);
1033                                         if (found != null) {
1034                                                 return found;
1035                                         }
1036                                 }
1037
1038                                 p = start.parent;
1039                                 while (p != container) {
1040                                         found = FindFlatForward(p, start);
1041                                         if (found != null) {
1042                                                 return found;
1043                                         }
1044                                         start = p;
1045                                         p = p.parent;
1046                                 }
1047                         }
1048                         return FindFlatForward(container, start);
1049                 }
1050
1051                 private static Control FindFlatBackward(Control container, Control start) {
1052                         Control found;
1053                         int     index;
1054                         int     end;
1055
1056                         found = null;
1057                         end = container.child_controls.Count;
1058
1059                         if (start != null) {
1060                                 index = start.tab_index;
1061                         } else {
1062                                 // FIXME: Possible speed-up: Keep the highest taborder index in the container
1063                                 index = -1;
1064                                 for (int i = 0; i < end; i++) {
1065                                         if (container.child_controls[i].tab_index > index) {
1066                                                 index = container.child_controls[i].tab_index;
1067                                         }
1068                                 }
1069                                 index++;
1070                         }
1071
1072                         for (int i = 0; i < end; i++) {
1073                                 if (found == null) {
1074                                         if (container.child_controls[i].tab_index < index) {
1075                                                 found = container.child_controls[i];
1076                                         }
1077                                 } else if (found.tab_index < container.child_controls[i].tab_index) {
1078                                         if (container.child_controls[i].tab_index < index) {
1079                                                 found = container.child_controls[i];
1080                                         }
1081                                 }
1082                         }
1083                         return found;
1084                 }
1085
1086                 private static Control FindControlBackward(Control container, Control start) {
1087                         Control found;
1088
1089                         found = null;
1090
1091                         if (start != null) {
1092                                 found = FindFlatBackward(start.parent, start);
1093                                 if (found == null && start.parent != container) {
1094                                         return start.parent;
1095                                 }
1096                         }
1097                         if (found == null) {
1098                                 found = FindFlatBackward(container, start);
1099                         }
1100
1101                         while ((found != null) && ((found is IContainerControl) || found.GetStyle(ControlStyles.ContainerControl))) {
1102                                 found = FindControlBackward(found, null);
1103                                 if (found != null) {
1104                                         return found;
1105                                 }
1106                         }
1107
1108                         return found;
1109                 }
1110
1111                 private void HandleClick(int clicks) {
1112                         if (GetStyle(ControlStyles.StandardClick)) {
1113                                 if (clicks > 1) {
1114                                         if (GetStyle(ControlStyles.StandardDoubleClick)) {
1115                                                 OnDoubleClick(EventArgs.Empty);
1116                                         } else {
1117                                                 OnClick(EventArgs.Empty);
1118                                         }
1119                                 } else {
1120                                         OnClick(EventArgs.Empty);
1121                                 }
1122                         }
1123                 }
1124
1125                 private void CheckDataBindings ()
1126                 {
1127                         if (data_bindings == null)
1128                                 return;
1129
1130                         BindingContext binding_context = BindingContext;
1131                         foreach (Binding binding in data_bindings) {
1132                                 binding.Check (binding_context);
1133                         }
1134                 }
1135                 #endregion      // Private & Internal Methods
1136
1137                 #region Public Static Properties
1138                 public static Color DefaultBackColor {
1139                         get {
1140                                 return ThemeEngine.Current.DefaultControlBackColor;
1141                         }
1142                 }
1143
1144                 public static Font DefaultFont {
1145                         get {
1146                                 return ThemeEngine.Current.DefaultFont;
1147                         }
1148                 }
1149
1150                 public static Color DefaultForeColor {
1151                         get {
1152                                 return ThemeEngine.Current.DefaultControlForeColor;
1153                         }
1154                 }
1155
1156                 public static Keys ModifierKeys {
1157                         get {
1158                                 return XplatUI.State.ModifierKeys;
1159                         }
1160                 }
1161
1162                 public static MouseButtons MouseButtons {
1163                         get {
1164                                 return XplatUI.State.MouseButtons;
1165                         }
1166                 }
1167
1168                 public static Point MousePosition {
1169                         get {
1170                                 return Cursor.Position;
1171                         }
1172                 }
1173                 
1174 #if NET_2_0
1175                 [MonoTODO]
1176                 public static bool CheckForIllegalCrossThreadCalls 
1177                 {
1178                         set {
1179                         }
1180                         get {
1181                                 return false;
1182                         }
1183                 }
1184 #endif
1185                 #endregion      // Public Static Properties
1186
1187                 #region Public Instance Properties
1188                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1189                 [Browsable(false)]
1190                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1191                 public AccessibleObject AccessibilityObject {
1192                         get {
1193                                 if (accessibility_object==null) {
1194                                         accessibility_object=CreateAccessibilityInstance();
1195                                 }
1196                                 return accessibility_object;
1197                         }
1198                 }
1199
1200                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1201                 [Browsable(false)]
1202                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1203                 public string AccessibleDefaultActionDescription {
1204                         get {
1205                                 return AccessibilityObject.default_action;
1206                         }
1207
1208                         set {
1209                                 AccessibilityObject.default_action=value;
1210                         }
1211                 }
1212
1213                 [Localizable(true)]
1214                 [DefaultValue(null)]
1215                 public string AccessibleDescription {
1216                         get {
1217                                 return AccessibilityObject.description;
1218                         }
1219
1220                         set {
1221                                 AccessibilityObject.description=value;
1222                         }
1223                 }
1224
1225                 [Localizable(true)]
1226                 [DefaultValue(null)]
1227                 public string AccessibleName {
1228                         get {
1229                                 return AccessibilityObject.Name;
1230                         }
1231
1232                         set {
1233                                 AccessibilityObject.Name=value;
1234                         }
1235                 }
1236
1237                 [DefaultValue(AccessibleRole.Default)]
1238                 [MWFDescription("Role of the control"), MWFCategory("Accessibility")]
1239                 public AccessibleRole AccessibleRole {
1240                         get {
1241                                 return AccessibilityObject.role;
1242                         }
1243
1244                         set {
1245                                 AccessibilityObject.role=value;
1246                         }
1247                 }
1248
1249                 [DefaultValue(false)]
1250                 public virtual bool AllowDrop {
1251                         get {
1252                                 return allow_drop;
1253                         }
1254
1255                         set {
1256                                 if (allow_drop == value)
1257                                         return;
1258                                 allow_drop = value;
1259                                 UpdateStyles();
1260                                 XplatUI.SetAllowDrop (Handle, value);
1261                         }
1262                 }
1263
1264                 [Localizable(true)]
1265                 [RefreshProperties(RefreshProperties.Repaint)]
1266                 [DefaultValue(AnchorStyles.Top | AnchorStyles.Left)]
1267                 public virtual AnchorStyles Anchor {
1268                         get {
1269                                 return anchor_style;
1270                         }
1271
1272                         set {
1273                                 anchor_style=value;
1274
1275                                 if (parent != null) {
1276                                         parent.PerformLayout(this, "Parent");
1277                                 }
1278                         }
1279                 }
1280
1281                 [DispId(-501)]
1282                 public virtual Color BackColor {
1283                         get {
1284                                 if (background_color.IsEmpty) {
1285                                         if (parent!=null) {
1286                                                 return parent.BackColor;
1287                                         }
1288                                         return DefaultBackColor;
1289                                 }
1290                                 return background_color;
1291                         }
1292
1293                         set {
1294                                 background_color=value;
1295                                 SetChildColor(this);
1296                                 OnBackColorChanged(EventArgs.Empty);
1297                                 Invalidate();
1298                         }
1299                 }
1300
1301                 [Localizable(true)]
1302                 [DefaultValue(null)]
1303                 public virtual Image BackgroundImage {
1304                         get {
1305                                 return background_image;
1306                         }
1307
1308                         set {
1309                                 if (background_image!=value) {
1310                                         background_image=value;
1311                                         OnBackgroundImageChanged(EventArgs.Empty);
1312                                 }
1313                         }
1314                 }
1315
1316                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1317                 [Browsable(false)]
1318                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1319                 public virtual BindingContext BindingContext {
1320                         get {
1321                                 if (binding_context != null)
1322                                         return binding_context;
1323                                 if (Parent == null)
1324                                         return null;
1325                                 binding_context = Parent.BindingContext;
1326                                 return binding_context;
1327                         }
1328                         set {
1329                                 if (binding_context != value) {
1330                                         binding_context = value;
1331                                         OnBindingContextChanged(EventArgs.Empty);
1332                                 }
1333                         }
1334                 }
1335
1336                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1337                 [Browsable(false)]
1338                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1339                 public int Bottom {
1340                         get {
1341                                 return bounds.Y+bounds.Height;
1342                         }
1343                 }
1344
1345                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1346                 [Browsable(false)]
1347                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1348                 public Rectangle Bounds {
1349                         get {
1350                                 return this.bounds;
1351                         }
1352
1353                         set {
1354                                 SetBoundsCore(value.Left, value.Top, value.Width, value.Height, BoundsSpecified.All);
1355                         }
1356                 }
1357
1358                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1359                 [Browsable(false)]
1360                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1361                 public bool CanFocus {
1362                         get {
1363                                 if (Visible && is_enabled && GetStyle(ControlStyles.Selectable)) {
1364                                         return true;
1365                                 }
1366                                 return false;
1367                         }
1368                 }
1369
1370                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1371                 [Browsable(false)]
1372                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1373                 public bool CanSelect {
1374                         get {
1375                                 Control parent;
1376
1377                                 if (!GetStyle(ControlStyles.Selectable) || this.parent == null) {
1378                                         return false;
1379                                 }
1380
1381                                 parent = this.parent;
1382                                 while (parent != null) {
1383                                         if (!parent.is_visible || !parent.is_enabled) {
1384                                                 return false;
1385                                         }
1386
1387                                         parent = parent.parent;
1388                                 }
1389                                 return true;
1390                         }
1391                 }
1392
1393                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1394                 [Browsable(false)]
1395                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1396                 public bool Capture {
1397                         get {
1398                                 return this.is_captured;
1399                         }
1400
1401                         set {
1402                                 if (this.IsHandleCreated) {
1403                                         if (value && !is_captured) {
1404                                                 is_captured = true;
1405                                                 XplatUI.GrabWindow(this.window.Handle, IntPtr.Zero);
1406                                         } else if (!value && is_captured) {
1407                                                 XplatUI.UngrabWindow(this.window.Handle);
1408                                                 is_captured = false;
1409                                         }
1410                                 }
1411                         }
1412                 }
1413
1414                 [DefaultValue(true)]
1415                 public bool CausesValidation {
1416                         get {
1417                                 return this.causes_validation;
1418                         }
1419
1420                         set {
1421                                 if (this.causes_validation != value) {
1422                                         causes_validation = value;
1423                                         OnCausesValidationChanged(EventArgs.Empty);
1424                                 }
1425                         }
1426                 }
1427
1428                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1429                 [Browsable(false)]
1430                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1431                 public Rectangle ClientRectangle {
1432                         get {
1433                                 client_rect.Width = client_size.Width;
1434                                 client_rect.Height = client_size.Height;
1435                                 return client_rect;
1436                         }
1437                 }
1438
1439                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1440                 [Browsable(false)]
1441                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1442                 public Size ClientSize {
1443                         get {
1444 #if notneeded
1445                                 if ((this is Form) && (((Form)this).form_parent_window != null)) {
1446                                         return ((Form)this).form_parent_window.ClientSize;
1447                                 }
1448 #endif
1449
1450                                 return client_size;
1451                         }
1452
1453                         set {
1454                                 this.SetClientSizeCore(value.Width, value.Height);
1455                         }
1456                 }
1457
1458                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1459                 [Browsable(false)]
1460                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1461                 [DescriptionAttribute("ControlCompanyNameDescr")]
1462                 public String CompanyName {
1463                         get {
1464                                 return "Mono Project, Novell, Inc.";
1465                         }
1466                 }
1467
1468                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1469                 [Browsable(false)]
1470                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1471                 public bool ContainsFocus {
1472                         get {
1473                                 if (this.Focused) {
1474                                         return true;
1475                                 }
1476
1477                                 for (int i=0; i < child_controls.Count; i++) {
1478                                         if (child_controls[i].ContainsFocus) {
1479                                                 return true;
1480                                         }
1481                                 }
1482                                 return false;
1483                         }
1484                 }
1485
1486                 [DefaultValue(null)]
1487                 public virtual ContextMenu ContextMenu {
1488                         get {
1489                                 return context_menu;
1490                         }
1491
1492                         set {
1493                                 if (context_menu != value) {
1494                                         context_menu = value;
1495                                         OnContextMenuChanged(EventArgs.Empty);
1496                                 }
1497                         }
1498                 }
1499
1500                 [Browsable(false)]
1501                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1502                 public ControlCollection Controls {
1503                         get {
1504                                 return this.child_controls;
1505                         }
1506                 }
1507
1508                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1509                 [Browsable(false)]
1510                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1511                 public bool Created {
1512                         get {
1513                                 if (!this.is_disposed && (this.window.Handle != IntPtr.Zero)) {
1514                                         return true;
1515                                 }
1516                                 return false;
1517                         }
1518                 }
1519
1520                 [AmbientValue(null)]
1521                 public virtual Cursor Cursor {
1522                         get {
1523                                 if (cursor != null) {
1524                                         return cursor;
1525                                 }
1526
1527                                 if (parent != null) {
1528                                         return parent.Cursor;
1529                                 }
1530
1531                                 return Cursors.Default;
1532                         }
1533
1534                         set {
1535                                 if (cursor != value) {
1536                                         Point   pt;
1537
1538                                         cursor = value;
1539                                         
1540                                         pt = Cursor.Position;
1541                                         if (bounds.Contains(pt)) {
1542                                                 if (GetChildAtPoint(pt) == null) {
1543                                                         if (cursor != null) {
1544                                                                 XplatUI.SetCursor(window.Handle, cursor.handle);
1545                                                         } else {
1546                                                                 if (parent != null) {
1547                                                                         XplatUI.SetCursor(window.Handle, parent.Cursor.handle);
1548                                                                 } else {
1549                                                                         XplatUI.SetCursor(window.Handle, Cursors.def.handle);
1550                                                                 }
1551                                                         }
1552                                                 }
1553                                         }
1554
1555                                         OnCursorChanged(EventArgs.Empty);
1556                                 }
1557                         }
1558                 }
1559
1560
1561                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
1562                 [ParenthesizePropertyName(true)]
1563                 [RefreshProperties(RefreshProperties.All)]
1564                 public ControlBindingsCollection DataBindings {
1565                         get {
1566                                 if (data_bindings == null)
1567                                         data_bindings = new ControlBindingsCollection (this);
1568                                 return data_bindings;
1569                         }
1570                 }
1571
1572                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1573                 [Browsable(false)]
1574                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1575                 public virtual Rectangle DisplayRectangle {
1576                         get {
1577                                 return ClientRectangle;
1578                         }
1579                 }
1580
1581                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1582                 [Browsable(false)]
1583                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1584                 public bool Disposing {
1585                         get {
1586                                 return is_disposed;
1587                         }
1588                 }
1589
1590                 [Localizable(true)]
1591                 [RefreshProperties(RefreshProperties.Repaint)]
1592                 [DefaultValue(DockStyle.None)]
1593                 public virtual DockStyle Dock {
1594                         get {
1595                                 return dock_style;
1596                         }
1597
1598                         set {
1599                                 if (dock_style == value) {
1600                                         return;
1601                                 }
1602
1603                                 dock_style = value;
1604
1605                                 if (parent != null) {
1606                                         parent.PerformLayout(this, "Parent");
1607                                 }
1608
1609                                 OnDockChanged(EventArgs.Empty);
1610                         }
1611                 }
1612
1613                 [DispId(-514)]
1614                 [Localizable(true)]
1615                 public bool Enabled {
1616                         get {
1617                                 return is_enabled;
1618                         }
1619
1620                         set {
1621                                 if (is_enabled == value) {
1622                                         return;
1623                                 }
1624
1625                                 is_enabled = value;
1626                                 Refresh();
1627                                 OnEnabledChanged (EventArgs.Empty);                             
1628                         }
1629                 }
1630
1631                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1632                 [Browsable(false)]
1633                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1634                 public virtual bool Focused {
1635                         get {
1636                                 return this.has_focus;
1637                         }
1638                 }
1639
1640                 [DispId(-512)]
1641                 [AmbientValue(null)]
1642                 [Localizable(true)]
1643                 public virtual Font Font {
1644                         get {
1645                                 if (font != null) {
1646                                         return font;
1647                                 }
1648
1649                                 if (Parent != null && Parent.Font != null) {
1650                                         return Parent.Font;
1651                                 }
1652
1653                                 return DefaultFont;
1654                         }
1655
1656                         set {
1657                                 if (font != null && font.Equals (value)) {
1658                                         return;
1659                                 }
1660
1661                                 font = value;   
1662                                 Invalidate();
1663                                 OnFontChanged (EventArgs.Empty);                                
1664                         }
1665                 }
1666
1667                 [DispId(-513)]
1668                 public virtual Color ForeColor {
1669                         get {
1670                                 if (foreground_color.IsEmpty) {
1671                                         if (parent!=null) {
1672                                                 return parent.ForeColor;
1673                                         }
1674                                         return DefaultForeColor;
1675                                 }
1676                                 return foreground_color;
1677                         }
1678
1679                         set {
1680                                 if (foreground_color != value) {
1681                                         foreground_color=value;
1682                                         Invalidate();
1683                                         OnForeColorChanged(EventArgs.Empty);
1684                                 }
1685                         }
1686                 }
1687
1688                 [DispId(-515)]
1689                 [Browsable(false)]
1690                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1691                 public IntPtr Handle {                                                  // IWin32Window
1692                         get {
1693                                 if (!IsHandleCreated) {
1694                                         CreateHandle();
1695                                 }
1696                                 return window.Handle;
1697                         }
1698                 }
1699
1700                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1701                 [Browsable(false)]
1702                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1703                 public bool HasChildren {
1704                         get {
1705                                 if (this.child_controls.Count>0) {
1706                                         return true;
1707                                 }
1708                                 return false;
1709                         }
1710                 }
1711
1712                 [EditorBrowsable(EditorBrowsableState.Always)]
1713                 [Browsable(false)]
1714                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1715                 public int Height {
1716                         get {
1717                                 return this.bounds.Height;
1718                         }
1719
1720                         set {
1721                                 SetBoundsCore(bounds.X, bounds.Y, bounds.Width, value, BoundsSpecified.Height);
1722                         }
1723                 }
1724
1725                 [AmbientValue(ImeMode.Inherit)]
1726                 [Localizable(true)]
1727                 public ImeMode ImeMode {
1728                         get {
1729                                  if (ime_mode == DefaultImeMode) {
1730                                         if (parent != null)
1731                                                 return parent.ImeMode;
1732                                         else
1733                                                 return ImeMode.NoControl; // default value
1734                                 }
1735                                 return ime_mode;
1736                         }
1737
1738                         set {
1739                                 if (ime_mode != value) {
1740                                         ime_mode = value;
1741
1742                                         OnImeModeChanged(EventArgs.Empty);
1743                                 }
1744                         }
1745                 }
1746
1747                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1748                 [Browsable(false)]
1749                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1750                 public bool InvokeRequired {                                            // ISynchronizeInvoke
1751                         get {
1752                                 if (creator_thread!=Thread.CurrentThread) {
1753                                         return true;
1754                                 }
1755                                 return false;
1756                         }
1757                 }
1758
1759                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1760                 [Browsable(false)]
1761                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1762                 public bool IsAccessible {
1763                         get {
1764                                 return is_accessible;
1765                         }
1766
1767                         set {
1768                                 is_accessible = value;
1769                         }
1770                 }
1771
1772                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1773                 [Browsable(false)]
1774                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1775                 public bool IsDisposed {
1776                         get {
1777                                 return this.is_disposed;
1778                         }
1779                 }
1780
1781                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1782                 [Browsable(false)]
1783                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1784                 public bool IsHandleCreated {
1785                         get {
1786                                 if ((window!=null) && (window.Handle!=IntPtr.Zero)) {
1787                                         return true;
1788                                 }
1789
1790                                 return false;
1791                         }
1792                 }
1793
1794                 [EditorBrowsable(EditorBrowsableState.Always)]
1795                 [Browsable(false)]
1796                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1797                 public int Left {
1798                         get {
1799                                 return this.bounds.X;
1800                         }
1801
1802                         set {
1803                                 SetBoundsCore(value, bounds.Y, bounds.Width, bounds.Height, BoundsSpecified.X);
1804                         }
1805                 }
1806
1807                 [Localizable(true)]
1808                 public Point Location {
1809                         get {
1810                                 return new Point(bounds.X, bounds.Y);
1811                         }
1812
1813                         set {
1814                                 SetBoundsCore(value.X, value.Y, bounds.Width, bounds.Height, BoundsSpecified.Location);
1815                         }
1816                 }
1817
1818                 [Browsable(false)]
1819                 public string Name {
1820                         get {
1821                                 return this.name;
1822                         }
1823
1824                         set {
1825                                 this.name=value;
1826                         }
1827                 }
1828
1829                 [Browsable(false)]
1830                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1831                 public Control Parent {
1832                         get {
1833                                 return this.parent;
1834                         }
1835
1836                         set {
1837                                 if (value == this) {
1838                                         throw new ArgumentException("A circular control reference has been made. A control cannot be owned or parented to itself.");
1839                                 }
1840
1841                                 if (parent!=value) {
1842                                         if (value==null) {
1843                                                 parent.Controls.Remove(this);
1844                                                 return;
1845                                         }
1846
1847                                         parent=value;
1848
1849                                         if (!parent.Controls.AllContains (this)) {
1850                                                 Console.WriteLine ("Adding child:  " + this);
1851                                                 parent.Controls.Add(this);
1852                                         }
1853
1854                                         if (IsHandleCreated) {
1855                                                 XplatUI.SetParent(Handle, value.Handle);
1856                                         }
1857
1858                                         OnParentChanged(EventArgs.Empty);
1859                                         InitLayout();
1860                                 }
1861                         }
1862                 }
1863
1864                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1865                 [Browsable(false)]
1866                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1867                 public string ProductName {
1868                         get {
1869                                 Type t = typeof (AssemblyProductAttribute);
1870                                 Assembly assembly = GetType().Module.Assembly;
1871                                 object [] attrs = assembly.GetCustomAttributes (t, false);
1872                                 AssemblyProductAttribute a = null;
1873                                 // On MS we get a NullRefException if product attribute is not
1874                                 // set. 
1875                                 if (attrs != null && attrs.Length > 0)
1876                                         a = (AssemblyProductAttribute) attrs [0];
1877                                 return a.Product;
1878                         }
1879                 }
1880
1881                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1882                 [Browsable(false)]
1883                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1884                 public string ProductVersion {
1885                         get {
1886                                 Type t = typeof (AssemblyVersionAttribute);
1887                                 Assembly assembly = GetType().Module.Assembly;
1888                                 object [] attrs = assembly.GetCustomAttributes (t, false);
1889                                 if (attrs == null || attrs.Length < 1)
1890                                         return "1.0.0.0";
1891                                 return ((AssemblyVersionAttribute)attrs [0]).Version;
1892                         }
1893                 }
1894
1895                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1896                 [Browsable(false)]
1897                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1898                 public bool RecreatingHandle {
1899                         get {
1900                                 return is_recreating;
1901                         }
1902                 }
1903
1904                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1905                 [Browsable(false)]
1906                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1907                 public Region Region {
1908                         get {
1909                                 return new Region(this.bounds);
1910                         }
1911
1912                         set {
1913                                 Graphics        g;
1914                                 RectangleF      r;
1915
1916                                 g = this.CreateGraphics();
1917                                 r = value.GetBounds(g);
1918
1919                                 SetBounds((int)r.X, (int)r.Y, (int)r.Width, (int)r.Height);
1920
1921                                 g.Dispose();
1922                         }
1923                 }
1924
1925                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1926                 [Browsable(false)]
1927                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
1928                 public int Right {
1929                         get {
1930                                 return this.bounds.X+this.bounds.Width;
1931                         }
1932                 }
1933
1934                 [AmbientValue(RightToLeft.Inherit)]
1935                 [Localizable(true)]
1936                 public virtual RightToLeft RightToLeft {
1937                         get {
1938                                 if (right_to_left == RightToLeft.Inherit) {
1939                                         if (parent != null)
1940                                                 return parent.RightToLeft;
1941                                         else
1942                                                 return RightToLeft.No; // default value
1943                                 }
1944                                 return right_to_left;
1945                         }
1946
1947                         set {
1948                                 if (value != right_to_left) {
1949                                         right_to_left = value;
1950                                         OnRightToLeftChanged(EventArgs.Empty);
1951                                 }
1952                         }
1953                 }
1954
1955                 [EditorBrowsable(EditorBrowsableState.Advanced)]
1956                 public override ISite Site {
1957                         get {
1958                                 return base.Site;
1959                         }
1960
1961                         set {
1962                                 base.Site = value;
1963                         }
1964                 }
1965
1966                 [Localizable(true)]
1967                 public Size Size {
1968                         get {
1969                                 return new Size(Width, Height);
1970                         }
1971
1972                         set {
1973                                 SetBoundsCore(bounds.X, bounds.Y, value.Width, value.Height, BoundsSpecified.Size);
1974                         }
1975                 }
1976
1977                 [Localizable(true)]
1978                 [MergableProperty(false)]
1979                 public int TabIndex {
1980                         get {
1981                                 if (tab_index != -1) {
1982                                         return tab_index;
1983                                 }
1984                                 return 0;
1985                         }
1986
1987                         set {
1988                                 if (tab_index != value) {
1989                                         tab_index = value;
1990                                         OnTabIndexChanged(EventArgs.Empty);
1991                                 }
1992                         }
1993                 }
1994
1995                 [DispId(-516)]
1996                 [DefaultValue(true)]
1997                 public bool TabStop {
1998                         get {
1999                                 return tab_stop;
2000                         }
2001
2002                         set {
2003                                 if (tab_stop != value) {
2004                                         tab_stop = value;
2005                                         OnTabStopChanged(EventArgs.Empty);
2006                                 }
2007                         }
2008                 }
2009
2010                 [Localizable(false)]
2011                 [Bindable(true)]
2012                 [TypeConverter(typeof(StringConverter))]
2013                 [DefaultValue(null)]
2014                 public object Tag {
2015                         get {
2016                                 return control_tag;
2017                         }
2018
2019                         set {
2020                                 control_tag = value;
2021                         }
2022                 }
2023
2024                 [DispId(-517)]
2025                 [Localizable(true)]
2026                 [BindableAttribute(true)]
2027                 public virtual string Text {
2028                         get {
2029                                 // Our implementation ignores ControlStyles.CacheText - we always cache
2030                                 return this.text;
2031                         }
2032
2033                         set {
2034                                 if (value == null) {
2035                                         value = String.Empty;
2036                                 }
2037
2038                                 if (text!=value) {
2039                                         text=value;
2040                                         if (IsHandleCreated) {
2041                                                 XplatUI.Text(Handle, text);
2042                                         }
2043                                         OnTextChanged (EventArgs.Empty);
2044                                 }
2045                         }
2046                 }
2047
2048                 [EditorBrowsable(EditorBrowsableState.Always)]
2049                 [Browsable(false)]
2050                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2051                 public int Top {
2052                         get {
2053                                 return this.bounds.Y;
2054                         }
2055
2056                         set {
2057                                 SetBoundsCore(bounds.X, value, bounds.Width, bounds.Height, BoundsSpecified.Y);
2058                         }
2059                 }
2060
2061                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2062                 [Browsable(false)]
2063                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2064                 public Control TopLevelControl {
2065                         get {
2066                                 Control p = this;
2067
2068                                 while (p.parent != null) {
2069                                         p = p.parent;
2070                                 }
2071
2072                                 return p;
2073                         }
2074                 }
2075
2076                 [Localizable(true)]
2077                 public bool Visible {
2078                         get {
2079                                 if (!is_visible) {
2080                                         return false;
2081                                 } else if (parent != null) {
2082                                         return parent.Visible;
2083                                 }
2084
2085                                 return true;
2086                         }
2087
2088                         set {
2089                                 SetVisibleCore(value);
2090                         }
2091                 }
2092
2093                 [EditorBrowsable(EditorBrowsableState.Always)]
2094                 [Browsable(false)]
2095                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2096                 public int Width {
2097                         get {
2098                                 return this.bounds.Width;
2099                         }
2100
2101                         set {
2102                                 SetBoundsCore(bounds.X, bounds.Y, value, bounds.Height, BoundsSpecified.Width);
2103                         }
2104                 }
2105
2106                 [EditorBrowsable(EditorBrowsableState.Never)]
2107                 [Browsable(false)]
2108                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2109                 public IWindowTarget WindowTarget {
2110                         get {
2111                                 return null;
2112                         }
2113
2114                         set {
2115                                 ;       // MS Internal
2116                         }
2117                 }
2118                 #endregion      // Public Instance Properties
2119
2120                 #region Protected Instance Properties
2121                 protected virtual CreateParams CreateParams {
2122                         get {
2123                                 CreateParams create_params = new CreateParams();
2124
2125                                 try {
2126                                         create_params.Caption = Text;
2127                                 }
2128                                 catch {
2129                                         create_params.Caption = text;
2130                                 }
2131
2132                                 try {
2133                                         create_params.X = Left;
2134                                 }
2135                                 catch {
2136                                         create_params.X = this.bounds.X;
2137                                 }
2138
2139                                 try {
2140                                         create_params.Y = Top;
2141                                 }
2142                                 catch {
2143                                         create_params.Y = this.bounds.Y;
2144                                 }
2145
2146                                 try {
2147                                         create_params.Width = Width;
2148                                 }
2149                                 catch {
2150                                         create_params.Width = this.bounds.Width;
2151                                 }
2152
2153                                 try {
2154                                         create_params.Height = Height;
2155                                 }
2156                                 catch {
2157                                         create_params.Height = this.bounds.Height;
2158                                 }
2159
2160
2161                                 create_params.ClassName = XplatUI.DefaultClassName;
2162                                 create_params.ClassStyle = 0;
2163                                 create_params.ExStyle = 0;
2164                                 create_params.Param = 0;
2165
2166                                 if (allow_drop) {
2167                                         create_params.ExStyle |= (int)WindowStyles.WS_EX_ACCEPTFILES;
2168                                 }
2169
2170                                 if (parent!=null) {
2171                                         create_params.Parent = parent.Handle;
2172                                 }
2173
2174                                 create_params.Style = (int)WindowStyles.WS_CHILD | (int)WindowStyles.WS_CLIPCHILDREN | (int)WindowStyles.WS_CLIPSIBLINGS;
2175
2176                                 if (is_visible) {
2177                                         create_params.Style |= (int)WindowStyles.WS_VISIBLE;
2178                                 }
2179
2180                                 switch (border_style) {
2181                                 case BorderStyle.FixedSingle:
2182                                         create_params.Style |= (int) WindowStyles.WS_BORDER;
2183                                         break;
2184                                 case BorderStyle.Fixed3D:
2185                                         create_params.ExStyle |= (int) WindowStyles.WS_EX_CLIENTEDGE;
2186                                         break;
2187                                 }
2188
2189                                 return create_params;
2190                         }
2191                 }
2192
2193                 protected virtual ImeMode DefaultImeMode {
2194                         get {
2195                                 return ImeMode.Inherit;
2196                         }
2197                 }
2198
2199                 protected virtual Size DefaultSize {
2200                         get {
2201                                 return new Size(100, 23);
2202                         }
2203                 }
2204
2205                 protected int FontHeight {
2206                         get {
2207                                 return Font.Height;
2208                         }
2209
2210                         set {
2211                                 ;; // Nothing to do
2212                         }
2213                 }
2214
2215                 protected bool RenderRightToLeft {
2216                         get {
2217                                 return (this.right_to_left == RightToLeft.Yes);
2218                         }
2219                 }
2220
2221                 protected bool ResizeRedraw {
2222                         get {
2223                                 return GetStyle(ControlStyles.ResizeRedraw);
2224                         }
2225
2226                         set {
2227                                 SetStyle(ControlStyles.ResizeRedraw, value);
2228                         }
2229                 }
2230
2231                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2232                 [Browsable(false)]
2233                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2234                 protected virtual bool ShowFocusCues {
2235                         get {
2236                                 return true;
2237                         }
2238                 }
2239
2240                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2241                 [Browsable(false)]
2242                 [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2243                 protected bool ShowKeyboardCues {
2244                         get {
2245                                 return true;
2246                         }
2247                 }
2248                 #endregion      // Protected Instance Properties
2249
2250                 #region Public Static Methods
2251                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2252                 public static Control FromChildHandle(IntPtr handle) {
2253                         IEnumerator control = Control.controls.GetEnumerator();
2254
2255                         while (control.MoveNext()) {
2256                                 if (((Control)control.Current).window.Handle == handle) {
2257                                         // Found it
2258                                         if (((Control)control.Current).Parent != null) {
2259                                                 return ((Control)control.Current).Parent;
2260                                         }
2261                                 }
2262                         }
2263                         return null;
2264                 }
2265
2266                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2267                 public static Control FromHandle(IntPtr handle) {
2268                         IEnumerator control = Control.controls.GetEnumerator();
2269
2270                         while (control.MoveNext()) {
2271                                 if (((Control)control.Current).window.Handle == handle) {
2272                                         // Found it
2273                                         return ((Control)control.Current);
2274                                 }
2275                         }
2276                         return null;
2277                 }
2278
2279                 public static bool IsMnemonic(char charCode, string text) {
2280                         int amp;                        
2281
2282                         amp = text.IndexOf('&');
2283
2284                         if (amp != -1) {
2285                                 if (amp + 1 < text.Length) {
2286                                         if (text[amp + 1] != '&') {
2287                                                 if (Char.ToUpper(charCode) == Char.ToUpper(text.ToCharArray(amp + 1, 1)[0])) {
2288                                                         return true;
2289                                                 }       
2290                                         }
2291                                 }
2292                         }
2293                         return false;
2294                 }
2295                 #endregion
2296
2297                 #region Protected Static Methods
2298                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2299                 protected static bool ReflectMessage(IntPtr hWnd, ref Message m) {
2300                         Control c;
2301
2302                         c = Control.FromHandle(hWnd);
2303
2304                         if (c != null) {
2305                                 c.WndProc(ref m);
2306                                 return true;
2307                         }
2308                         return false;
2309                 }
2310                 #endregion
2311
2312                 #region Public Instance Methods
2313                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2314                 public IAsyncResult BeginInvoke(Delegate method) {
2315                         return BeginInvokeInternal(method, null);
2316                 }
2317
2318                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2319                 public IAsyncResult BeginInvoke (Delegate method, object[] args) {
2320                         return BeginInvokeInternal (method, args);
2321                 }
2322
2323                 public void BringToFront() {
2324                         if ((parent != null) && (parent.child_controls[0]!=this)) {
2325                                 if (parent.child_controls.Contains(this)) {
2326                                         parent.child_controls.SetChildIndex(this, 0);
2327                                 }
2328                         }
2329
2330                         XplatUI.SetZOrder(this.window.Handle, IntPtr.Zero, true, false);
2331
2332                         if (parent != null) {
2333                                 parent.Refresh();
2334                         }
2335                 }
2336
2337                 public bool Contains(Control ctl) {
2338                         while (ctl != null) {
2339                                 ctl = ctl.parent;
2340                                 if (ctl == this) {
2341                                         return true;
2342                                 }
2343                         }
2344                         return false;
2345                 }
2346
2347                 public void CreateControl() {
2348
2349                         if (!IsHandleCreated) {
2350                                 CreateHandle();
2351                         }
2352
2353                         if (!create_handled) {
2354                                 create_handled = true;
2355                                 OnCreateControl();
2356                         }
2357
2358                         Control [] controls = child_controls.GetAllControls ();
2359                         for (int i=0; i<controls.Length; i++) {
2360                                 controls [i].CreateControl ();
2361                         }
2362                 }
2363
2364                 public Graphics CreateGraphics() {
2365                         if (!IsHandleCreated) {
2366                                 this.CreateControl();
2367                         }
2368                         return Graphics.FromHwnd(this.window.Handle);
2369                 }
2370
2371                 public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects) {
2372                         return XplatUI.StartDrag(this.window.Handle, data, allowedEffects);
2373                 }
2374
2375                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2376                 public object EndInvoke (IAsyncResult async_result) {
2377                         AsyncMethodResult result = (AsyncMethodResult) async_result;
2378                         return result.EndInvoke ();
2379                 }
2380
2381                 public Form FindForm() {
2382                         Control c;
2383
2384                         c = this;
2385                         while (c != null) {
2386                                 if (c is Form) {
2387                                         return (Form)c;
2388                                 }
2389                                 c = c.Parent;
2390                         }
2391                         return null;
2392                 }
2393
2394                 public bool Focus() {
2395                         if (IsHandleCreated && !has_focus) {
2396                                 has_focus = true;
2397                                 XplatUI.SetFocus(window.Handle);
2398                         }
2399                         return true;
2400                 }
2401
2402                 public Control GetChildAtPoint(Point pt) {
2403                         // Microsoft's version of this function doesn't seem to work, so I can't check
2404                         // if we only consider children or also grandchildren, etc.
2405                         // I'm gonna say 'children only'
2406                         for (int i=0; i<child_controls.Count; i++) {
2407                                 if (child_controls[i].Bounds.Contains(pt)) {
2408                                         return child_controls[i];
2409                                 }
2410                         }
2411                         return null;
2412                 }
2413
2414                 public IContainerControl GetContainerControl() {
2415                         Control current = this;
2416
2417                         while (current!=null) {
2418                                 if ((current is IContainerControl) && ((current.control_style & ControlStyles.ContainerControl)!=0)) {
2419                                         return (IContainerControl)current;
2420                                 }
2421                                 current = current.parent;
2422                         }
2423                         return null;
2424                 }
2425
2426                 public Control GetNextControl(Control ctl, bool forward) {
2427                         // If we're not a container we don't play
2428                         if (!(this is IContainerControl) && !this.GetStyle(ControlStyles.ContainerControl)) {
2429                                 return null;
2430                         }
2431
2432                         // If ctl is not contained by this, we start at the first child of this
2433                         if (!this.Contains(ctl)) {
2434                                 ctl = null;
2435                         }
2436
2437                         // Search through our controls, starting at ctl, stepping into children as we encounter them
2438                         // try to find the control with the tabindex closest to our own, or, if we're looking into
2439                         // child controls, the one with the smallest tabindex
2440                         if (forward) {
2441                                 return FindControlForward(this, ctl);
2442                         }
2443                         return FindControlBackward(this, ctl);
2444                 }
2445
2446                 public void Hide() {
2447                         this.Visible = false;
2448                 }
2449
2450                 public void Invalidate() {
2451                         Invalidate(ClientRectangle, false);
2452                 }
2453
2454                 public void Invalidate(bool invalidateChildren) {
2455                         Invalidate(ClientRectangle, invalidateChildren);
2456                 }
2457
2458                 public void Invalidate(System.Drawing.Rectangle rc) {
2459                         Invalidate(rc, false);
2460                 }
2461
2462                 public void Invalidate(System.Drawing.Rectangle rc, bool invalidateChildren) {
2463                         if (!IsHandleCreated || !Visible || rc.Width == 0 || rc.Height == 0) {
2464                                 return;
2465                         }
2466
2467                         NotifyInvalidate(rc);
2468
2469                         XplatUI.Invalidate(Handle, rc, false);
2470
2471                         if (invalidateChildren) {
2472                                 Control [] controls = child_controls.GetAllControls ();
2473                                 for (int i=0; i<controls.Length; i++)
2474                                         controls [i].Invalidate ();
2475                         }
2476                         OnInvalidated(new InvalidateEventArgs(rc));
2477                 }
2478
2479                 public void Invalidate(System.Drawing.Region region) {
2480                         Invalidate(region, false);
2481                 }
2482
2483                 [MonoTODO("Figure out if GetRegionScans is usable")]
2484                 public void Invalidate(System.Drawing.Region region, bool invalidateChildren) {
2485                         throw new NotImplementedException();
2486
2487                         // FIXME - should use the GetRegionScans function of the region to invalidate each area
2488                         //if (invalidateChildren) {
2489                         //      for (int i=0; i<child_controls.Count; i++) child_controls[i].Invalidate();
2490                         //}
2491                 }
2492
2493                 public object Invoke (Delegate method) {
2494                         return Invoke(method, null);
2495                 }
2496
2497                 public object Invoke (Delegate method, object[] args) {
2498                         if (!this.InvokeRequired) {
2499                                 return method.DynamicInvoke(args);
2500                         }
2501
2502                         IAsyncResult result = BeginInvoke (method, args);
2503                         return EndInvoke(result);
2504                 }
2505
2506                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2507                 public void PerformLayout() {
2508                         PerformLayout(null, null);
2509                 }
2510
2511                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2512                 public void PerformLayout(Control affectedControl, string affectedProperty) {
2513                         LayoutEventArgs levent = new LayoutEventArgs(affectedControl, affectedProperty);
2514
2515                         if (layout_suspended > 0) {
2516                                 layout_pending = true;
2517                                 return;
2518                         }
2519
2520                         layout_pending = false;
2521
2522                         // Prevent us from getting messed up
2523                         layout_suspended++;
2524
2525                         // Perform all Dock and Anchor calculations
2526                         try {
2527                                 Control         child;
2528                                 AnchorStyles    anchor;
2529                                 Rectangle       space;
2530
2531                                 space=this.DisplayRectangle;
2532
2533                                 // Deal with docking; go through in reverse, MS docs say that lowest Z-order is closest to edge
2534                                 Control [] controls = child_controls.GetAllControls ();
2535                                 for (int i = controls.Length - 1; i >= 0; i--) {
2536                                         child = controls [i];
2537                                         switch (child.Dock) {
2538                                                 case DockStyle.None: {
2539                                                         // Do nothing
2540                                                         break;
2541                                                 }
2542
2543                                                 case DockStyle.Left: {
2544                                                         child.SetBounds(space.Left, space.Y, child.Width, space.Height);
2545                                                         space.X+=child.Width;
2546                                                         space.Width-=child.Width;
2547                                                         break;
2548                                                 }
2549
2550                                                 case DockStyle.Top: {
2551                                                         child.SetBounds(space.Left, space.Y, space.Width, child.Height);
2552                                                         space.Y+=child.Height;
2553                                                         space.Height-=child.Height;
2554                                                         break;
2555                                                 }
2556                                         
2557                                                 case DockStyle.Right: {
2558                                                         child.SetBounds(space.Right-child.Width, space.Y, child.Width, space.Height);
2559                                                         space.Width-=child.Width;
2560                                                         break;
2561                                                 }
2562
2563                                                 case DockStyle.Bottom: {
2564                                                         child.SetBounds(space.Left, space.Bottom-child.Height, space.Width, child.Height);
2565                                                         space.Height-=child.Height;
2566                                                         break;
2567                                                 }
2568                                         }
2569                                 }
2570
2571                                 for (int i = controls.Length - 1; i >= 0; i--) {
2572                                         child=controls[i];
2573
2574                                         if (child.Dock == DockStyle.Fill) {
2575                                                 child.SetBounds(space.Left, space.Top, space.Width, space.Height);
2576                                                 space.Width=0;
2577                                                 space.Height=0;
2578                                         }
2579                                 }
2580
2581                                 space=this.DisplayRectangle;
2582
2583                                 for (int i=0; i < controls.Length; i++) {
2584                                         int left;
2585                                         int top;
2586                                         int width;
2587                                         int height;
2588
2589                                         child = controls[i];
2590                                         anchor = child.Anchor;
2591
2592                                         left = child.Left;
2593                                         top = child.Top;
2594                                         width = child.Width;
2595                                         height = child.Height;
2596
2597                                         // If the control is docked we don't need to do anything
2598                                         if (child.Dock != DockStyle.None) {
2599                                                 continue;
2600                                         }
2601
2602                                         if ((anchor & AnchorStyles.Left) !=0 ) {
2603                                                 if ((anchor & AnchorStyles.Right) != 0) {
2604                                                         width = client_size.Width - child.dist_right - left;
2605                                                 } else {
2606                                                         ; // Left anchored only, nothing to be done
2607                                                 }
2608                                         } else if ((anchor & AnchorStyles.Right) != 0) {
2609                                                 left = client_size.Width - child.dist_right - width;
2610                                         } else {
2611                                                 // left+=diff_width/2 will introduce rounding errors (diff_width removed from svn after r51780)
2612                                                 // This calculates from scratch every time:
2613                                                 left = child.dist_left + (client_size.Width - (child.dist_left + width + child.dist_right)) / 2;
2614                                         }
2615
2616                                         if ((anchor & AnchorStyles.Top) !=0 ) {
2617                                                 if ((anchor & AnchorStyles.Bottom) != 0) {
2618                                                         height = client_size.Height - child.dist_bottom - top;
2619                                                 } else {
2620                                                         ; // Top anchored only, nothing to be done
2621                                                 }
2622                                         } else if ((anchor & AnchorStyles.Bottom) != 0) {
2623                                                 top = client_size.Height - child.dist_bottom - height;
2624                                         } else {
2625                                                 // top += diff_height/2 will introduce rounding errors (diff_height removed from after r51780)
2626                                                 // This calculates from scratch every time:
2627                                                 top = child.dist_top + (client_size.Height - (child.dist_top + height + child.dist_bottom)) / 2;
2628                                         }
2629                                         
2630                                         // Sanity
2631                                         if (width < 0) {
2632                                                 width=0;
2633                                         }
2634
2635                                         if (height < 0) {
2636                                                 height=0;
2637                                         }
2638
2639                                         child.SetBounds(left, top, width, height);
2640                                 }
2641
2642                                 // Let everyone know
2643                                 OnLayout(levent);
2644                         }
2645
2646                                 // Need to make sure we decremend layout_suspended
2647                         finally {
2648                                 layout_suspended--;
2649                         }
2650                 }
2651
2652                 public Point PointToClient (Point p) {
2653                         int x = p.X;
2654                         int y = p.Y;
2655
2656                         XplatUI.ScreenToClient (Handle, ref x, ref y);
2657
2658                         return new Point (x, y);
2659                 }
2660
2661                 public Point PointToScreen(Point p) {
2662                         int x = p.X;
2663                         int y = p.Y;
2664
2665                         XplatUI.ClientToScreen(Handle, ref x, ref y);
2666
2667                         return new Point(x, y);
2668                 }
2669
2670                 public virtual bool PreProcessMessage(ref Message msg) {
2671                         Keys key_data;
2672
2673                         if ((msg.Msg == (int)Msg.WM_KEYDOWN) || (msg.Msg == (int)Msg.WM_SYSKEYDOWN)) {
2674                                 key_data = (Keys)msg.WParam.ToInt32() | XplatUI.State.ModifierKeys;
2675
2676                                 if (!ProcessCmdKey(ref msg, key_data)) {
2677                                         if (IsInputKey(key_data)) {
2678                                                 return false;
2679                                         }
2680
2681                                         return ProcessDialogKey(key_data);
2682                                 }
2683
2684                                 return true;
2685                         } else if (msg.Msg == (int)Msg.WM_CHAR) {
2686                                 if (IsInputChar((char)msg.WParam)) {
2687                                         return true;
2688                                 }
2689                         } else if (msg.Msg == (int)Msg.WM_SYSCHAR) {
2690                                 if (IsInputChar((char)msg.WParam)) {
2691                                         return true;
2692                                 }
2693                                 return ProcessDialogChar((char)msg.WParam);
2694                         }
2695                         return false;
2696                 }
2697
2698                 public Rectangle RectangleToClient(Rectangle r) {
2699                         return new Rectangle(PointToClient(r.Location), r.Size);
2700                 }
2701
2702                 public Rectangle RectangleToScreen(Rectangle r) {
2703                         return new Rectangle(PointToScreen(r.Location), r.Size);
2704                 }
2705
2706                 public virtual void Refresh() {                 
2707                         if (IsHandleCreated == true) {
2708
2709                                 Invalidate();
2710                                 XplatUI.UpdateWindow(window.Handle);
2711
2712                                 Control [] controls = child_controls.GetAllControls ();
2713                                 for (int i=0; i < controls.Length; i++) {
2714                                         controls[i].Refresh();
2715                                 }
2716                                 
2717                         }
2718                 }
2719
2720                 [EditorBrowsable(EditorBrowsableState.Never)]
2721                 public virtual void ResetBackColor() {
2722                         background_color = Color.Empty;
2723                 }
2724
2725                 [EditorBrowsable(EditorBrowsableState.Never)]
2726                 [MonoTODO]
2727                 public void ResetBindings() {
2728                         // Do something
2729                 }
2730
2731                 [EditorBrowsable(EditorBrowsableState.Never)]
2732                 public virtual void ResetCursor() {
2733                         cursor = null;
2734                 }
2735
2736                 [EditorBrowsable(EditorBrowsableState.Never)]
2737                 public virtual void ResetFont() {
2738                         font = null;
2739                 }
2740
2741                 [EditorBrowsable(EditorBrowsableState.Never)]
2742                 public virtual void ResetForeColor() {
2743                         foreground_color = Color.Empty;
2744                 }
2745
2746                 [EditorBrowsable(EditorBrowsableState.Never)]
2747                 public void ResetImeMode() {
2748                         ime_mode = DefaultImeMode;
2749                 }
2750
2751                 [EditorBrowsable(EditorBrowsableState.Never)]
2752                 public virtual void ResetRightToLeft() {
2753                         right_to_left = RightToLeft.Inherit;
2754                 }
2755
2756                 public virtual void ResetText() {
2757                         text = String.Empty;
2758                 }
2759
2760                 public void ResumeLayout() {
2761                         ResumeLayout (true);
2762                 }
2763
2764                 public void ResumeLayout(bool performLayout) {
2765                         layout_suspended--;
2766                         
2767                         if (layout_suspended > 0) {
2768                                 return;
2769                         }
2770
2771                         if (performLayout || layout_pending) {
2772                                 PerformLayout();
2773                         }
2774                 }
2775
2776                 public void Scale(float ratio) {
2777                         ScaleCore(ratio, ratio);
2778                 }
2779
2780                 public void Scale(float dx, float dy) {
2781                         ScaleCore(dx, dy);
2782                 }
2783
2784                 public void Select() {
2785                         Select(false, false);
2786                 }
2787
2788                 public bool SelectNextControl(Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap) {
2789                         Control c;
2790                                 
2791                         c = ctl;
2792                         do {
2793                                 c = GetNextControl(c, forward);
2794                                 if (c == null) {
2795                                         if (wrap) {
2796                                                 wrap = false;
2797                                                 continue;
2798                                         }
2799                                         break;
2800                                 }
2801
2802                                 if (c.CanSelect && ((c.parent == ctl.parent) || nested) && (c.tab_stop || !tabStopOnly)) {
2803                                         Select(c);
2804                                         return true;
2805                                 }
2806                         } while (c != ctl);     // If we wrap back to ourselves we stop
2807
2808                         return false;
2809                 }
2810
2811                 public void SendToBack() {
2812                         if ((parent != null) && (parent.child_controls[parent.child_controls.Count-1]!=this)) {
2813                                 if (parent.child_controls.Contains(this)) {
2814                                         parent.child_controls.SetChildIndex(this, parent.child_controls.Count);
2815                                 }
2816                         }
2817
2818                         XplatUI.SetZOrder(this.window.Handle, IntPtr.Zero, false, true);
2819                         if (parent != null) {
2820                                 parent.Refresh();
2821                         }
2822                 }
2823
2824                 public void SetBounds(int x, int y, int width, int height) {
2825                         SetBoundsCore(x, y, width, height, BoundsSpecified.All);
2826                 }
2827
2828                 public void SetBounds(int x, int y, int width, int height, BoundsSpecified specified) {
2829                         SetBoundsCore(x, y, width, height, specified);
2830                 }
2831
2832                 public void Show() {
2833                         if (!IsHandleCreated) {
2834                                 this.CreateControl();
2835                         }
2836
2837                         this.Visible=true;
2838                 }
2839
2840                 public void SuspendLayout() {
2841                         layout_suspended++;
2842                 }
2843
2844                 public void Update() {
2845                         needs_redraw = true;
2846                         if (IsHandleCreated) {
2847                                 XplatUI.UpdateWindow(window.Handle);
2848                         }
2849                 }
2850                 #endregion      // Public Instance Methods
2851
2852                 #region Protected Instance Methods
2853                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2854                 [MonoTODO("Implement this and tie it into Control.ControlAccessibleObject.NotifyClients")]
2855                 protected void AccessibilityNotifyClients(AccessibleEvents accEvent, int childID) {
2856                         throw new NotImplementedException();
2857                 }
2858
2859                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2860                 protected virtual AccessibleObject CreateAccessibilityInstance() {
2861                         return new Control.ControlAccessibleObject(this);
2862                 }
2863
2864                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2865                 protected virtual ControlCollection CreateControlsInstance() {
2866                         return new ControlCollection(this);
2867                 }
2868
2869                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2870                 protected virtual void CreateHandle() {
2871                         if (IsDisposed) {
2872                                 throw new ObjectDisposedException(Name);
2873                         }
2874
2875                         if (IsHandleCreated) {
2876                                 return;
2877                         }
2878
2879                         window.CreateHandle(CreateParams);
2880
2881                         if (window.Handle!=IntPtr.Zero) {
2882                                 if (!controls.Contains(window.Handle)) {
2883                                         controls.Add(this);
2884                                 }
2885
2886                                 creator_thread = Thread.CurrentThread;
2887
2888                                 OnHandleCreated(EventArgs.Empty);
2889                         }
2890
2891                         // Find out where the window manager placed us
2892                         UpdateStyles();
2893                         if ((CreateParams.Style & (int)WindowStyles.WS_CHILD) != 0) {
2894                                 XplatUI.SetBorderStyle(window.Handle, (FormBorderStyle)border_style);
2895                         }
2896                         UpdateBounds();
2897                 }
2898
2899                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2900                 protected virtual void DefWndProc(ref Message m) {
2901                         window.DefWndProc(ref m);
2902                 }
2903
2904                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2905                 protected virtual void DestroyHandle() {
2906                         if (IsHandleCreated) {
2907                                 // Destroy our children before we destroy ourselves, to prevent them from
2908                                 // being implictly (without us knowing) destroyed
2909                                 Control [] controls = child_controls.GetAllControls ();
2910                                 for (int i=0; i < controls.Length; i++) {
2911                                         controls[i].DestroyHandle();
2912                                 }
2913
2914
2915                                 if (window != null) {
2916                                         window.DestroyHandle();
2917                                 }
2918                                 OnHandleDestroyed(EventArgs.Empty);
2919                         }
2920                 }
2921
2922                 protected bool GetStyle(ControlStyles flag) {
2923                         return (control_style & flag) != 0;
2924                 }
2925
2926                 protected bool GetTopLevel() {
2927                         return is_toplevel;
2928                 }
2929
2930                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2931                 protected virtual void InitLayout() {
2932                         dist_left = bounds.X;
2933                         dist_top = bounds.Y;
2934                         if (parent != null) {
2935                                 dist_right = parent.ClientSize.Width - bounds.X - bounds.Width;
2936                                 dist_bottom = parent.ClientSize.Height - bounds.Y - bounds.Height;
2937                         }
2938                 }
2939
2940                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2941                 protected void InvokeGotFocus(Control toInvoke, EventArgs e) {
2942                         toInvoke.OnGotFocus(e);
2943                 }
2944
2945                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2946                 protected void InvokeLostFocus(Control toInvoke, EventArgs e) {
2947                         toInvoke.OnLostFocus(e);
2948                 }
2949
2950                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2951                 protected void InvokeOnClick(Control toInvoke, EventArgs e) {
2952                         toInvoke.OnClick(e);
2953                 }
2954
2955                 protected void InvokePaint(Control toInvoke, PaintEventArgs e) {
2956                         toInvoke.OnPaint(e);
2957                 }
2958
2959                 protected void InvokePaintBackground(Control toInvoke, PaintEventArgs e) {
2960                         toInvoke.OnPaintBackground(e);
2961                 }
2962
2963                 protected virtual bool IsInputChar (char charCode) {
2964                         if (parent != null) {
2965                                 return parent.IsInputChar(charCode);
2966                         }
2967
2968                         return false;
2969                 }
2970
2971                 protected virtual bool IsInputKey (Keys keyData) {
2972                         // Doc says this one calls IsInputChar; not sure what to do with that
2973                         return false;
2974                 }
2975
2976                 [EditorBrowsable(EditorBrowsableState.Advanced)]
2977                 protected virtual void NotifyInvalidate(Rectangle invalidatedArea) {
2978                         // override me?
2979                 }
2980
2981                 protected virtual bool ProcessCmdKey(ref Message msg, Keys keyData) {
2982                         if ((context_menu != null) && context_menu.ProcessCmdKey(ref msg, keyData)) {
2983                                 return true;
2984                         }
2985
2986                         if (parent != null) {
2987                                 return parent.ProcessCmdKey(ref msg, keyData);
2988                         }
2989
2990                         return false;
2991                 }
2992
2993                 protected virtual bool ProcessDialogChar(char charCode) {
2994                         if (parent != null) {
2995                                 return parent.ProcessDialogChar (charCode);
2996                         }
2997
2998                         return false;
2999                 }
3000
3001                 protected virtual bool ProcessDialogKey (Keys keyData) {
3002                         if (parent != null) {
3003                                 return parent.ProcessDialogKey (keyData);
3004                         }
3005
3006                         return false;
3007                 }
3008
3009                 protected virtual bool ProcessKeyEventArgs (ref Message msg)
3010                 {
3011                         KeyEventArgs            key_event;
3012
3013                         switch (msg.Msg) {
3014                                 case (int)Msg.WM_SYSKEYDOWN:
3015                                 case (int)Msg.WM_KEYDOWN: {
3016                                         key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
3017                                         OnKeyDown (key_event);
3018                                         return key_event.Handled;
3019                                 }
3020
3021                                 case (int)Msg.WM_SYSKEYUP:
3022                                 case (int)Msg.WM_KEYUP: {
3023                                         key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
3024                                         OnKeyUp (key_event);
3025                                         return key_event.Handled;
3026                                 }
3027
3028                                 case (int)Msg.WM_SYSCHAR:
3029                                 case (int)Msg.WM_CHAR: {
3030                                         KeyPressEventArgs       key_press_event;
3031
3032                                         key_press_event = new KeyPressEventArgs((char)msg.WParam);
3033                                         OnKeyPress(key_press_event);
3034                                         return key_press_event.Handled;
3035                                 }
3036
3037                                 default: {
3038                                         break;
3039                                 }
3040                         }
3041
3042                         return false;
3043                 }
3044
3045                 protected internal virtual bool ProcessKeyMessage(ref Message msg) {
3046                         if (parent != null) {
3047                                 if (parent.ProcessKeyPreview(ref msg)) {
3048                                         return true;
3049                                 }
3050                         }
3051
3052                         return false;
3053                 }
3054
3055                 protected virtual bool ProcessKeyPreview(ref Message msg) {
3056                         if (parent != null) {
3057                                 return parent.ProcessKeyPreview(ref msg);
3058                         }
3059
3060                         return false;
3061                 }
3062
3063                 protected virtual bool ProcessMnemonic(char charCode) {
3064                         // override me
3065                         return false;
3066                 }
3067
3068                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3069                 protected void RaiseDragEvent(object key, DragEventArgs e) {
3070                         // MS Internal
3071                 }
3072
3073                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3074                 protected void RaiseKeyEvent(object key, KeyEventArgs e) {
3075                         // MS Internal
3076                 }
3077
3078                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3079                 protected void RaiseMouseEvent(object key, MouseEventArgs e) {
3080                         // MS Internal
3081                 }
3082
3083                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3084                 protected void RaisePaintEvent(object key, PaintEventArgs e) {
3085                         // MS Internal
3086                 }
3087
3088                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3089                 protected void RecreateHandle() {
3090                         IEnumerator child = child_controls.GetAllEnumerator();
3091
3092                         is_recreating=true;
3093
3094                         if (IsHandleCreated) {
3095                                 DestroyHandle();
3096                                 CreateHandle();
3097
3098                                 // FIXME ZOrder?
3099
3100                                 while (child.MoveNext()) {
3101                                         ((Control)child.Current).RecreateHandle();
3102                                 }
3103                         } else {
3104                                 CreateControl();
3105                         }
3106
3107                         is_recreating = false;
3108                 }
3109
3110                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3111                 protected void ResetMouseEventArgs() {
3112                         // MS Internal
3113                 }
3114
3115                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3116                 protected ContentAlignment RtlTranslateAlignment(ContentAlignment align) {
3117                         if (right_to_left == RightToLeft.No) {
3118                                 return align;
3119                         }
3120
3121                         switch (align) {
3122                                 case ContentAlignment.TopLeft: {
3123                                         return ContentAlignment.TopRight;
3124                                 }
3125
3126                                 case ContentAlignment.TopRight: {
3127                                         return ContentAlignment.TopLeft;
3128                                 }
3129
3130                                 case ContentAlignment.MiddleLeft: {
3131                                         return ContentAlignment.MiddleRight;
3132                                 }
3133
3134                                 case ContentAlignment.MiddleRight: {
3135                                         return ContentAlignment.MiddleLeft;
3136                                 }
3137
3138                                 case ContentAlignment.BottomLeft: {
3139                                         return ContentAlignment.BottomRight;
3140                                 }
3141
3142                                 case ContentAlignment.BottomRight: {
3143                                         return ContentAlignment.BottomLeft;
3144                                 }
3145
3146                                 default: {
3147                                         // if it's center it doesn't change
3148                                         return align;
3149                                 }
3150                         }
3151                 }
3152
3153                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3154                 protected HorizontalAlignment RtlTranslateAlignment(HorizontalAlignment align) {
3155                         if ((right_to_left == RightToLeft.No) || (align == HorizontalAlignment.Center)) {
3156                                 return align;
3157                         }
3158
3159                         if (align == HorizontalAlignment.Left) {
3160                                 return HorizontalAlignment.Right;
3161                         }
3162
3163                         // align must be HorizontalAlignment.Right
3164                         return HorizontalAlignment.Left;
3165                 }
3166
3167                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3168                 protected LeftRightAlignment RtlTranslateAlignment(LeftRightAlignment align) {
3169                         if (right_to_left == RightToLeft.No) {
3170                                 return align;
3171                         }
3172
3173                         if (align == LeftRightAlignment.Left) {
3174                                 return LeftRightAlignment.Right;
3175                         }
3176
3177                         // align must be LeftRightAlignment.Right;
3178                         return LeftRightAlignment.Left;
3179                 }
3180
3181                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3182                 protected ContentAlignment RtlTranslateContent(ContentAlignment align) {
3183                         return RtlTranslateAlignment(align);
3184                 }
3185
3186                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3187                 protected HorizontalAlignment RtlTranslateHorizontal(HorizontalAlignment align) {
3188                         return RtlTranslateAlignment(align);
3189                 }
3190
3191                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3192                 protected LeftRightAlignment RtlTranslateLeftRight(LeftRightAlignment align) {
3193                         return RtlTranslateAlignment(align);
3194                 }
3195
3196                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3197                 protected virtual void ScaleCore(float dx, float dy) {
3198                         Point   location;
3199                         Size    size;
3200
3201                         SuspendLayout();
3202
3203                         location = new Point((int)(Left * dx), (int)(Top * dy));
3204                         size = this.ClientSize;
3205                         
3206
3207                         if (!GetStyle(ControlStyles.FixedWidth)) {
3208                                 size.Width = (int)(size.Width * dx);
3209                         }
3210
3211                         if (!GetStyle(ControlStyles.FixedHeight)) {
3212                                 size.Height = (int)(size.Height * dy);
3213                         }
3214
3215                         Location = location;
3216                         ClientSize = size;
3217
3218                         /* Now scale our children */
3219                         Control [] controls = child_controls.GetAllControls ();
3220                         for (int i=0; i < controls.Length; i++) {
3221                                 controls[i].Scale(dx, dy);
3222                         }
3223
3224                         ResumeLayout();
3225                 }
3226
3227                 protected virtual void Select(bool directed, bool forward) {
3228                         int     index;
3229                         bool    result;
3230
3231                         if (!directed) {
3232                                 // Select this control
3233                                 Select(this);
3234                                 return;
3235                         }
3236
3237                         if (parent == null) {
3238                                 return;
3239                         }
3240
3241                         // FIXME - this thing is doing the wrong stuff, needs to be similar to SelectNextControl
3242
3243                         index = parent.child_controls.IndexOf(this);
3244                         result = false;
3245
3246                         do {
3247                                 if (forward) {
3248                                         if ((index+1) < parent.child_controls.Count) {
3249                                                 index++;
3250                                         } else {
3251                                                 index = 0;
3252                                         }
3253                                 } else {
3254                                         if (index>0) {
3255                                                 index++;
3256                                         } else {
3257                                                 index = parent.child_controls.Count-1;
3258                                         }
3259                                 }
3260                                 result = Select(parent.child_controls[index]);
3261                         } while (!result && parent.child_controls[index] != this);
3262                 }
3263
3264                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3265                 protected virtual void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
3266                         // SetBoundsCore updates the Win32 control itself. UpdateBounds updates the controls variables and fires events, I'm guessing - pdb
3267                         if ((specified & BoundsSpecified.X) != BoundsSpecified.X) {
3268                                 x = Left;
3269                         }
3270
3271                         if ((specified & BoundsSpecified.Y) != BoundsSpecified.Y) {
3272                                 y = Top;
3273                         }
3274
3275                         if ((specified & BoundsSpecified.Width) != BoundsSpecified.Width) {
3276                                 width = Width;
3277                         }
3278
3279                         if ((specified & BoundsSpecified.Height) != BoundsSpecified.Height) {
3280                                 height = Height;
3281                         }
3282
3283                         if (IsHandleCreated) {
3284                                 XplatUI.SetWindowPos(Handle, x, y, width, height);
3285                         }
3286
3287                         UpdateBounds(x, y, width, height);
3288
3289                         // 
3290                         Control [] controls = child_controls.GetAllControls ();
3291                         for (int i = controls.Length - 1; i >= 0; i--) {
3292                                 controls[i].InitLayout();
3293                         }
3294                 }
3295
3296                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3297                 protected virtual void SetClientSizeCore(int x, int y) {
3298                         // Calculate the actual window size from the client size (it usually stays the same or grows)
3299                         Rectangle       ClientRect;
3300                         Rectangle       WindowRect;
3301                         CreateParams    cp;
3302
3303                         ClientRect = new Rectangle(0, 0, x, y);
3304                         cp = this.CreateParams;
3305
3306                         if (XplatUI.CalculateWindowRect(Handle, ref ClientRect, cp.Style, cp.ExStyle, null, out WindowRect)==false) {
3307                                 return;
3308                         }
3309
3310                         SetBoundsCore(bounds.X, bounds.Y, WindowRect.Width, WindowRect.Height, BoundsSpecified.Size);
3311                 }
3312
3313                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3314                 protected void SetStyle(ControlStyles flag, bool value) {
3315                         if (value) {
3316                                 control_style |= flag;
3317                         } else {
3318                                 control_style &= ~flag;
3319                         }
3320                         OnStyleChanged(EventArgs.Empty);
3321                 }
3322
3323                 protected void SetTopLevel(bool value) {
3324                         if ((GetTopLevel() != value) && (parent != null)) {
3325                                 throw new Exception();
3326                         }
3327
3328                         if (this is Form) {
3329                                 if (value == true) {
3330                                         if (!Visible) {
3331                                                 Visible = true;
3332                                         }
3333                                 } else {
3334                                         if (Visible) {
3335                                                 Visible = false;
3336                                         }
3337                                 }
3338                         }
3339                         is_toplevel = value;
3340                 }
3341
3342                 protected virtual void SetVisibleCore(bool value) {
3343                         if (value!=is_visible) {
3344                                 is_visible=value;
3345
3346                                 if (IsHandleCreated) {
3347                                         XplatUI.SetVisible(Handle, value);
3348                                         // Explicitly move Toplevel windows to where we want them;
3349                                         // apparently moving unmapped toplevel windows doesn't work
3350                                         if (is_visible && (this is Form)) {
3351                                                 XplatUI.SetWindowPos(window.Handle, bounds.X, bounds.Y, bounds.Width, bounds.Height);
3352                                         }
3353                                 }
3354
3355                                 OnVisibleChanged(EventArgs.Empty);
3356
3357                                 if (!is_visible) {
3358                                         if (dc_mem != null) {
3359                                                 dc_mem.Dispose();
3360                                                 dc_mem = null;
3361                                         }
3362
3363                                         if (bmp_mem != null) {
3364                                                 bmp_mem.Dispose();
3365                                                 bmp_mem = null;
3366                                         }
3367                                 } else {
3368                                         this.CreateBuffers(bounds.Width, bounds.Height);
3369                                         CreateControl();
3370                                 }
3371
3372                                 if (value == false && parent != null) {
3373                                         Control container;
3374
3375                                         // Need to start at parent, GetContainerControl might return ourselves if we're a container
3376                                         container = (Control)parent.GetContainerControl();
3377                                         if (container != null) {
3378                                                 container.SelectNextControl(this, true, true, true, true);
3379                                         }
3380                                 }
3381
3382                                 if (parent != null) {
3383                                         parent.PerformLayout(this, "visible");
3384                                 } else {
3385                                         PerformLayout(this, "visible");
3386                                 }
3387                         }
3388                 }
3389         
3390                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3391                 protected void UpdateBounds() {
3392                         int     x;
3393                         int     y;
3394                         int     width;
3395                         int     height;
3396                         int     client_width;
3397                         int     client_height;
3398
3399                         if (!IsHandleCreated) {
3400                                 CreateHandle();
3401                         }
3402
3403                         XplatUI.GetWindowPos(this.Handle, this is Form, out x, out y, out width, out height, out client_width, out client_height);
3404
3405                         UpdateBounds(x, y, width, height, client_width, client_height);
3406                 }
3407
3408                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3409                 protected void UpdateBounds(int x, int y, int width, int height) {
3410                         // UpdateBounds only seems to set our sizes and fire events but not update the GUI window to match
3411                         bool    moved   = false;
3412                         bool    resized = false;
3413
3414                         int     client_x_diff = this.bounds.Width-this.client_size.Width;
3415                         int     client_y_diff = this.bounds.Height-this.client_size.Height;
3416
3417                         // Needed to generate required notifications
3418                         if ((this.bounds.X!=x) || (this.bounds.Y!=y)) {
3419                                 moved=true;
3420                         }
3421
3422                         if ((this.Bounds.Width!=width) || (this.Bounds.Height!=height)) {
3423                                 resized=true;
3424                         }
3425
3426                         bounds.X=x;
3427                         bounds.Y=y;
3428                         bounds.Width=width;
3429                         bounds.Height=height;
3430
3431                         // Update client rectangle as well
3432                         client_size.Width=width-client_x_diff;
3433                         client_size.Height=height-client_y_diff;
3434
3435                         if (moved) {
3436                                 OnLocationChanged(EventArgs.Empty);
3437                         }
3438
3439                         if (resized) {
3440                                 OnSizeChanged(EventArgs.Empty);
3441                         }
3442                 }
3443
3444                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3445                 protected void UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight) {
3446                         UpdateBounds(x, y, width, height);
3447
3448                         this.client_size.Width=clientWidth;
3449                         this.client_size.Height=clientHeight;
3450                 }
3451
3452                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3453                 protected void UpdateStyles() {
3454                         if (!IsHandleCreated) {
3455                                 return;
3456                         }
3457
3458                         XplatUI.SetWindowStyle(window.Handle, CreateParams);
3459                 }
3460
3461                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3462                 protected void UpdateZOrder() {
3463                         Control [] controls;
3464 #if not
3465                         Control ctl;
3466
3467                         if (parent == null) {
3468                                 return;
3469                         }
3470
3471                         ctl = parent;
3472
3473                         controls = ctl.child_controls.GetAllControls ();
3474                         for (int i = 1; i < controls.Length; i++ ) {
3475                                 XplatUI.SetZOrder(controls[i].window.Handle, controls[i-1].window.Handle, false, false); 
3476                         }
3477 #else
3478                         if (!IsHandleCreated) {
3479                                 return;
3480                         }
3481
3482                         controls = child_controls.GetAllControls ();
3483                         for (int i = 1; i < controls.Length; i++ ) {
3484                                 XplatUI.SetZOrder(controls[i].Handle, controls[i-1].Handle, false, false); 
3485                         }
3486 #endif
3487                 }
3488
3489                 protected virtual void WndProc(ref Message m) {
3490 #if debug
3491                         Console.WriteLine("Control received message {0}", (Msg)m.Msg);
3492 #endif
3493                         if ((this.control_style & ControlStyles.EnableNotifyMessage) != 0) {
3494                                 OnNotifyMessage(m);
3495                         }
3496
3497                         switch((Msg)m.Msg) {
3498                                 case Msg.WM_WINDOWPOSCHANGED: {
3499                                         if (Visible) {
3500                                                 UpdateBounds();
3501                                                 if (GetStyle(ControlStyles.ResizeRedraw)) {
3502                                                         Invalidate();
3503                                                 }
3504                                         }
3505                                         return;
3506                                 }
3507
3508                                 case Msg.WM_PAINT: {                            
3509                                         PaintEventArgs  paint_event;
3510
3511                                         paint_event = XplatUI.PaintEventStart(Handle, true);
3512
3513                                         if (!needs_redraw) {
3514                                                 // Just blit the previous image
3515                                                 paint_event.Graphics.DrawImage (ImageBuffer, paint_event.ClipRectangle, paint_event.ClipRectangle, GraphicsUnit.Pixel);
3516                                                 XplatUI.PaintEventEnd(Handle, true);
3517                                                 return;
3518                                         }
3519
3520                                         Graphics dc = null;
3521                                         if ((control_style & ControlStyles.DoubleBuffer) != 0) {
3522                                                 dc = paint_event.SetGraphics (DeviceContext);
3523                                         }
3524
3525                                         OnPaintBackground(paint_event);
3526                                         // Leave out for now, our controls can do Paint += ... as well
3527                                         //OnPaintInternal(paint_event);
3528                                         OnPaint(paint_event);
3529
3530                                         if ((control_style & ControlStyles.DoubleBuffer) != 0) {
3531                                                 dc.DrawImage (ImageBuffer, paint_event.ClipRectangle, paint_event.ClipRectangle, GraphicsUnit.Pixel);
3532                                                 paint_event.SetGraphics (dc);
3533                                                 needs_redraw = false;
3534                                         }
3535
3536                                         XplatUI.PaintEventEnd(Handle, true);
3537
3538                                         return;
3539                                 }
3540                                         
3541                                 case Msg.WM_ERASEBKGND: {
3542                                         // The DefWndProc will never have to handle this, we always paint the background in managed code
3543                                         m.Result = (IntPtr)1;
3544                                         return;
3545                                 }
3546
3547                                 case Msg.WM_LBUTTONUP: {
3548                                         OnMouseUp (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Left, 
3549                                                 mouse_clicks, 
3550                                                 LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3551                                                 0));
3552                                         HandleClick(mouse_clicks);
3553                                         if (mouse_clicks > 1) {
3554                                                 mouse_clicks = 1;
3555                                         }
3556                                         return;
3557                                 }
3558                                         
3559                                 case Msg.WM_LBUTTONDOWN: {
3560                                         if (CanSelect && !is_selected) {
3561                                                 Select(this);
3562                                         }
3563                                         OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3564                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3565                                                 0));
3566                                                 
3567                                         return;
3568                                 }
3569
3570                                 case Msg.WM_LBUTTONDBLCLK: {
3571                                         mouse_clicks++;
3572                                         OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3573                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3574                                                 0));
3575
3576                                         return;
3577                                 }
3578
3579                                 case Msg.WM_MBUTTONUP: {
3580                                         HandleClick(mouse_clicks);
3581                                         OnMouseUp (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Middle, 
3582                                                 mouse_clicks, 
3583                                                 LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3584                                                 0));
3585                                         if (mouse_clicks > 1) {
3586                                                 mouse_clicks = 1;
3587                                         }
3588                                         return;
3589                                 }
3590                                         
3591                                 case Msg.WM_MBUTTONDOWN: {                                      
3592                                         OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3593                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3594                                                 0));
3595                                                 
3596                                         return;
3597                                 }
3598
3599                                 case Msg.WM_MBUTTONDBLCLK: {
3600                                         mouse_clicks++;
3601                                         OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3602                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3603                                                 0));
3604                                         return;
3605                                 }
3606
3607                                 case Msg.WM_RBUTTONUP: {
3608                                         if (context_menu != null) {
3609                                                 context_menu.Show(this, new Point(LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ())));
3610                                         }
3611
3612                                         HandleClick(mouse_clicks);
3613                                         OnMouseUp (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Right, 
3614                                                 mouse_clicks, 
3615                                                 LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3616                                                 0));
3617                                         if (mouse_clicks > 1) {
3618                                                 mouse_clicks = 1;
3619                                         }
3620                                         return;
3621                                 }
3622                                         
3623                                 case Msg.WM_RBUTTONDOWN: {                                      
3624                                         OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3625                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3626                                                 0));
3627                                         return;
3628                                 }
3629
3630                                 case Msg.WM_RBUTTONDBLCLK: {
3631                                         mouse_clicks++;
3632                                         OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3633                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3634                                                 0));
3635                                         return;
3636                                 }
3637
3638                                 case Msg.WM_MOUSEWHEEL: {                               
3639
3640                                         OnMouseWheel (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3641                                                 mouse_clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3642                                                 HighOrder(m.WParam.ToInt32())));
3643                                         return;
3644                                 }
3645
3646                                         
3647                                 case Msg.WM_MOUSEMOVE: {                                        
3648                                         OnMouseMove  (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()), 
3649                                                 mouse_clicks, 
3650                                                 LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()), 
3651                                                 0));
3652                                         return;
3653                                 }
3654
3655                                 case Msg.WM_MOUSE_ENTER: {
3656                                         if (is_entered) {
3657                                                 return;
3658                                         }
3659                                         is_entered = true;
3660                                         OnMouseEnter(EventArgs.Empty);
3661                                         return;
3662                                 }
3663
3664                                 case Msg.WM_MOUSE_LEAVE: {
3665                                         is_entered=false;
3666                                         OnMouseLeave(EventArgs.Empty);
3667                                         return;
3668                                 }
3669
3670                                 case Msg.WM_MOUSEHOVER: {
3671                                         OnMouseHover(EventArgs.Empty);
3672                                         return;
3673                                 }
3674
3675                                 case Msg.WM_SYSKEYDOWN:
3676                                 case Msg.WM_KEYDOWN:
3677                                 case Msg.WM_SYSKEYUP:
3678                                 case Msg.WM_KEYUP:
3679                                 case Msg.WM_SYSCHAR:
3680                                 case Msg.WM_CHAR: {
3681                                         if (PreProcessMessage(ref m)) {
3682                                                 return;
3683                                         }
3684
3685                                         if (ProcessKeyMessage(ref m)) {
3686                                                 return;
3687                                         }
3688
3689                                         if (ProcessKeyEventArgs(ref m)) {
3690                                                 return;
3691                                         }
3692
3693                                         DefWndProc (ref m);
3694                                         return;
3695                                 }
3696
3697                                 case Msg.WM_HELP: {
3698                                         Point   mouse_pos;
3699                                         if (m.LParam != IntPtr.Zero) {
3700                                                 HELPINFO        hi;
3701
3702                                                 hi = new HELPINFO();
3703
3704                                                 hi = (HELPINFO) Marshal.PtrToStructure (m.LParam, typeof (HELPINFO));
3705                                                 mouse_pos = new Point(hi.MousePos.x, hi.MousePos.y);
3706                                         } else {
3707                                                 mouse_pos = Control.MousePosition;
3708                                         }
3709                                         OnHelpRequested(new HelpEventArgs(mouse_pos));
3710                                         m.Result = (IntPtr)1;
3711                                         return;
3712                                 }
3713
3714                                 case Msg.WM_KILLFOCUS: {
3715                                         OnLeave(EventArgs.Empty);
3716                                         if (CausesValidation) {
3717                                                 CancelEventArgs e;
3718                                                 e = new CancelEventArgs(false);
3719
3720                                                 OnValidating(e);
3721
3722                                                 if (e.Cancel) {
3723                                                         Focus();
3724                                                         return;
3725                                                 }
3726
3727                                                 OnValidated(EventArgs.Empty);
3728                                         }
3729
3730                                         this.has_focus = false;
3731                                         this.is_selected = false;
3732                                         OnLostFocus(EventArgs.Empty);
3733                                         return;
3734                                 }
3735
3736                                 case Msg.WM_SETFOCUS: {
3737                                         OnEnter(EventArgs.Empty);
3738                                         this.has_focus = true;
3739                                         OnGotFocus(EventArgs.Empty);
3740                                         return;
3741                                 }
3742                                         
3743
3744                                 case Msg.WM_SYSCOLORCHANGE: {
3745                                         ThemeEngine.Current.ResetDefaults();
3746                                         OnSystemColorsChanged(EventArgs.Empty);
3747                                         return;
3748                                 }
3749                                         
3750
3751                                 case Msg.WM_SETCURSOR: {
3752                                         if (cursor == null) {
3753                                                 DefWndProc(ref m);
3754                                                 return;
3755                                         }
3756
3757                                         XplatUI.SetCursor(window.Handle, cursor.handle);
3758                                         m.Result = (IntPtr)1;
3759
3760                                         return;
3761                                 }
3762
3763                                 default: {
3764                                         DefWndProc(ref m);      
3765                                         return;
3766                                 }
3767                         }
3768                 }
3769                 #endregion      // Public Instance Methods
3770
3771                 #region OnXXX methods
3772                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3773                 protected virtual void OnBackColorChanged(EventArgs e) {
3774                         if (BackColorChanged!=null) BackColorChanged(this, e);
3775                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackColorChanged(e);
3776                 }
3777
3778                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3779                 protected virtual void OnBackgroundImageChanged(EventArgs e) {
3780                         if (BackgroundImageChanged!=null) BackgroundImageChanged(this, e);
3781                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackgroundImageChanged(e);
3782                 }
3783
3784                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3785                 protected virtual void OnBindingContextChanged(EventArgs e) {
3786                         CheckDataBindings ();
3787                         if (BindingContextChanged!=null) {
3788                                 BindingContextChanged(this, e);
3789                         }
3790                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBindingContextChanged(e);
3791                 }
3792
3793                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3794                 protected virtual void OnCausesValidationChanged(EventArgs e) {
3795                         if (CausesValidationChanged!=null) CausesValidationChanged(this, e);
3796                 }
3797
3798                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3799                 protected virtual void OnChangeUICues(UICuesEventArgs e) {
3800                         if (ChangeUICues!=null) ChangeUICues(this, e);
3801                 }
3802
3803                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3804                 protected virtual void OnClick(EventArgs e) {
3805                         if (Click!=null) Click(this, e);
3806                 }
3807
3808                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3809                 protected virtual void OnContextMenuChanged(EventArgs e) {
3810                         if (ContextMenuChanged!=null) ContextMenuChanged(this, e);
3811                 }
3812
3813                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3814                 protected virtual void OnControlAdded(ControlEventArgs e) {
3815                         if (ControlAdded!=null) ControlAdded(this, e);
3816                 }
3817
3818                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3819                 protected virtual void OnControlRemoved(ControlEventArgs e) {
3820                         if (ControlRemoved!=null) ControlRemoved(this, e);
3821                 }
3822
3823                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3824                 protected virtual void OnCreateControl() {
3825                         // Override me!
3826                 }
3827
3828                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3829                 protected virtual void OnCursorChanged(EventArgs e) {
3830                         if (CursorChanged!=null) CursorChanged(this, e);
3831                 }
3832
3833                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3834                 protected virtual void OnDockChanged(EventArgs e) {
3835                         if (DockChanged!=null) DockChanged(this, e);
3836                 }
3837
3838                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3839                 protected virtual void OnDoubleClick(EventArgs e) {
3840                         if (DoubleClick!=null) DoubleClick(this, e);
3841                 }
3842
3843                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3844                 protected virtual void OnDragDrop(DragEventArgs drgevent) {
3845                         if (DragDrop!=null) DragDrop(this, drgevent);
3846                 }
3847
3848                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3849                 protected virtual void OnDragEnter(DragEventArgs drgevent) {
3850                         if (DragEnter!=null) DragEnter(this, drgevent);
3851                 }
3852
3853                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3854                 protected virtual void OnDragLeave(EventArgs e) {
3855                         if (DragLeave!=null) DragLeave(this, e);
3856                 }
3857
3858                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3859                 protected virtual void OnDragOver(DragEventArgs drgevent) {
3860                         if (DragOver!=null) DragOver(this, drgevent);
3861                 }
3862
3863                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3864                 protected virtual void OnEnabledChanged(EventArgs e) {
3865                         if (EnabledChanged!=null) EnabledChanged(this, e);
3866                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentEnabledChanged(e);
3867                 }
3868
3869                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3870                 protected virtual void OnEnter(EventArgs e) {
3871                         if (Enter!=null) Enter(this, e);
3872                 }
3873
3874                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3875                 protected virtual void OnFontChanged(EventArgs e) {
3876                         if (FontChanged!=null) FontChanged(this, e);
3877                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentFontChanged(e);
3878                 }
3879
3880                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3881                 protected virtual void OnForeColorChanged(EventArgs e) {
3882                         if (ForeColorChanged!=null) ForeColorChanged(this, e);
3883                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentForeColorChanged(e);
3884                 }
3885
3886                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3887                 protected virtual void OnGiveFeedback(GiveFeedbackEventArgs gfbevent) {
3888                         if (GiveFeedback!=null) GiveFeedback(this, gfbevent);
3889                 }
3890                 
3891                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3892                 protected virtual void OnGotFocus(EventArgs e) {
3893                         if (GotFocus!=null) GotFocus(this, e);
3894                 }
3895
3896                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3897                 protected virtual void OnHandleCreated(EventArgs e) {
3898                         if (HandleCreated!=null) HandleCreated(this, e);
3899                 }
3900
3901                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3902                 protected virtual void OnHandleDestroyed(EventArgs e) {
3903                         if (HandleDestroyed!=null) HandleDestroyed(this, e);
3904                 }
3905
3906                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3907                 protected virtual void OnHelpRequested(HelpEventArgs hevent) {
3908                         if (HelpRequested!=null) HelpRequested(this, hevent);
3909                 }
3910
3911                 protected virtual void OnImeModeChanged(EventArgs e) {
3912                         if (ImeModeChanged!=null) ImeModeChanged(this, e);
3913                 }
3914
3915                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3916                 protected virtual void OnInvalidated(InvalidateEventArgs e) {
3917                         needs_redraw = true;
3918                         if (Invalidated!=null) Invalidated(this, e);
3919                 }
3920
3921                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3922                 protected virtual void OnKeyDown(KeyEventArgs e) {                      
3923                         if (KeyDown!=null) KeyDown(this, e);
3924                 }
3925
3926                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3927                 protected virtual void OnKeyPress(KeyPressEventArgs e) {
3928                         if (KeyPress!=null) KeyPress(this, e);
3929                 }
3930
3931                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3932                 protected virtual void OnKeyUp(KeyEventArgs e) {
3933                         if (KeyUp!=null) KeyUp(this, e);
3934                 }
3935
3936                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3937                 protected virtual void OnLayout(LayoutEventArgs levent) {
3938                         if (Layout!=null) Layout(this, levent);
3939                 }
3940
3941                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3942                 protected virtual void OnLeave(EventArgs e) {
3943                         if (Leave!=null) Leave(this, e);
3944                 }
3945
3946                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3947                 protected virtual void OnLocationChanged(EventArgs e) {
3948                         OnMove(e);
3949                         if (LocationChanged!=null) LocationChanged(this, e);
3950                 }
3951
3952                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3953                 protected virtual void OnLostFocus(EventArgs e) {
3954                         if (LostFocus!=null) LostFocus(this, e);
3955                 }
3956
3957                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3958                 protected virtual void OnMouseDown(MouseEventArgs e) {
3959                         if (MouseDown!=null) MouseDown(this, e);
3960                 }
3961
3962                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3963                 protected virtual void OnMouseEnter(EventArgs e) {
3964                         if (MouseEnter!=null) MouseEnter(this, e);
3965                 }
3966
3967                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3968                 protected virtual void OnMouseHover(EventArgs e) {
3969                         if (MouseHover!=null) MouseHover(this, e);
3970                 }
3971
3972                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3973                 protected virtual void OnMouseLeave(EventArgs e) {
3974                         if (MouseLeave!=null) MouseLeave(this, e);
3975                 }
3976
3977                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3978                 protected virtual void OnMouseMove(MouseEventArgs e) {                  
3979                         if (MouseMove!=null) MouseMove(this, e);
3980                 }
3981
3982                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3983                 protected virtual void OnMouseUp(MouseEventArgs e) {
3984                         if (MouseUp!=null) MouseUp(this, e);
3985                 }
3986
3987                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3988                 protected virtual void OnMouseWheel(MouseEventArgs e) {
3989                         if (MouseWheel!=null) MouseWheel(this, e);
3990                 }
3991
3992                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3993                 protected virtual void OnMove(EventArgs e) {
3994                         if (Move!=null) Move(this, e);
3995                 }
3996
3997                 [EditorBrowsable(EditorBrowsableState.Advanced)]
3998                 protected virtual void OnNotifyMessage(Message m) {
3999                         // Override me!
4000                 }
4001
4002                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4003                 protected virtual void OnPaint(PaintEventArgs e) {
4004                         if (Paint!=null) Paint(this, e);
4005                 }
4006
4007                 internal virtual void OnPaintInternal(PaintEventArgs e) {
4008                         // Override me
4009                 }
4010
4011                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4012                 protected virtual void OnPaintBackground(PaintEventArgs pevent) {
4013                         PaintControlBackground (pevent);
4014                 }
4015
4016                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4017                 protected virtual void OnParentBackColorChanged(EventArgs e) {
4018                         if (background_color.IsEmpty && background_image==null) {
4019                                 Invalidate();
4020                                 OnBackColorChanged(e);
4021                         }
4022                 }
4023
4024                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4025                 protected virtual void OnParentBackgroundImageChanged(EventArgs e) {
4026                         if (background_color.IsEmpty && background_image==null) {
4027                                 Invalidate();
4028                                 OnBackgroundImageChanged(e);
4029                         }
4030                 }
4031
4032                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4033                 protected virtual void OnParentBindingContextChanged(EventArgs e) {
4034                         if (binding_context==null) {
4035                                 binding_context=Parent.binding_context;
4036                                 OnBindingContextChanged(e);
4037                         }
4038                 }
4039
4040                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4041                 protected virtual void OnParentChanged(EventArgs e) {
4042                         if (ParentChanged!=null) ParentChanged(this, e);
4043                 }
4044
4045                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4046                 protected virtual void OnParentEnabledChanged(EventArgs e) {
4047                         if (is_enabled != Parent.is_enabled) {
4048                                 is_enabled=Parent.is_enabled;
4049                                 Invalidate();
4050                                 if (EnabledChanged != null) {
4051                                         EnabledChanged(this, e);
4052                                 }
4053                         }
4054                 }
4055
4056                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4057                 protected virtual void OnParentFontChanged(EventArgs e) {
4058                         if (font==null) {
4059                                 Invalidate();
4060                                 OnFontChanged(e);
4061                         }
4062                 }
4063
4064                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4065                 protected virtual void OnParentForeColorChanged(EventArgs e) {
4066                         if (foreground_color.IsEmpty) {
4067                                 Invalidate();
4068                                 OnForeColorChanged(e);
4069                         }
4070                 }
4071
4072                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4073                 protected virtual void OnParentRightToLeftChanged(EventArgs e) {
4074                         if (right_to_left==RightToLeft.Inherit) {
4075                                 Invalidate();
4076                                 OnRightToLeftChanged(e);
4077                         }
4078                 }
4079
4080                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4081                 protected virtual void OnParentVisibleChanged(EventArgs e) {
4082                         if (is_visible) {
4083                                 OnVisibleChanged(e);
4084                         }
4085                 }
4086
4087                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4088                 protected virtual void OnQueryContinueDrag(QueryContinueDragEventArgs e) {
4089                         if (QueryContinueDrag!=null) QueryContinueDrag(this, e);
4090                 }
4091
4092                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4093                 protected virtual void OnResize(EventArgs e) {
4094                         if (Resize!=null) Resize(this, e);
4095
4096                         PerformLayout(this, "bounds");
4097
4098                         if (parent != null) {
4099                                 parent.PerformLayout();
4100                         }
4101                 }
4102
4103                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4104                 protected virtual void OnRightToLeftChanged(EventArgs e) {
4105                         if (RightToLeftChanged!=null) RightToLeftChanged(this, e);
4106                         for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentRightToLeftChanged(e);
4107                 }
4108
4109                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4110                 protected virtual void OnSizeChanged(EventArgs e) {
4111                         InvalidateBuffers ();
4112                         OnResize(e);
4113                         if (SizeChanged!=null) SizeChanged(this, e);
4114                 }
4115
4116                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4117                 protected virtual void OnStyleChanged(EventArgs e) {
4118                         if (StyleChanged!=null) StyleChanged(this, e);
4119                 }
4120
4121                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4122                 protected virtual void OnSystemColorsChanged(EventArgs e) {
4123                         if (SystemColorsChanged!=null) SystemColorsChanged(this, e);
4124                 }
4125
4126                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4127                 protected virtual void OnTabIndexChanged(EventArgs e) {
4128                         if (TabIndexChanged!=null) TabIndexChanged(this, e);
4129                 }
4130
4131                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4132                 protected virtual void OnTabStopChanged(EventArgs e) {
4133                         if (TabStopChanged!=null) TabStopChanged(this, e);
4134                 }
4135
4136                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4137                 protected virtual void OnTextChanged(EventArgs e) {
4138                         if (TextChanged!=null) TextChanged(this, e);
4139                 }
4140
4141                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4142                 protected virtual void OnValidated(EventArgs e) {
4143                         if (Validated!=null) Validated(this, e);
4144                 }
4145
4146                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4147                 protected virtual void OnValidating(System.ComponentModel.CancelEventArgs e) {
4148                         if (Validating!=null) Validating(this, e);
4149                 }
4150
4151                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4152                 protected virtual void OnVisibleChanged(EventArgs e) {
4153                         if (!is_visible) {
4154                                 if (dc_mem!=null) {
4155                                         dc_mem.Dispose ();
4156                                         dc_mem=null;
4157                                 }
4158
4159                                 if (bmp_mem!=null) {
4160                                         bmp_mem.Dispose();
4161                                         bmp_mem=null;
4162                                 }
4163                         } else {
4164                                 if (!is_disposed) {
4165                                         if (!this.IsHandleCreated) {
4166                                                 this.CreateControl();
4167                                         }
4168                                         PerformLayout();
4169                                 }
4170                         }
4171                         
4172                         if (VisibleChanged!=null) VisibleChanged(this, e);
4173
4174                         // We need to tell our kids
4175                         for (int i=0; i<child_controls.Count; i++) {
4176                                 child_controls[i].OnParentVisibleChanged(e);
4177                         }
4178                 }
4179                 #endregion      // OnXXX methods
4180
4181                 #region Events
4182                 public event EventHandler               BackColorChanged;
4183                 public event EventHandler               BackgroundImageChanged;
4184                 public event EventHandler               BindingContextChanged;
4185                 public event EventHandler               CausesValidationChanged;
4186                 public event UICuesEventHandler         ChangeUICues;
4187                 public event EventHandler               Click;
4188                 public event EventHandler               ContextMenuChanged;
4189
4190                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4191                 [Browsable(false)]
4192                 public event ControlEventHandler        ControlAdded;
4193
4194                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4195                 [Browsable(false)]
4196                 public event ControlEventHandler        ControlRemoved;
4197
4198                 [MWFDescription("Fired when the cursor for the control has been changed"), MWFCategory("PropertyChanged")]
4199                 public event EventHandler               CursorChanged;
4200                 public event EventHandler               DockChanged;
4201                 public event EventHandler               DoubleClick;
4202                 public event DragEventHandler           DragDrop;
4203                 public event DragEventHandler           DragEnter;
4204                 public event EventHandler               DragLeave;
4205                 public event DragEventHandler           DragOver;
4206                 public event EventHandler               EnabledChanged;
4207                 public event EventHandler               Enter;
4208                 public event EventHandler               FontChanged;
4209                 public event EventHandler               ForeColorChanged;
4210                 public event GiveFeedbackEventHandler   GiveFeedback;
4211
4212                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4213                 [Browsable(false)]
4214                 public event EventHandler               GotFocus;
4215
4216                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4217                 [Browsable(false)]
4218                 public event EventHandler               HandleCreated;
4219
4220                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4221                 [Browsable(false)]
4222                 public event EventHandler               HandleDestroyed;
4223
4224                 public event HelpEventHandler           HelpRequested;
4225                 public event EventHandler               ImeModeChanged;
4226
4227                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4228                 [Browsable(false)]
4229                 public event InvalidateEventHandler     Invalidated;
4230
4231                 public event KeyEventHandler            KeyDown;
4232                 public event KeyPressEventHandler       KeyPress;
4233                 public event KeyEventHandler            KeyUp;
4234                 public event LayoutEventHandler         Layout;
4235                 public event EventHandler               Leave;
4236                 public event EventHandler               LocationChanged;
4237
4238                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4239                 [Browsable(false)]
4240                 public event EventHandler               LostFocus;
4241
4242                 public event MouseEventHandler          MouseDown;
4243                 public event EventHandler               MouseEnter;
4244                 public event EventHandler               MouseHover;
4245                 public event EventHandler               MouseLeave;
4246                 public event MouseEventHandler          MouseMove;
4247                 public event MouseEventHandler          MouseUp;
4248
4249                 [EditorBrowsable(EditorBrowsableState.Advanced)]
4250                 [Browsable(false)]
4251                 public event MouseEventHandler          MouseWheel;
4252
4253                 public event EventHandler               Move;
4254                 public event PaintEventHandler          Paint;
4255                 public event EventHandler               ParentChanged;
4256                 public event QueryAccessibilityHelpEventHandler QueryAccessibilityHelp;
4257                 public event QueryContinueDragEventHandler      QueryContinueDrag;
4258                 public event EventHandler               Resize;
4259                 public event EventHandler               RightToLeftChanged;
4260                 public event EventHandler               SizeChanged;
4261                 public event EventHandler               StyleChanged;
4262                 public event EventHandler               SystemColorsChanged;
4263                 public event EventHandler               TabIndexChanged;
4264                 public event EventHandler               TabStopChanged;
4265                 public event EventHandler               TextChanged;
4266                 public event EventHandler               Validated;
4267                 public event CancelEventHandler         Validating;
4268                 public event EventHandler               VisibleChanged;
4269                 #endregion      // Events
4270         }
4271 }