da5f9356b9f6c5b4fb9aae06edb53ade1a117e66
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / XplatUIWin32.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2004-2006 Novell, Inc.
21 //
22 // Authors:
23 //      Peter Bartok    pbartok@novell.com
24 //
25 //
26
27 // NOT COMPLETE
28
29 using System;
30 using System.Drawing;
31 using System.Drawing.Imaging;
32 using System.ComponentModel;
33 using System.Collections;
34 using System.Diagnostics;
35 using System.IO;
36 using System.Runtime.InteropServices;
37 using System.Text;
38
39
40 /// Win32 Version
41 namespace System.Windows.Forms {
42         internal class XplatUIWin32 : XplatUIDriver {
43                 #region Local Variables
44                 private static XplatUIWin32     instance;
45                 private static int              ref_count;
46                 private static IntPtr           FosterParent;
47
48                 internal static MouseButtons    mouse_state;
49                 internal static Point           mouse_position;
50                 internal static bool            grab_confined;
51                 internal static IntPtr          grab_hwnd;
52                 internal static Rectangle       grab_area;
53                 internal static WndProc         wnd_proc;
54                 internal static IntPtr          prev_mouse_hwnd;
55                 internal static IntPtr          override_cursor;
56                 internal static bool            caret_visible;
57
58                 internal static bool            themes_enabled;
59                 private Hashtable               timer_list;
60                 private static Queue            message_queue;
61                 private static IntPtr           clip_magic = new IntPtr(27051977);
62                 private static int              scroll_width;
63                 private static int              scroll_height;
64
65                 private static Win32DnD         DnD;
66                 #endregion      // Local Variables
67
68                 #region Private Structs
69                 [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
70                 private struct WNDCLASS {
71                         internal int            style;
72                         internal WndProc        lpfnWndProc;
73                         internal int            cbClsExtra;
74                         internal int            cbWndExtra;
75                         internal IntPtr         hInstance;
76                         internal IntPtr         hIcon;
77                         internal IntPtr         hCursor;
78                         internal IntPtr         hbrBackground;
79                         [MarshalAs(UnmanagedType.LPWStr)]
80                         internal string         lpszMenuName;
81                         [MarshalAs(UnmanagedType.LPWStr)]
82                         internal string         lpszClassName;
83                 }
84
85                 [StructLayout(LayoutKind.Sequential)]
86                 internal struct RECT {
87                         internal int            left;
88                         internal int            top;
89                         internal int            right;
90                         internal int            bottom;
91                         public override string ToString() {
92                                 return String.Format("RECT left={0}, top={1}, right={2}, bottom={3}, width={4}, height={5}", left, top, right, bottom, right-left, bottom-top);
93                         }
94
95                 }
96
97                 [StructLayout(LayoutKind.Sequential)]
98                 internal struct POINT {
99                         internal int            x;
100                         internal int            y;
101                 }
102
103                 internal enum SPIAction {
104                         SPI_GETWORKAREA         = 0x0030,
105                         SPI_GETMOUSEHOVERWIDTH  = 0x0062,
106                         SPI_GETMOUSEHOVERHEIGHT = 0x0064,
107                         SPI_GETMOUSEHOVERTIME   = 0x0066,
108                 }
109
110                 internal enum WindowPlacementFlags {
111                         SW_HIDE                 = 0,
112                         SW_SHOWNORMAL           = 1,
113                         SW_NORMAL               = 1,
114                         SW_SHOWMINIMIZED        = 2,
115                         SW_SHOWMAXIMIZED        = 3,
116                         SW_MAXIMIZE             = 3,
117                         SW_SHOWNOACTIVATE       = 4,
118                         SW_SHOW                 = 5,
119                         SW_MINIMIZE             = 6,
120                         SW_SHOWMINNOACTIVE      = 7,
121                         SW_SHOWNA               = 8,
122                         SW_RESTORE              = 9,
123                         SW_SHOWDEFAULT          = 10,
124                         SW_FORCEMINIMIZE        = 11,
125                         SW_MAX                  = 11
126                 }
127
128                 [StructLayout(LayoutKind.Sequential)]
129                 private struct WINDOWPLACEMENT {
130                         internal uint                   length;
131                         internal uint                   flags;
132                         internal WindowPlacementFlags   showCmd;
133                         internal POINT                  ptMinPosition;
134                         internal POINT                  ptMaxPosition;
135                         internal RECT                   rcNormalPosition;
136                 }
137
138                 [StructLayout(LayoutKind.Sequential)]
139                 internal struct NCCALCSIZE_PARAMS {
140                         internal RECT           rgrc1;
141                         internal RECT           rgrc2;
142                         internal RECT           rgrc3;
143                         internal IntPtr         lppos;
144                 }
145
146                 [Flags]
147                 private enum TMEFlags {
148                         TME_HOVER               = 0x00000001,
149                         TME_LEAVE               = 0x00000002,
150                         TME_QUERY               = unchecked((int)0x40000000),
151                         TME_CANCEL              = unchecked((int)0x80000000)
152                 }
153
154                 [StructLayout(LayoutKind.Sequential)]
155                 private struct TRACKMOUSEEVENT {
156                         internal int            size;
157                         internal TMEFlags       dwFlags;
158                         internal IntPtr         hWnd;
159                         internal int            dwHoverTime;
160                 }
161
162                 [StructLayout(LayoutKind.Sequential)]
163                 private struct PAINTSTRUCT {
164                         internal IntPtr         hdc;
165                         internal int            fErase;
166                         internal RECT           rcPaint;
167                         internal int            fRestore;
168                         internal int            fIncUpdate;
169                         internal int            Reserved1;
170                         internal int            Reserved2;
171                         internal int            Reserved3;
172                         internal int            Reserved4;
173                         internal int            Reserved5;
174                         internal int            Reserved6;
175                         internal int            Reserved7;
176                         internal int            Reserved8;
177                 }
178
179                 internal enum ClassStyle {
180                         CS_VREDRAW                      = 0x00000001,
181                         CS_HREDRAW                      = 0x00000002,
182                         CS_KEYCVTWINDOW                 = 0x00000004,
183                         CS_DBLCLKS                      = 0x00000008,
184                         CS_OWNDC                        = 0x00000020,
185                         CS_CLASSDC                      = 0x00000040,
186                         CS_PARENTDC                     = 0x00000080,
187                         CS_NOKEYCVT                     = 0x00000100,
188                         CS_NOCLOSE                      = 0x00000200,
189                         CS_SAVEBITS                     = 0x00000800,
190                         CS_BYTEALIGNCLIENT              = 0x00001000,
191                         CS_BYTEALIGNWINDOW              = 0x00002000,
192                         CS_GLOBALCLASS                  = 0x00004000,
193                         CS_IME                          = 0x00010000
194                 }
195
196                 internal enum SetWindowPosZOrder {
197                         HWND_TOP                        = 0,
198                         HWND_BOTTOM                     = 1,
199                         HWND_TOPMOST                    = -1,
200                         HWND_NOTOPMOST                  = -2
201                 }
202
203                 [Flags]
204                 internal enum SetWindowPosFlags {
205                         SWP_ASYNCWINDOWPOS              = 0x4000, 
206                         SWP_DEFERERASE                  = 0x2000,
207                         SWP_DRAWFRAME                   = 0x0020,
208                         SWP_FRAMECHANGED                = 0x0020,
209                         SWP_HIDEWINDOW                  = 0x0080,
210                         SWP_NOACTIVATE                  = 0x0010,
211                         SWP_NOCOPYBITS                  = 0x0100,
212                         SWP_NOMOVE                      = 0x0002,
213                         SWP_NOOWNERZORDER               = 0x0200,
214                         SWP_NOREDRAW                    = 0x0008,
215                         SWP_NOREPOSITION                = 0x0200,
216                         SWP_NOENDSCHANGING              = 0x0400,
217                         SWP_NOSIZE                      = 0x0001,
218                         SWP_NOZORDER                    = 0x0004,
219                         SWP_SHOWWINDOW                  = 0x0040
220                 }
221
222                 internal enum GetSysColorIndex {
223                         COLOR_SCROLLBAR                 = 0,
224                         COLOR_BACKGROUND                = 1,
225                         COLOR_ACTIVECAPTION             = 2,
226                         COLOR_INACTIVECAPTION           = 3,
227                         COLOR_MENU                      = 4,
228                         COLOR_WINDOW                    = 5,
229                         COLOR_WINDOWFRAME               = 6,
230                         COLOR_MENUTEXT                  = 7,
231                         COLOR_WINDOWTEXT                = 8,
232                         COLOR_CAPTIONTEXT               = 9,
233                         COLOR_ACTIVEBORDER              = 10,
234                         COLOR_INACTIVEBORDER            = 11,
235                         COLOR_APPWORKSPACE              = 12,
236                         COLOR_HIGHLIGHT                 = 13,
237                         COLOR_HIGHLIGHTTEXT             = 14,
238                         COLOR_BTNFACE                   = 15,
239                         COLOR_BTNSHADOW                 = 16,
240                         COLOR_GRAYTEXT                  = 17,
241                         COLOR_BTNTEXT                   = 18,
242                         COLOR_INACTIVECAPTIONTEXT       = 19,
243                         COLOR_BTNHIGHLIGHT              = 20,
244                         COLOR_3DDKSHADOW                = 21,
245                         COLOR_3DLIGHT                   = 22,
246                         COLOR_INFOTEXT                  = 23,
247                         COLOR_INFOBK                    = 24,
248                         
249                         COLOR_HOTLIGHT                  = 26,
250                         COLOR_GRADIENTACTIVECAPTION     = 27,
251                         COLOR_GRADIENTINACTIVECAPTION   = 28,
252                         COLOR_MENUHIGHLIGHT             = 29,
253                         COLOR_MENUBAR                   = 30,
254
255                         COLOR_DESKTOP                   = 1,
256                         COLOR_3DFACE                    = 16,
257                         COLOR_3DSHADOW                  = 16,
258                         COLOR_3DHIGHLIGHT               = 20,
259                         COLOR_3DHILIGHT                 = 20,
260                         COLOR_BTNHILIGHT                = 20,
261                         COLOR_MAXVALUE                  = 24,/* Maximum value */
262                 }       
263
264                 private enum LoadCursorType {
265                         First                           = 32512,
266                         IDC_ARROW                       = 32512,
267                         IDC_IBEAM                       = 32513,
268                         IDC_WAIT                        = 32514,
269                         IDC_CROSS                       = 32515,
270                         IDC_UPARROW                     = 32516,
271                         IDC_SIZE                        = 32640,
272                         IDC_ICON                        = 32641,
273                         IDC_SIZENWSE                    = 32642,
274                         IDC_SIZENESW                    = 32643,
275                         IDC_SIZEWE                      = 32644,
276                         IDC_SIZENS                      = 32645,
277                         IDC_SIZEALL                     = 32646,
278                         IDC_NO                          = 32648,
279                         IDC_HAND                        = 32649,
280                         IDC_APPSTARTING                 = 32650,
281                         IDC_HELP                        = 32651,
282                         Last                            = 32651
283                 }
284
285                 [Flags]
286                 private enum WindowLong {
287                         GWL_WNDPROC                     = -4,
288                         GWL_HINSTANCE                   = -6,
289                         GWL_HWNDPARENT                  = -8,
290                         GWL_STYLE                       = -16,
291                         GWL_EXSTYLE                     = -20,
292                         GWL_USERDATA                    = -21,
293                         GWL_ID                          = -12
294                 }
295
296                 [Flags]
297                 private enum LogBrushStyle {
298                         BS_SOLID                        = 0,
299                         BS_NULL                         = 1,
300                         BS_HATCHED                      = 2,
301                         BS_PATTERN                      = 3,
302                         BS_INDEXED                      = 4,
303                         BS_DIBPATTERN                   = 5,
304                         BS_DIBPATTERNPT                 = 6,
305                         BS_PATTERN8X8                   = 7,
306                         BS_DIBPATTERN8X8                = 8,
307                         BS_MONOPATTERN                  = 9
308                 }
309
310                 [Flags]
311                 private enum LogBrushHatch {
312                         HS_HORIZONTAL                   = 0,       /* ----- */
313                         HS_VERTICAL                     = 1,       /* ||||| */
314                         HS_FDIAGONAL                    = 2,       /* \\\\\ */
315                         HS_BDIAGONAL                    = 3,       /* ///// */
316                         HS_CROSS                        = 4,       /* +++++ */
317                         HS_DIAGCROSS                    = 5,       /* xxxxx */
318                 }
319
320                 internal struct COLORREF {
321                         internal byte                   R;
322                         internal byte                   G;
323                         internal byte                   B;
324                         internal byte                   A;
325                 }
326
327                 [StructLayout(LayoutKind.Sequential)]
328                 private struct LOGBRUSH {
329                         internal LogBrushStyle          lbStyle;
330                         internal COLORREF               lbColor;
331                         internal LogBrushHatch          lbHatch;
332                 }
333
334                 [StructLayout(LayoutKind.Sequential)]
335                 internal struct TEXTMETRIC { 
336                         internal int                    tmHeight;
337                         internal int                    tmAscent;
338                         internal int                    tmDescent;
339                         internal int                    tmInternalLeading;
340                         internal int                    tmExternalLeading;
341                         internal int                    tmAveCharWidth;
342                         internal int                    tmMaxCharWidth;
343                         internal int                    tmWeight;
344                         internal int                    tmOverhang;
345                         internal int                    tmDigitizedAspectX;
346                         internal int                    tmDigitizedAspectY;
347                         internal short                  tmFirstChar; 
348                         internal short                  tmLastChar; 
349                         internal short                  tmDefaultChar; 
350                         internal short                  tmBreakChar; 
351                         internal byte                   tmItalic; 
352                         internal byte                   tmUnderlined; 
353                         internal byte                   tmStruckOut; 
354                         internal byte                   tmPitchAndFamily; 
355                         internal byte                   tmCharSet; 
356                 } 
357
358                 [Flags]
359                 private enum ScrollWindowExFlags {
360                         SW_NONE                         = 0x0000,
361                         SW_SCROLLCHILDREN               = 0x0001,
362                         SW_INVALIDATE                   = 0x0002,
363                         SW_ERASE                        = 0x0004,
364                         SW_SMOOTHSCROLL                 = 0x0010
365                 }
366
367                 internal enum SystemMetrics {
368                         SM_CXSCREEN                     = 0,
369                         SM_CYSCREEN                     = 1,
370                         SM_CXVSCROLL                    = 2,
371                         SM_CYHSCROLL                    = 3,
372                         SM_CYCAPTION                    = 4,
373                         SM_CXBORDER                     = 5,
374                         SM_CYBORDER                     = 6,
375                         SM_CXDLGFRAME                   = 7,
376                         SM_CYDLGFRAME                   = 8,
377                         SM_CYVTHUMB                     = 9,
378                         SM_CXHTHUMB                     = 10,
379                         SM_CXICON                       = 11,
380                         SM_CYICON                       = 12,
381                         SM_CXCURSOR                     = 13,
382                         SM_CYCURSOR                     = 14,
383                         SM_CYMENU                       = 15,
384                         SM_CXFULLSCREEN                 = 16,
385                         SM_CYFULLSCREEN                 = 17,
386                         SM_CYKANJIWINDOW                = 18,
387                         SM_MOUSEPRESENT                 = 19,
388                         SM_CYVSCROLL                    = 20,
389                         SM_CXHSCROLL                    = 21,
390                         SM_DEBUG                        = 22,
391                         SM_SWAPBUTTON                   = 23,
392                         SM_RESERVED1                    = 24,
393                         SM_RESERVED2                    = 25,
394                         SM_RESERVED3                    = 26,
395                         SM_RESERVED4                    = 27,
396                         SM_CXMIN                        = 28,
397                         SM_CYMIN                        = 29,
398                         SM_CXSIZE                       = 30,
399                         SM_CYSIZE                       = 31,
400                         SM_CXFRAME                      = 32,
401                         SM_CYFRAME                      = 33,
402                         SM_CXMINTRACK                   = 34,
403                         SM_CYMINTRACK                   = 35,
404                         SM_CXDOUBLECLK                  = 36,
405                         SM_CYDOUBLECLK                  = 37,
406                         SM_CXICONSPACING                = 38,
407                         SM_CYICONSPACING                = 39,
408                         SM_MENUDROPALIGNMENT            = 40,
409                         SM_PENWINDOWS                   = 41,
410                         SM_DBCSENABLED                  = 42,
411                         SM_CMOUSEBUTTONS                = 43,
412                         SM_CXFIXEDFRAME                 = SM_CXDLGFRAME,
413                         SM_CYFIXEDFRAME                 = SM_CYDLGFRAME,
414                         SM_CXSIZEFRAME                  = SM_CXFRAME,
415                         SM_CYSIZEFRAME                  = SM_CYFRAME,
416                         SM_SECURE                       = 44,
417                         SM_CXEDGE                       = 45,
418                         SM_CYEDGE                       = 46,
419                         SM_CXMINSPACING                 = 47,
420                         SM_CYMINSPACING                 = 48,
421                         SM_CXSMICON                     = 49,
422                         SM_CYSMICON                     = 50,
423                         SM_CYSMCAPTION                  = 51,
424                         SM_CXSMSIZE                     = 52,
425                         SM_CYSMSIZE                     = 53,
426                         SM_CXMENUSIZE                   = 54,
427                         SM_CYMENUSIZE                   = 55,
428                         SM_ARRANGE                      = 56,
429                         SM_CXMINIMIZED                  = 57,
430                         SM_CYMINIMIZED                  = 58,
431                         SM_CXMAXTRACK                   = 59,
432                         SM_CYMAXTRACK                   = 60,
433                         SM_CXMAXIMIZED                  = 61,
434                         SM_CYMAXIMIZED                  = 62,
435                         SM_NETWORK                      = 63,
436                         SM_CLEANBOOT                    = 67,
437                         SM_CXDRAG                       = 68,
438                         SM_CYDRAG                       = 69,
439                         SM_SHOWSOUNDS                   = 70,
440                         SM_CXMENUCHECK                  = 71,
441                         SM_CYMENUCHECK                  = 72,
442                         SM_SLOWMACHINE                  = 73,
443                         SM_MIDEASTENABLED               = 74,
444                         SM_MOUSEWHEELPRESENT            = 75,
445                         SM_XVIRTUALSCREEN               = 76,
446                         SM_YVIRTUALSCREEN               = 77,
447                         SM_CXVIRTUALSCREEN              = 78,
448                         SM_CYVIRTUALSCREEN              = 79,
449                         SM_CMONITORS                    = 80,
450                         SM_SAMEDISPLAYFORMAT            = 81,
451                         SM_IMMENABLED                   = 82,
452                         SM_CXFOCUSBORDER                = 83,
453                         SM_CYFOCUSBORDER                = 84,
454                         SM_TABLETPC                     = 86,
455                         SM_MEDIACENTER                  = 87,
456                         SM_CMETRICS                     = 88
457                 }
458
459                 // We'll only support _WIN32_IE < 0x0500 for now
460                 internal enum NotifyIconMessage {
461                         NIM_ADD                         = 0x00000000,
462                         NIM_MODIFY                      = 0x00000001,
463                         NIM_DELETE                      = 0x00000002,
464                 }
465
466                 [Flags]
467                 internal enum NotifyIconFlags {
468                         NIF_MESSAGE                     = 0x00000001,
469                         NIF_ICON                        = 0x00000002,
470                         NIF_TIP                         = 0x00000004,
471                 }
472
473                 [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
474                 internal struct NOTIFYICONDATA {
475                         internal uint                   cbSize;
476                         internal IntPtr                 hWnd;
477                         internal uint                   uID;
478                         internal NotifyIconFlags        uFlags;
479                         internal uint                   uCallbackMessage;
480                         internal IntPtr                 hIcon;
481                         [MarshalAs(UnmanagedType.ByValTStr, SizeConst=64)]
482                         internal string                 szTip;
483                 }
484
485                 [Flags]
486                 internal enum DCExFlags {
487                         DCX_WINDOW                      = 0x00000001,
488                         DCX_CACHE                       = 0x00000002,
489                         DCX_NORESETATTRS                = 0x00000004,
490                         DCX_CLIPCHILDREN                = 0x00000008,
491                         DCX_CLIPSIBLINGS                = 0x00000010,
492                         DCX_PARENTCLIP                  = 0x00000020,
493                         DCX_EXCLUDERGN                  = 0x00000040,
494                         DCX_INTERSECTRGN                = 0x00000080,
495                         DCX_EXCLUDEUPDATE               = 0x00000100,
496                         DCX_INTERSECTUPDATE             = 0x00000200,
497                         DCX_LOCKWINDOWUPDATE            = 0x00000400,
498                         DCX_USESTYLE                    = 0x00010000,
499                         DCX_VALIDATE                    = 0x00200000
500                 }
501
502                 [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
503                 internal struct CLIENTCREATESTRUCT {
504                         internal IntPtr                 hWindowMenu;
505                         internal uint                   idFirstChild;
506                 }
507
508                 private enum ClassLong : int {
509                         GCL_MENUNAME                    = -8,
510                         GCL_HBRBACKGROUND               = -10,
511                         GCL_HCURSOR                     = -12,
512                         GCL_HICON                       = -14,
513                         GCL_HMODULE                     = -16,
514                         GCL_CBWNDEXTRA                  = -18,
515                         GCL_CBCLSEXTRA                  = -20,
516                         GCL_WNDPROC                     = -24,
517                         GCL_STYLE                       = -26,
518                         GCW_ATOM                        = -32,
519                         GCL_HICONSM                     = -34
520                 }
521
522                 [Flags]
523                 internal enum GAllocFlags : uint {
524                         GMEM_FIXED                      = 0x0000,
525                         GMEM_MOVEABLE                   = 0x0002,
526                         GMEM_NOCOMPACT                  = 0x0010,
527                         GMEM_NODISCARD                  = 0x0020,
528                         GMEM_ZEROINIT                   = 0x0040,
529                         GMEM_MODIFY                     = 0x0080,
530                         GMEM_DISCARDABLE                = 0x0100,
531                         GMEM_NOT_BANKED                 = 0x1000,
532                         GMEM_SHARE                      = 0x2000,
533                         GMEM_DDESHARE                   = 0x2000,
534                         GMEM_NOTIFY                     = 0x4000,
535                         GMEM_LOWER                      = GMEM_NOT_BANKED,
536                         GMEM_VALID_FLAGS                = 0x7F72,
537                         GMEM_INVALID_HANDLE             = 0x8000,
538                         GHND                            = (GMEM_MOVEABLE | GMEM_ZEROINIT),
539                         GPTR                            = (GMEM_FIXED | GMEM_ZEROINIT)
540                 }
541
542                 internal enum ROP2DrawMode : int {
543                         R2_BLACK                        = 1,
544                         R2_NOTMERGEPEN                  = 2,
545                         R2_MASKNOTPEN                   = 3,
546                         R2_NOTCOPYPEN                   = 4,
547                         R2_MASKPENNOT                   = 5,
548                         R2_NOT                          = 6,
549                         R2_XORPEN                       = 7,
550                         R2_NOTMASKPEN                   = 8,
551                         R2_MASKPEN                      = 9,
552                         R2_NOTXORPEN                    = 10,
553                         R2_NOP                          = 11,
554                         R2_MERGENOTPEN                  = 12,
555                         R2_COPYPEN                      = 13,
556                         R2_MERGEPENNOT                  = 14,
557                         R2_MERGEPEN                     = 15,
558                         R2_WHITE                        = 16,
559                         R2_LAST                         = 16
560                 }
561
562                 internal enum PenStyle : int {
563                         PS_SOLID                        = 0,
564                         PS_DASH                         = 1,
565                         PS_DOT                          = 2,
566                         PS_DASHDOT                      = 3,
567                         PS_DASHDOTDOT                   = 4,
568                         PS_NULL                         = 5,
569                         PS_INSIDEFRAME                  = 6,
570                         PS_USERSTYLE                    = 7,
571                         PS_ALTERNATE                    = 8
572                 }
573
574                 internal enum StockObject : int {
575                         WHITE_BRUSH                     = 0,
576                         LTGRAY_BRUSH                    = 1,
577                         GRAY_BRUSH                      = 2,
578                         DKGRAY_BRUSH                    = 3,
579                         BLACK_BRUSH                     = 4,
580                         NULL_BRUSH                      = 5,
581                         HOLLOW_BRUSH                    = NULL_BRUSH,
582                         WHITE_PEN                       = 6,
583                         BLACK_PEN                       = 7,
584                         NULL_PEN                        = 8,
585                         OEM_FIXED_FONT                  = 10,
586                         ANSI_FIXED_FONT                 = 11,
587                         ANSI_VAR_FONT                   = 12,
588                         SYSTEM_FONT                     = 13,
589                         DEVICE_DEFAULT_FONT             = 14,
590                         DEFAULT_PALETTE                 = 15,
591                         SYSTEM_FIXED_FONT               = 16
592                 }
593
594                 internal enum HatchStyle : int {
595                         HS_HORIZONTAL                   = 0,
596                         HS_VERTICAL                     = 1,
597                         HS_FDIAGONAL                    = 2,
598                         HS_BDIAGONAL                    = 3,
599                         HS_CROSS                        = 4,
600                         HS_DIAGCROSS                    = 5
601                 }
602
603                 [Flags]
604                 internal enum SndFlags : int {
605                         SND_SYNC                        = 0x0000,
606                         SND_ASYNC                       = 0x0001,
607                         SND_NODEFAULT                   = 0x0002,
608                         SND_MEMORY                      = 0x0004,
609                         SND_LOOP                        = 0x0008,
610                         SND_NOSTOP                      = 0x0010,
611                         SND_NOWAIT                      = 0x00002000,
612                         SND_ALIAS                       = 0x00010000,
613                         SND_ALIAS_ID                    = 0x00110000,
614                         SND_FILENAME                    = 0x00020000,
615                         SND_RESOURCE                    = 0x00040004,
616                         SND_PURGE                       = 0x0040,
617                         SND_APPLICATION                 = 0x0080,
618                 }
619
620                 [Flags]
621                 internal enum LayeredWindowAttributes : int {
622                         LWA_COLORKEY            = 0x1,
623                         LWA_ALPHA                       = 0x2,
624                 }
625
626                 
627                 #endregion
628
629                 #region Constructor & Destructor
630                 private XplatUIWin32() {
631                         WNDCLASS        wndClass;
632                         bool            result;
633
634                         // Handle singleton stuff first
635                         ref_count=0;
636
637                         DnD = new Win32DnD();
638
639                         mouse_state = MouseButtons.None;
640                         mouse_position = Point.Empty;
641
642                         message_queue = new Queue();
643
644                         themes_enabled = false;
645
646                         // Prepare 'our' window class
647                         wnd_proc = new WndProc(NativeWindow.WndProc);
648                         wndClass.style = (int)(ClassStyle.CS_OWNDC | ClassStyle.CS_DBLCLKS);
649                         wndClass.lpfnWndProc = wnd_proc;
650                         wndClass.cbClsExtra = 0;
651                         wndClass.cbWndExtra = 0;
652                         wndClass.hbrBackground = IntPtr.Zero;
653                         wndClass.hCursor = Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);
654                         wndClass.hIcon = IntPtr.Zero;
655                         wndClass.hInstance = IntPtr.Zero;
656                         wndClass.lpszClassName = XplatUI.DefaultClassName;
657                         wndClass.lpszMenuName = "";
658
659                         result=Win32RegisterClass(ref wndClass);
660                         if (result==false) {
661                                 Win32MessageBox(IntPtr.Zero, "Could not register the "+XplatUI.DefaultClassName+" window class, win32 error " + Win32GetLastError().ToString(), "Oops", 0);
662                         }
663
664                         FosterParent=Win32CreateWindow((int)WindowExStyles.WS_EX_TOOLWINDOW, "static", "Foster Parent Window", (int)WindowStyles.WS_OVERLAPPEDWINDOW, 0, 0, 0, 0, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);
665
666                         if (FosterParent==IntPtr.Zero) {
667                                 Win32MessageBox(IntPtr.Zero, "Could not create foster window, win32 error " + Win32GetLastError().ToString(), "Oops", 0);
668                         }
669
670                         scroll_height = Win32GetSystemMetrics(SystemMetrics.SM_CYHSCROLL);
671                         scroll_width = Win32GetSystemMetrics(SystemMetrics.SM_CXVSCROLL);
672
673                         timer_list = new Hashtable ();
674                 }
675                 #endregion      // Constructor & Destructor
676
677                 #region Private Support Methods
678                 private static IntPtr DefWndProc(IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) {
679                         return Win32DefWindowProc(hWnd, msg, wParam, lParam);
680                 }
681
682                 private static bool MessageWaiting {
683                         get {
684                                 if (message_queue.Count == 0) {
685                                         return false;
686                                 }
687                                 return true;
688                         }
689                 }
690
691                 private static bool RetrieveMessage(ref MSG msg) {
692                         MSG     message;
693
694                         if (message_queue.Count == 0) {
695                                 return false;
696                         }
697
698                         message = (MSG)message_queue.Dequeue();
699                         msg = message;
700
701                         return true;
702                 }
703
704                 private static bool StoreMessage(ref MSG msg) {
705                         MSG message = new MSG();
706
707                         message = msg;
708                         message_queue.Enqueue(message);
709
710                         return true;
711                 }
712
713                 internal static String AnsiToString(IntPtr ansi_data) {
714                         return (string)Marshal.PtrToStringAnsi(ansi_data);
715                 }
716
717                 internal static String UnicodeToString(IntPtr unicode_data) {
718                         return (string)Marshal.PtrToStringUni(unicode_data);
719                 }
720
721                 internal static Image DIBtoImage(IntPtr dib_data) {
722                         BITMAPINFOHEADER        bmi;
723                         int                     ncolors;
724                         int                     imagesize;
725                         //int                   palettesize;
726                         Bitmap                  bmp;
727                         BitmapData              bits;
728                         ColorPalette            pal;
729                         int[]                   palette;
730                         byte[]                  imagebits;
731                         int                     bytesPerLine;
732
733                         bmi = (BITMAPINFOHEADER)Marshal.PtrToStructure(dib_data, typeof(BITMAPINFOHEADER));
734
735                         ncolors = (int)bmi.biClrUsed;
736                         if (ncolors == 0) {
737                                 if (bmi.biBitCount < 24) {
738                                         ncolors = (int)(1 << bmi.biBitCount);
739                                 }
740                         }
741                         //palettesize = ncolors * 4;
742
743                         imagesize = (int)bmi.biSizeImage;
744                         if (imagesize == 0) {
745                                 imagesize = (int)(((((bmi.biWidth * bmi.biBitCount) + 31) & ~31) >> 3) * bmi.biHeight);
746                         }
747
748                         switch(bmi.biBitCount) {
749                                 case 1: {       // Monochrome
750                                         bmp = new Bitmap(bmi.biWidth, bmi.biHeight, PixelFormat.Format1bppIndexed);
751                                         palette = new int[2];
752                                         break;
753                                 }
754
755                                 case 4: {       // 4bpp
756                                         bmp = new Bitmap(bmi.biWidth, bmi.biHeight, PixelFormat.Format4bppIndexed);
757                                         palette = new int[16];
758                                         break;
759                                 }
760
761                                 case 8: {       // 8bpp
762                                         bmp = new Bitmap(bmi.biWidth, bmi.biHeight, PixelFormat.Format8bppIndexed);
763                                         palette = new int[256];
764                                         break;
765                                 }
766
767                                 case 24:
768                                 case 32: {      // 32bpp
769                                         bmp = new Bitmap(bmi.biWidth, bmi.biHeight, PixelFormat.Format32bppArgb);
770                                         palette = new int[0];
771                                         break;
772                                 }
773
774                                 default: {
775                                         throw new Exception("Unexpected number of bits:" + bmi.biBitCount.ToString());
776                                 }
777                         }
778
779                         if (bmi.biBitCount < 24) {
780                                 pal = bmp.Palette;                              // Managed palette
781                                 Marshal.Copy((IntPtr)((int)dib_data + Marshal.SizeOf(typeof(BITMAPINFOHEADER))), palette, 0, palette.Length);
782
783                                 for (int i = 0; i < ncolors; i++) {
784                                         pal.Entries[i] = Color.FromArgb(palette[i] | unchecked((int)0xff000000));
785                                 }
786                                 bmp.Palette = pal;
787                         }
788
789                         bytesPerLine = (int)((((bmi.biWidth * bmi.biBitCount) + 31) & ~31) >> 3);
790                         bits = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.WriteOnly, bmp.PixelFormat);
791
792                         imagebits = new byte[bytesPerLine];
793
794                         for (int y = 0; y < bmi.biHeight; y++) {
795                                 // Copy from source to managed
796                                 Marshal.Copy((IntPtr)((int)dib_data + Marshal.SizeOf(typeof(BITMAPINFOHEADER)) + palette.Length * 4 + bytesPerLine * y), imagebits, 0, bytesPerLine);
797
798                                 // Copy from managed to dest
799                                 Marshal.Copy(imagebits, 0, (IntPtr)((int)bits.Scan0 + bits.Stride * (bmi.biHeight - 1 - y)), imagebits.Length);
800                         }
801
802                         bmp.UnlockBits(bits);
803
804                         return bmp;
805                 }
806
807                 internal static byte[] ImageToDIB(Image image) {
808                         MemoryStream    ms;
809                         byte[]          buffer;
810                         byte[]          retbuf;
811
812                         ms = new MemoryStream();
813                         image.Save(ms, ImageFormat.Bmp);
814                         buffer = ms.GetBuffer();
815
816                         // Filter out the file header
817                         retbuf = new byte[buffer.Length];
818                         Array.Copy(buffer, 14, retbuf, 0, buffer.Length - 14);
819                         return retbuf;
820                 }
821
822                 internal static IntPtr DupGlobalMem(IntPtr mem) {
823                         IntPtr  dup;
824                         IntPtr  dup_ptr;
825                         IntPtr  mem_ptr;
826                         uint    len;
827
828                         len = Win32GlobalSize(mem);
829                         mem_ptr = Win32GlobalLock(mem);
830
831                         dup = Win32GlobalAlloc(GAllocFlags.GMEM_MOVEABLE, (int)len);
832                         dup_ptr = Win32GlobalLock(dup);
833
834                         Win32CopyMemory(dup_ptr, mem_ptr, (int)len);
835
836                         Win32GlobalUnlock(mem);
837                         Win32GlobalUnlock(dup);
838
839                         return dup;
840                 }
841                 #endregion      // Private Support Methods
842
843                 #region Static Properties
844                 internal override Keys ModifierKeys {
845                         get {
846                                 short   state;
847                                 Keys    key_state;
848
849                                 key_state = Keys.None;
850
851                                 state = Win32GetKeyState(VirtualKeys.VK_SHIFT);
852                                 if ((state & 0x8000) != 0) {
853                                         key_state |= Keys.Shift;
854                                 }
855                                 state = Win32GetKeyState(VirtualKeys.VK_CONTROL);
856                                 if ((state & 0x8000) != 0) {
857                                         key_state |= Keys.Control;
858                                 }
859
860                                 state = Win32GetKeyState(VirtualKeys.VK_MENU);
861                                 if ((state & 0x8000) != 0) {
862                                         key_state |= Keys.Alt;
863                                 }
864
865                                 return key_state;
866                         }
867                 }
868
869                 internal override MouseButtons MouseButtons {
870                         get {
871                                 return mouse_state;
872                         }
873                 }
874
875                 internal override Point MousePosition {
876                         get {
877                                 return mouse_position;
878                         }
879                 }
880
881                 internal override Size MouseHoverSize {
882                         get {
883                                 int     width = 4;
884                                 int     height = 4;
885
886                                 Win32SystemParametersInfo(SPIAction.SPI_GETMOUSEHOVERWIDTH, 0, ref width, 0);
887                                 Win32SystemParametersInfo(SPIAction.SPI_GETMOUSEHOVERWIDTH, 0, ref height, 0);
888                                 return new Size(width, height);
889                         }
890                 }
891
892                 internal override int MouseHoverTime {
893                         get {
894                                 int time = 500;
895
896                                 Win32SystemParametersInfo(SPIAction.SPI_GETMOUSEHOVERTIME, 0, ref time, 0);
897                                 return time;
898                         }
899                 }
900
901                 internal override int HorizontalScrollBarHeight {
902                         get {
903                                 return scroll_height;
904                         }
905                 }
906
907                 internal override bool UserClipWontExposeParent {
908                         get {
909                                 return false;
910                         }
911                 }
912
913
914                 internal override int VerticalScrollBarWidth {
915                         get {
916                                 return scroll_width;
917                         }
918                 }
919
920                 internal override int MenuHeight {
921                         get {
922                                 return Win32GetSystemMetrics(SystemMetrics.SM_CYMENU);
923                         }
924                 }
925
926                 internal override bool DropTarget {
927                         get {
928                                 return false;
929                         }
930
931                         set {
932                                 if (value) {
933                                         //throw new NotImplementedException("Need to figure out D'n'D for Win32");
934                                 }
935                         }
936                 }
937
938                 internal override int Caption {
939                         get {
940                                 return Win32GetSystemMetrics(SystemMetrics.SM_CYCAPTION);
941                         }
942                 }
943
944                 internal override Size CursorSize {
945                         get {
946                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR), Win32GetSystemMetrics(SystemMetrics.SM_CYCURSOR));
947                         }
948                 }
949
950                 internal override bool DragFullWindows {
951                         get {
952                                 return true;
953                         }
954                 }
955
956                 internal override Size DragSize {
957                         get {
958                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXDRAG), Win32GetSystemMetrics(SystemMetrics.SM_CYDRAG));
959                         }
960                 }
961
962                 internal override Size FrameBorderSize { 
963                         get {
964                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXFRAME), Win32GetSystemMetrics(SystemMetrics.SM_CYFRAME));
965                         }
966                 }
967
968                 internal override Size IconSize {
969                         get {
970                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXICON), Win32GetSystemMetrics(SystemMetrics.SM_CYICON));
971                         }
972                 }
973
974                 internal override Size MaxWindowTrackSize {
975                         get {
976                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXMAXTRACK), Win32GetSystemMetrics(SystemMetrics.SM_CYMAXTRACK));
977                         }
978                 }
979
980                 internal override Size MinimizedWindowSize {
981                         get {
982                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXMINIMIZED), Win32GetSystemMetrics(SystemMetrics.SM_CYMINIMIZED));
983                         }
984                 }
985
986                 internal override Size MinimizedWindowSpacingSize {
987                         get {
988                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXMINSPACING), Win32GetSystemMetrics(SystemMetrics.SM_CYMINSPACING));
989                         }
990                 }
991
992                 internal override Size MinimumWindowSize {
993                         get {
994                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXMIN), Win32GetSystemMetrics(SystemMetrics.SM_CYMIN));
995                         }
996                 }
997
998                 internal override Size MinWindowTrackSize {
999                         get {
1000                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXMINTRACK), Win32GetSystemMetrics(SystemMetrics.SM_CYMINTRACK));
1001                         }
1002                 }
1003
1004                 internal override Size SmallIconSize {
1005                         get {
1006                                 return new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXSMICON), Win32GetSystemMetrics(SystemMetrics.SM_CYSMICON));
1007                         }
1008                 }
1009
1010                 internal override int MouseButtonCount {
1011                         get {
1012                                 return Win32GetSystemMetrics(SystemMetrics.SM_CMOUSEBUTTONS);
1013                         }
1014                 }
1015
1016                 internal override bool MouseButtonsSwapped {
1017                         get {
1018                                 return Win32GetSystemMetrics(SystemMetrics.SM_SWAPBUTTON) != 0;
1019                         }
1020                 }
1021
1022                 internal override bool MouseWheelPresent {
1023                         get {
1024                                 return Win32GetSystemMetrics(SystemMetrics.SM_MOUSEWHEELPRESENT) != 0;
1025                         }
1026                 }
1027
1028                 internal override Rectangle VirtualScreen {
1029                         get {
1030                                 return new Rectangle(   Win32GetSystemMetrics(SystemMetrics.SM_XVIRTUALSCREEN), Win32GetSystemMetrics(SystemMetrics.SM_YVIRTUALSCREEN),
1031                                                         Win32GetSystemMetrics(SystemMetrics.SM_CXVIRTUALSCREEN), Win32GetSystemMetrics(SystemMetrics.SM_CYVIRTUALSCREEN));
1032                         }
1033                 }
1034
1035                 internal override Rectangle WorkingArea {
1036                         get {
1037                                 RECT    rect;
1038
1039                                 rect = new RECT();
1040                                 Win32SystemParametersInfo(SPIAction.SPI_GETWORKAREA, 0, ref rect, 0);
1041                                 return new Rectangle(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);
1042                                 //return new Rectangle(0, 0, Win32GetSystemMetrics(SystemMetrics.SM.SM_CXSCREEN), Win32GetSystemMetrics(SystemMetrics.SM_CYSCREEN));
1043                         }
1044                 }
1045
1046                 internal override bool ThemesEnabled {
1047                         get {
1048                                 return XplatUIWin32.themes_enabled;
1049                         }
1050                 }
1051  
1052
1053                 #endregion      // Static Properties
1054
1055                 #region Singleton Specific Code
1056                 public static XplatUIWin32 GetInstance() {
1057                         if (instance==null) {
1058                                 instance=new XplatUIWin32();
1059                         }
1060                         ref_count++;
1061                         return instance;
1062                 }
1063
1064                 public int Reference {
1065                         get {
1066                                 return ref_count;
1067                         }
1068                 }
1069                 #endregion
1070
1071                 #region Public Static Methods
1072                 internal override IntPtr InitializeDriver() {
1073                         return IntPtr.Zero;
1074                 }
1075
1076                 internal override void ShutdownDriver(IntPtr token) {
1077                         Console.WriteLine("XplatUIWin32 ShutdownDriver called");
1078                 }
1079
1080
1081                 internal void Version() {
1082                         Console.WriteLine("Xplat version $revision: $");
1083                 }
1084
1085                 internal override void AudibleAlert() {
1086                         Win32PlaySound("Default", IntPtr.Zero, SndFlags.SND_ALIAS | SndFlags.SND_ASYNC | SndFlags.SND_NOSTOP | SndFlags.SND_NOWAIT);
1087                 }
1088
1089                 internal override void GetDisplaySize(out Size size) {
1090                         RECT    rect;
1091
1092                         Win32GetWindowRect(Win32GetDesktopWindow(), out rect);
1093
1094                         size = new Size(rect.right - rect.left, rect.bottom - rect.top);
1095                 }
1096
1097                 internal override void EnableThemes() {
1098                         themes_enabled=true;
1099                 }
1100
1101                 internal override IntPtr CreateWindow(CreateParams cp) {
1102                         IntPtr  WindowHandle;
1103                         IntPtr  ParentHandle;
1104                         Hwnd    hwnd;
1105
1106                         hwnd = new Hwnd();
1107
1108                         ParentHandle=cp.Parent;
1109
1110                         if ((ParentHandle==IntPtr.Zero) && (cp.Style & (int)(WindowStyles.WS_CHILD))!=0) {
1111                                 // We need to use our foster parent window until this poor child gets it's parent assigned
1112                                 ParentHandle = FosterParent;
1113                         }
1114
1115                         if ( ((cp.Style & (int)(WindowStyles.WS_CHILD | WindowStyles.WS_POPUP))==0) && ((cp.ExStyle & (int)WindowExStyles.WS_EX_APPWINDOW) == 0)) {
1116                                 // If we want to be hidden from the taskbar we need to be 'owned' by 
1117                                 // something not on the taskbar. FosterParent is just that
1118                                 ParentHandle = FosterParent;
1119                         }
1120
1121                         // Since we fake MDI dont tell Windows that this is a real MDI window
1122                         if ((cp.ExStyle & (int) WindowExStyles.WS_EX_MDICHILD) != 0) {
1123                                 SetMdiStyles (cp);
1124                         }
1125
1126                         WindowHandle = Win32CreateWindow((uint)cp.ExStyle, cp.ClassName, cp.Caption, (uint)cp.Style, cp.X, cp.Y, cp.Width, cp.Height, ParentHandle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);
1127
1128                         if (WindowHandle==IntPtr.Zero) {
1129                                 uint error = Win32GetLastError();
1130
1131                                 Win32MessageBox(IntPtr.Zero, "Error : " + error.ToString(), "Failed to create window, class '"+cp.ClassName+"'", 0);
1132                         }
1133
1134                         hwnd.ClientWindow = WindowHandle;
1135
1136                         Win32SetWindowLong(WindowHandle, WindowLong.GWL_USERDATA, (uint)ThemeEngine.Current.DefaultControlBackColor.ToArgb());
1137
1138                         return WindowHandle;
1139                 }
1140
1141                 internal override IntPtr CreateWindow(IntPtr Parent, int X, int Y, int Width, int Height) {
1142                         CreateParams create_params = new CreateParams();
1143
1144                         create_params.Caption = "";
1145                         create_params.X = X;
1146                         create_params.Y = Y;
1147                         create_params.Width = Width;
1148                         create_params.Height = Height;
1149
1150                         create_params.ClassName=XplatUI.DefaultClassName;
1151                         create_params.ClassStyle = 0;
1152                         create_params.ExStyle=0;
1153                         create_params.Parent=IntPtr.Zero;
1154                         create_params.Param=0;
1155
1156                         return CreateWindow(create_params);
1157                 }
1158
1159                 internal override void DestroyWindow(IntPtr handle) {
1160                         Hwnd    hwnd;
1161
1162                         hwnd = Hwnd.ObjectFromHandle(handle);
1163                         Win32DestroyWindow(handle);
1164                         hwnd.Dispose();
1165                         return;
1166                 }
1167
1168                 internal override void SetWindowMinMax(IntPtr handle, Rectangle maximized, Size min, Size max) {
1169                         // We do nothing, Form has to handle WM_GETMINMAXINFO
1170                 }
1171
1172
1173                 internal override FormWindowState GetWindowState(IntPtr handle) {
1174                         uint style;
1175
1176                         style = Win32GetWindowLong(handle, WindowLong.GWL_STYLE);
1177                         if ((style & (uint)WindowStyles.WS_MAXIMIZE) != 0) {
1178                                 return FormWindowState.Maximized;
1179                         } else if ((style & (uint)WindowStyles.WS_MINIMIZE) != 0) {
1180                                 return FormWindowState.Minimized;
1181                         }
1182                         return FormWindowState.Normal;
1183                 }
1184
1185                 internal override void SetWindowState(IntPtr hwnd, FormWindowState state) {
1186                         switch(state) {
1187                                 case FormWindowState.Normal: {
1188                                         Win32ShowWindow(hwnd, WindowPlacementFlags.SW_RESTORE);
1189                                         return;
1190                                 }
1191
1192                                 case FormWindowState.Minimized: {
1193                                         Win32ShowWindow(hwnd, WindowPlacementFlags.SW_MINIMIZE);
1194                                         return;
1195                                 }
1196
1197                                 case FormWindowState.Maximized: {
1198                                         Win32ShowWindow(hwnd, WindowPlacementFlags.SW_MAXIMIZE);
1199                                         return;
1200                                 }
1201                         }
1202                 }
1203
1204                 internal override void SetWindowStyle(IntPtr handle, CreateParams cp) {
1205
1206                         if ((cp.ExStyle & (int) WindowExStyles.WS_EX_MDICHILD) != 0) {
1207                                 SetMdiStyles (cp);
1208                         }
1209
1210                         Win32SetWindowLong(handle, WindowLong.GWL_STYLE, (uint)cp.Style);
1211                         Win32SetWindowLong(handle, WindowLong.GWL_EXSTYLE, (uint)cp.ExStyle);
1212                 }
1213
1214                 
1215                 internal override void SetWindowTransparency(IntPtr handle, double transparency, Color key) {
1216                         LayeredWindowAttributes lwa = LayeredWindowAttributes.LWA_ALPHA;
1217                         byte opacity = (byte)(transparency*255);
1218                         COLORREF clrRef = new COLORREF();
1219                         if (key != Color.Empty) {
1220                                 clrRef.R = key.R;
1221                                 clrRef.G = key.G;
1222                                 clrRef.B = key.B;
1223                                 lwa = (LayeredWindowAttributes)( (int)lwa | (int)LayeredWindowAttributes.LWA_COLORKEY );
1224                         }
1225                         RECT rc;
1226                         rc.right = 1000;
1227                         rc.bottom = 1000;
1228                         Win32SetLayeredWindowAttributes(handle, clrRef, opacity, lwa);
1229                 }
1230
1231                 internal override bool SupportsTransparency() {
1232                         // We might check with the OS, but I think we're only >=W2k
1233                         return true;
1234                 }
1235
1236                 internal override void UpdateWindow(IntPtr handle) {
1237                         Win32UpdateWindow(handle);
1238                 }
1239
1240                 internal override PaintEventArgs PaintEventStart(IntPtr handle, bool client) {
1241                         IntPtr          hdc;
1242                         PAINTSTRUCT     ps;
1243                         PaintEventArgs  paint_event;
1244                         RECT            rect;
1245                         Rectangle       clip_rect;
1246                         Hwnd            hwnd;
1247
1248                         clip_rect = new Rectangle();
1249                         rect = new RECT();
1250                         ps = new PAINTSTRUCT();
1251
1252                         hwnd = Hwnd.ObjectFromHandle(handle);
1253
1254                         if (client) {
1255                                 if (Win32GetUpdateRect(handle, ref rect, false)) {
1256                                         hdc = Win32BeginPaint(handle, ref ps);
1257
1258                                         hwnd.drawing_stack.Push (ps);
1259
1260                                         clip_rect = new Rectangle(ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right-ps.rcPaint.left, ps.rcPaint.bottom-ps.rcPaint.top);
1261                                 } else {
1262                                         hdc = Win32GetDC(handle);
1263                                         // FIXME: Add the DC to internal list
1264
1265                                         hwnd.drawing_stack.Push (null);
1266
1267                                         clip_rect = new Rectangle(rect.top, rect.left, rect.right-rect.left, rect.bottom-rect.top);
1268                                 }
1269                         } else {
1270                                 hdc = Win32GetWindowDC (handle);
1271
1272                                 hwnd.drawing_stack.Push (hdc);
1273
1274                                 // HACK this in for now
1275                                 Win32GetWindowRect (handle, out rect);
1276                                 clip_rect = new Rectangle(0, 0, rect.right-rect.left, rect.bottom-rect.top);
1277                         }
1278
1279                         Graphics dc = Graphics.FromHdc(hdc);
1280                         hwnd.drawing_stack.Push (dc);
1281
1282                         paint_event = new PaintEventArgs(dc, clip_rect);
1283
1284                         return paint_event;
1285                 }
1286
1287                 internal override void PaintEventEnd(IntPtr handle, bool client) {
1288                         Hwnd            hwnd;
1289
1290                         hwnd = Hwnd.ObjectFromHandle(handle);
1291
1292                         Graphics dc = (Graphics)hwnd.drawing_stack.Pop();
1293                         dc.Dispose ();
1294
1295                         if (client) {
1296                                 object o = hwnd.drawing_stack.Pop();
1297                                 if (o != null) {
1298                                         PAINTSTRUCT ps = (PAINTSTRUCT)o;
1299                                         Win32EndPaint(handle, ref ps);
1300                                 }
1301                         } else {
1302                                 IntPtr hdc = (IntPtr)hwnd.drawing_stack.Pop();
1303                                 Win32ReleaseDC(handle, hdc);
1304                         }
1305                 }
1306
1307
1308                 internal override void SetWindowPos(IntPtr handle, int x, int y, int width, int height) {
1309                         Win32MoveWindow(handle, x, y, width, height, true);
1310                         return;
1311                 }
1312
1313                 internal override void GetWindowPos(IntPtr handle, bool is_toplevel, out int x, out int y, out int width, out int height, out int client_width, out int client_height) {
1314                         IntPtr  parent;
1315                         RECT    rect;
1316                         POINT   pt;
1317
1318                         Win32GetWindowRect(handle, out rect);
1319                         width = rect.right - rect.left;
1320                         height = rect.bottom - rect.top;
1321
1322                         pt.x=rect.left;
1323                         pt.y=rect.top;
1324
1325                         parent = Win32GetParent(handle);
1326                         Win32ScreenToClient(parent, ref pt);
1327
1328                         x = pt.x;
1329                         y = pt.y;
1330
1331                         Win32GetClientRect(handle, out rect);
1332                         client_width = rect.right - rect.left;
1333                         client_height = rect.bottom - rect.top;
1334                         return;
1335                 }
1336
1337                 internal override void Activate(IntPtr handle) {
1338                         Win32SetActiveWindow(handle);
1339                 }
1340
1341                 internal override void Invalidate(IntPtr handle, Rectangle rc, bool clear) {
1342                         RECT rect;
1343
1344                         rect.left=rc.Left;
1345                         rect.top=rc.Top;
1346                         rect.right=rc.Right;
1347                         rect.bottom=rc.Bottom;
1348                         Win32InvalidateRect(handle, ref rect, clear);
1349                 }
1350
1351
1352                 internal override void InvalidateNC (IntPtr handle)
1353                 {
1354                         // found this gem at
1355                         // http://www.dotnet247.com/247reference/msgs/58/292037.aspx
1356                         Win32SetWindowPos(handle, IntPtr.Zero,
1357                                           0, 0, 0, 0,
1358                                           SetWindowPosFlags.SWP_NOMOVE |
1359                                           SetWindowPosFlags.SWP_NOSIZE |
1360                                           SetWindowPosFlags.SWP_NOZORDER |
1361                                           SetWindowPosFlags.SWP_NOACTIVATE |
1362                                           SetWindowPosFlags.SWP_DRAWFRAME);
1363                 }
1364
1365                 internal override IntPtr DefWndProc(ref Message msg) {
1366                         msg.Result=Win32DefWindowProc(msg.HWnd, (Msg)msg.Msg, msg.WParam, msg.LParam);
1367                         return msg.Result;
1368                 }
1369
1370                 internal override void HandleException(Exception e) {
1371                         StackTrace st = new StackTrace(e);
1372                         Win32MessageBox(IntPtr.Zero, e.Message+st.ToString(), "Exception", 0);
1373                         Console.WriteLine("{0}{1}", e.Message, st.ToString());
1374                 }
1375
1376                 internal override void DoEvents() {
1377                         MSG msg = new MSG();
1378
1379                         if (override_cursor != IntPtr.Zero) {
1380                                 Cursor.Current = null;
1381                         }
1382
1383                         while (GetMessage(ref msg, IntPtr.Zero, 0, 0, false)) {
1384                                 XplatUI.TranslateMessage(ref msg);
1385                                 XplatUI.DispatchMessage(ref msg);
1386                         }
1387                 }
1388
1389                 internal override bool PeekMessage(Object queue_id, ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax, uint flags) {
1390                         return Win32PeekMessage(ref msg, hWnd, wFilterMin, wFilterMax, flags);
1391                 }
1392
1393                 internal override void PostQuitMessage(int exitCode) {
1394                         Win32PostQuitMessage(exitCode);
1395                 }
1396
1397                 internal override void RequestNCRecalc(IntPtr handle) {
1398                         Win32SetWindowPos(handle, IntPtr.Zero, 0, 0, 0, 0, SetWindowPosFlags.SWP_FRAMECHANGED | SetWindowPosFlags.SWP_NOOWNERZORDER | SetWindowPosFlags.SWP_NOSIZE | SetWindowPosFlags.SWP_NOMOVE);
1399                 }
1400
1401                 internal override void ResetMouseHover(IntPtr handle) {
1402                         TRACKMOUSEEVENT tme;
1403
1404                         tme = new TRACKMOUSEEVENT();
1405                         tme.size = Marshal.SizeOf(tme);
1406                         tme.hWnd = handle;
1407                         tme.dwFlags = TMEFlags.TME_LEAVE | TMEFlags.TME_HOVER;
1408                         Win32TrackMouseEvent(ref tme);
1409                 }
1410
1411
1412                 internal override bool GetMessage(Object queue_id, ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax) {
1413                         return GetMessage(ref msg, hWnd, wFilterMin, wFilterMax, true);
1414                 }
1415
1416                 private bool GetMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax, bool blocking) {
1417                         bool            result;
1418
1419                         if (RetrieveMessage(ref msg)) {
1420                                 return true;
1421                         }
1422
1423                         if (blocking) {
1424                                 result = Win32GetMessage(ref msg, hWnd, wFilterMin, wFilterMax);
1425                         } else {
1426                                 result = Win32PeekMessage(ref msg, hWnd, wFilterMin, wFilterMax, (uint)PeekMessageFlags.PM_REMOVE);
1427                                 if (!result) {
1428                                         return false;
1429                                 }
1430                         }
1431
1432                         // We need to fake WM_MOUSE_ENTER/WM_MOUSE_LEAVE
1433                         switch (msg.message) {
1434                                 case Msg.WM_LBUTTONDOWN: {
1435                                         mouse_state |= MouseButtons.Left;
1436                                         break;
1437                                 }
1438
1439                                 case Msg.WM_MBUTTONDOWN: {
1440                                         mouse_state |= MouseButtons.Middle;
1441                                         break;
1442                                 }
1443
1444                                 case Msg.WM_RBUTTONDOWN: {
1445                                         mouse_state |= MouseButtons.Right;
1446                                         break;
1447                                 }
1448
1449                                 case Msg.WM_LBUTTONUP: {
1450                                         mouse_state &= ~MouseButtons.Left;
1451                                         break;
1452                                 }
1453
1454                                 case Msg.WM_MBUTTONUP: {
1455                                         mouse_state &= ~MouseButtons.Middle;
1456                                         break;
1457                                 }
1458
1459                                 case Msg.WM_RBUTTONUP: {
1460                                         mouse_state &= ~MouseButtons.Right;
1461                                         break;
1462                                 }
1463
1464                                 case Msg.WM_ASYNC_MESSAGE: {
1465                                         XplatUIDriverSupport.ExecuteClientMessage((GCHandle)msg.lParam);
1466                                         break;
1467                                 }
1468
1469                                 case Msg.WM_MOUSEMOVE: {
1470                                         if (msg.hwnd != prev_mouse_hwnd) {
1471                                                 TRACKMOUSEEVENT tme;
1472
1473                                                 // The current message will be sent out next time around
1474                                                 StoreMessage(ref msg);
1475
1476                                                 // This is the message we want to send at this point
1477                                                 msg.message = Msg.WM_MOUSE_ENTER;
1478
1479                                                 prev_mouse_hwnd = msg.hwnd;
1480
1481                                                 tme = new TRACKMOUSEEVENT();
1482                                                 tme.size = Marshal.SizeOf(tme);
1483                                                 tme.hWnd = msg.hwnd;
1484                                                 tme.dwFlags = TMEFlags.TME_LEAVE | TMEFlags.TME_HOVER;
1485                                                 Win32TrackMouseEvent(ref tme);
1486                                                 return result;
1487                                         }
1488                                         break;
1489                                 }
1490
1491                                 case Msg.WM_DROPFILES: {
1492                                         return Win32DnD.HandleWMDropFiles(ref msg);
1493                                 }
1494
1495                                 case Msg.WM_MOUSELEAVE: {
1496                                         prev_mouse_hwnd = IntPtr.Zero;
1497                                         msg.message=Msg.WM_MOUSE_LEAVE;
1498                                         break;
1499                                 }
1500
1501                                 case Msg.WM_TIMER: {
1502                                         Timer timer=(Timer)timer_list[(int)msg.wParam];
1503
1504                                         if (timer != null) {
1505                                                 timer.FireTick();
1506                                         }
1507                                         break;
1508                                 }
1509                         }
1510
1511                         return result;
1512                 }
1513
1514                 internal override bool TranslateMessage(ref MSG msg) {
1515                         return Win32TranslateMessage(ref msg);
1516                 }
1517
1518                 internal override IntPtr DispatchMessage(ref MSG msg) {
1519                         return Win32DispatchMessage(ref msg);
1520                 }
1521
1522                 internal override bool SetZOrder(IntPtr hWnd, IntPtr AfterhWnd, bool Top, bool Bottom) {
1523                         if (Top) {
1524                                 Win32SetWindowPos(hWnd, SetWindowPosZOrder.HWND_TOP, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE);
1525                                 return true;
1526                         } else if (!Bottom) {
1527                                 Win32SetWindowPos(hWnd, AfterhWnd, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE);
1528                         } else {
1529                                 Win32SetWindowPos(hWnd, (IntPtr)SetWindowPosZOrder.HWND_BOTTOM, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE);
1530                                 return true;
1531                         }
1532                         return false;
1533                 }
1534
1535                 internal override bool SetTopmost(IntPtr hWnd, IntPtr hWndOwner, bool Enabled) {
1536                         if (Enabled) {
1537                                 Win32SetWindowPos(hWnd, SetWindowPosZOrder.HWND_TOPMOST, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE);
1538                                 return true;
1539                         } else {
1540                                 Win32SetWindowPos(hWnd, SetWindowPosZOrder.HWND_NOTOPMOST, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE);
1541                                 return true;
1542                         }
1543                 }
1544
1545                 internal override bool Text(IntPtr handle, string text) {
1546                         Win32SetWindowText(handle, text);
1547                         return true;
1548                 }
1549
1550                 internal override bool GetText(IntPtr handle, out string text) {
1551                         StringBuilder sb;
1552
1553                         sb = new StringBuilder(256);
1554                         Win32GetWindowText(handle, sb, sb.Capacity);
1555                         text = sb.ToString();
1556                         return true;
1557                 }
1558
1559                 internal override bool SetVisible (IntPtr handle, bool visible, bool activate)
1560                 {
1561                         if (visible) {
1562                                 if (Control.FromHandle (handle) is Form) {
1563                                         Form f;
1564
1565                                         f = (Form)Control.FromHandle (handle);
1566                                         WindowPlacementFlags flags = WindowPlacementFlags.SW_SHOWNORMAL;
1567                                         switch (f.WindowState) {
1568                                                 case FormWindowState.Normal: flags = WindowPlacementFlags.SW_SHOWNORMAL; break;
1569                                                 case FormWindowState.Minimized: flags = WindowPlacementFlags.SW_MINIMIZE; break;
1570                                                 case FormWindowState.Maximized: flags = WindowPlacementFlags.SW_MAXIMIZE; break;
1571                                         }
1572                                         
1573                                         if (Hwnd.ObjectFromHandle (handle).no_activate)
1574                                                 flags |= WindowPlacementFlags.SW_SHOWNOACTIVATE;
1575                                                 
1576                                         Win32ShowWindow (handle, flags);
1577                                 }
1578                                 else {
1579                                         if (Hwnd.ObjectFromHandle (handle).no_activate)
1580                                                 Win32ShowWindow (handle, WindowPlacementFlags.SW_SHOWNOACTIVATE);
1581                                         else
1582                                                 Win32ShowWindow (handle, WindowPlacementFlags.SW_SHOWNORMAL);
1583                                 }
1584                         }
1585                         else {
1586                                 Win32ShowWindow (handle, WindowPlacementFlags.SW_HIDE);
1587                         }
1588                         return true;
1589                 }
1590
1591                 internal override bool IsEnabled(IntPtr handle) {
1592                         return IsWindowEnabled (handle);
1593                 }
1594                 
1595                 internal override bool IsVisible(IntPtr handle) {
1596                         return IsWindowVisible (handle);
1597                 }
1598
1599                 internal override IntPtr SetParent(IntPtr handle, IntPtr parent) {
1600                         Control c = Control.FromHandle (handle);
1601                         if (parent == IntPtr.Zero) {
1602                                 if (!(c is Form)) {
1603                                         Win32ShowWindow(handle, WindowPlacementFlags.SW_HIDE);
1604                                 }
1605                         }
1606                         else
1607                                 SetVisible (handle, c.is_visible, true);
1608                                 
1609                         if (parent == IntPtr.Zero)
1610                                 return Win32SetParent (handle, FosterParent);
1611                         else
1612                                 return Win32SetParent(handle, parent);
1613                 }
1614
1615                 // If we ever start using this, we should probably replace FosterParent with IntPtr.Zero
1616                 internal override IntPtr GetParent(IntPtr handle) {
1617                         return Win32GetParent(handle);
1618                 }
1619
1620                 internal override void GrabWindow(IntPtr hWnd, IntPtr ConfineToHwnd) {
1621                         grab_hwnd = hWnd;
1622                         Win32SetCapture(hWnd);
1623                 }
1624
1625                 internal override void GrabInfo(out IntPtr hWnd, out bool GrabConfined, out Rectangle GrabArea) {
1626                         hWnd = grab_hwnd;
1627                         GrabConfined = grab_confined;
1628                         GrabArea = grab_area;
1629                 }
1630
1631                 internal override void UngrabWindow(IntPtr hWnd) {
1632                         Win32ReleaseCapture();
1633                         grab_hwnd = IntPtr.Zero;
1634                 }
1635
1636                 internal override bool CalculateWindowRect(ref Rectangle ClientRect, int Style, int ExStyle, Menu menu, out Rectangle WindowRect) {
1637                         RECT    rect;
1638
1639                         rect.left=ClientRect.Left;
1640                         rect.top=ClientRect.Top;
1641                         rect.right=ClientRect.Right;
1642                         rect.bottom=ClientRect.Bottom;
1643
1644                         if (!Win32AdjustWindowRectEx(ref rect, Style, menu != null, ExStyle)) {
1645                                 WindowRect = new Rectangle(ClientRect.Left, ClientRect.Top, ClientRect.Width, ClientRect.Height);
1646                                 return false;
1647                         }
1648
1649                         WindowRect = new Rectangle(rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top);
1650                         return true;
1651                 }
1652
1653                 internal override void SetCursor(IntPtr window, IntPtr cursor) {
1654                         Win32SetCursor(cursor);
1655                         return;
1656                 }
1657
1658                 internal override void ShowCursor(bool show) {
1659                         Win32ShowCursor(show);
1660                 }
1661
1662                 internal override void OverrideCursor(IntPtr cursor) {
1663                         Win32SetCursor(cursor);
1664                 }
1665
1666                 internal override IntPtr DefineCursor(Bitmap bitmap, Bitmap mask, Color cursor_pixel, Color mask_pixel, int xHotSpot, int yHotSpot) {
1667                         IntPtr  cursor;
1668                         Bitmap  cursor_bitmap;
1669                         Bitmap  cursor_mask;
1670                         Byte[]  cursor_bits;
1671                         Byte[]  mask_bits;
1672                         Color   pixel;
1673                         int     width;
1674                         int     height;
1675
1676                         // Win32 only allows creation cursors of a certain size
1677                         if ((bitmap.Width != Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR)) || (bitmap.Width != Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR))) {
1678                                 cursor_bitmap = new Bitmap(bitmap, new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR), Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR)));
1679                                 cursor_mask = new Bitmap(mask, new Size(Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR), Win32GetSystemMetrics(SystemMetrics.SM_CXCURSOR)));
1680                         } else {
1681                                 cursor_bitmap = bitmap;
1682                                 cursor_mask = mask;
1683                         }
1684
1685                         width = cursor_bitmap.Width;
1686                         height = cursor_bitmap.Height;
1687
1688                         cursor_bits = new Byte[(width / 8) * height];
1689                         mask_bits = new Byte[(width / 8) * height];
1690
1691                         for (int y = 0; y < height; y++) {
1692                                 for (int x = 0; x < width; x++) {
1693                                         pixel = cursor_bitmap.GetPixel(x, y);
1694
1695                                         if (pixel == cursor_pixel) {
1696                                                 cursor_bits[y * width / 8 + x / 8] |= (byte)(0x80 >> (x % 8));
1697                                         }
1698
1699                                         pixel = cursor_mask.GetPixel(x, y);
1700
1701                                         if (pixel == mask_pixel) {
1702                                                 mask_bits[y * width / 8 + x / 8] |= (byte)(0x80 >> (x % 8));
1703                                         }
1704                                 }
1705                         }
1706
1707                         cursor = Win32CreateCursor(IntPtr.Zero, xHotSpot, yHotSpot, width, height, mask_bits, cursor_bits);
1708
1709                         return cursor;
1710                 }
1711
1712                 [MonoTODO("Define the missing cursors")]
1713                 internal override IntPtr DefineStdCursor(StdCursor id) {
1714                         switch(id) {
1715                                 case StdCursor.AppStarting:     return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_APPSTARTING);
1716                                 case StdCursor.Arrow:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);
1717                                 case StdCursor.Cross:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_CROSS);
1718                                 case StdCursor.Default:         return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);
1719                                 case StdCursor.Hand:            return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_HAND);
1720                                 case StdCursor.Help:            return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_HELP);
1721                                 case StdCursor.HSplit:          return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1722                                 case StdCursor.IBeam:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_IBEAM);
1723                                 case StdCursor.No:              return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_NO);
1724                                 case StdCursor.NoMove2D:        return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1725                                 case StdCursor.NoMoveHoriz:     return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1726                                 case StdCursor.NoMoveVert:      return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1727                                 case StdCursor.PanEast:         return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1728                                 case StdCursor.PanNE:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1729                                 case StdCursor.PanNorth:        return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1730                                 case StdCursor.PanNW:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1731                                 case StdCursor.PanSE:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1732                                 case StdCursor.PanSouth:        return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1733                                 case StdCursor.PanSW:           return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1734                                 case StdCursor.PanWest:         return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1735                                 case StdCursor.SizeAll:         return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_SIZEALL);
1736                                 case StdCursor.SizeNESW:        return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_SIZENESW);
1737                                 case StdCursor.SizeNS:          return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_SIZENS);
1738                                 case StdCursor.SizeNWSE:        return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_SIZENWSE);
1739                                 case StdCursor.SizeWE:          return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_SIZEWE);
1740                                 case StdCursor.UpArrow:         return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_UPARROW);
1741                                 case StdCursor.VSplit:          return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_ARROW);          // FIXME
1742                                 case StdCursor.WaitCursor:      return Win32LoadCursor(IntPtr.Zero, LoadCursorType.IDC_WAIT);
1743                         }
1744                         throw new NotImplementedException ();
1745                 }
1746
1747                 internal override void DestroyCursor(IntPtr cursor) {
1748                         if ((cursor.ToInt32() < (int)LoadCursorType.First) || (cursor.ToInt32() > (int)LoadCursorType.Last)) {
1749                                 Win32DestroyCursor(cursor);
1750                         }
1751                 }
1752
1753                 [MonoTODO]
1754                 internal override void GetCursorInfo(IntPtr cursor, out int width, out int height, out int hotspot_x, out int hotspot_y) {
1755                         width = 20;
1756                         height = 20;
1757                         hotspot_x = 0;
1758                         hotspot_y = 0;
1759                 }
1760
1761                 internal override void SetCursorPos(IntPtr handle, int x, int y) {
1762                         Win32SetCursorPos(x, y);
1763                 }
1764
1765                 internal override Region GetClipRegion(IntPtr hwnd) {
1766                         Region region;
1767
1768                         region = new Region();
1769
1770                         Win32GetWindowRgn(hwnd, region.GetHrgn(Graphics.FromHwnd(hwnd)));
1771
1772                         return region;
1773                 }
1774
1775                 internal override void SetClipRegion(IntPtr hwnd, Region region) {
1776                         Win32SetWindowRgn(hwnd, region.GetHrgn(Graphics.FromHwnd(hwnd)), true);
1777                 }
1778
1779                 internal override void EnableWindow(IntPtr handle, bool Enable) {
1780                         Win32EnableWindow(handle, Enable);
1781                 }
1782
1783                 internal override void EndLoop(System.Threading.Thread thread) {
1784                         // Nothing to do
1785                 }
1786
1787                 internal override object StartLoop(System.Threading.Thread thread) {
1788                         return null;
1789                 }
1790
1791                 internal override void SetModal(IntPtr handle, bool Modal) {
1792                         // we do nothing on Win32
1793                 }
1794
1795                 internal override void GetCursorPos(IntPtr handle, out int x, out int y) {
1796                         POINT   pt;
1797
1798                         Win32GetCursorPos(out pt);
1799
1800                         if (handle!=IntPtr.Zero) {
1801                                 Win32ScreenToClient(handle, ref pt);
1802                         }
1803
1804                         x=pt.x;
1805                         y=pt.y;
1806                 }
1807
1808                 internal override void ScreenToClient(IntPtr handle, ref int x, ref int y)
1809                 {
1810                         POINT pnt = new POINT();                        
1811
1812                         pnt.x = x;
1813                         pnt.y = y;
1814                         Win32ScreenToClient (handle, ref pnt);
1815
1816                         x = pnt.x;
1817                         y = pnt.y;
1818                 }
1819
1820                 internal override void ClientToScreen(IntPtr handle, ref int x, ref int y) {                    
1821                         POINT   pnt = new POINT();                      
1822
1823                         pnt.x = x;
1824                         pnt.y = y;
1825
1826                         Win32ClientToScreen(handle, ref pnt);
1827
1828                         x = pnt.x;
1829                         y = pnt.y;
1830                 }
1831
1832                 internal override void ScreenToMenu(IntPtr handle, ref int x, ref int y) {
1833                         RECT    rect;
1834  
1835                         Win32GetWindowRect(handle, out rect);
1836                         x -= rect.left + SystemInformation.FrameBorderSize.Width;
1837                         y -= rect.top + SystemInformation.FrameBorderSize.Height + ThemeEngine.Current.CaptionHeight;
1838                         return;
1839                 }
1840   
1841                 internal override void MenuToScreen(IntPtr handle, ref int x, ref int y) {                      
1842                         RECT    rect;
1843  
1844                         Win32GetWindowRect(handle, out rect);
1845                         x += rect.left + SystemInformation.FrameBorderSize.Width;
1846                         y += rect.top + SystemInformation.FrameBorderSize.Height + ThemeEngine.Current.CaptionHeight;
1847                         return;
1848                 }
1849   
1850                 internal override void SendAsyncMethod (AsyncMethodData method)
1851                 {
1852                         Win32PostMessage(FosterParent, Msg.WM_ASYNC_MESSAGE, IntPtr.Zero, (IntPtr)GCHandle.Alloc (method));
1853                 }
1854
1855                 internal override void SetTimer (Timer timer)
1856                 {
1857                         int     index;
1858
1859                         index = timer.GetHashCode();
1860
1861                         lock (timer_list) {
1862                                 timer_list[index]=timer;
1863                         }
1864
1865                         Win32SetTimer(FosterParent, index, (uint)timer.Interval, IntPtr.Zero);
1866                 }
1867
1868                 internal override void KillTimer (Timer timer)
1869                 {
1870                         int     index;
1871
1872                         index = timer.GetHashCode();
1873
1874                         Win32KillTimer(FosterParent, index);
1875
1876                         lock (timer_list) {
1877                                 timer_list.Remove(index);
1878                         }
1879                 }
1880
1881
1882                 private void CaretCallback(object sender, EventArgs e) {
1883                         Console.WriteLine("CaretCallback hit");
1884                 }
1885
1886                 private void SetMdiStyles (CreateParams cp)
1887                 {
1888                         cp.Style = (int)WindowStyles.WS_CHILD | (int)WindowStyles.WS_CLIPCHILDREN | (int)WindowStyles.WS_CLIPSIBLINGS;
1889                         cp.ExStyle = 0;
1890                 }
1891         
1892                 internal override void CreateCaret(IntPtr hwnd, int width, int height) {
1893                         Win32CreateCaret(hwnd, IntPtr.Zero, width, height);
1894                         caret_visible = false;
1895                 }
1896
1897                 internal override void DestroyCaret(IntPtr hwnd) {
1898                         Win32DestroyCaret();
1899                 }
1900
1901                 internal override void SetCaretPos(IntPtr hwnd, int x, int y) {
1902                         Win32SetCaretPos(x, y);
1903                 }
1904
1905                 internal override void CaretVisible(IntPtr hwnd, bool visible) {
1906                         if (visible) {
1907                                 if (!caret_visible) {
1908                                         Win32ShowCaret(hwnd);
1909                                         caret_visible = true;
1910                                 }
1911                         } else {
1912                                 if (caret_visible) {
1913                                         Win32HideCaret(hwnd);
1914                                         caret_visible = false;
1915                                 }
1916                         }
1917                 }
1918
1919                 internal override IntPtr GetFocus() {
1920                         return Win32GetFocus();
1921                 }
1922
1923                 internal override void SetFocus(IntPtr hwnd) {
1924                         Win32SetFocus(hwnd);
1925                 }
1926
1927                 internal override IntPtr GetActive() {
1928                         return Win32GetActiveWindow();
1929                 }
1930
1931                 internal override bool GetFontMetrics(Graphics g, Font font, out int ascent, out int descent) {
1932                         IntPtr          dc;
1933                         TEXTMETRIC      tm;
1934
1935                         tm = new TEXTMETRIC();
1936
1937                         dc = Win32GetDC(IntPtr.Zero);
1938                         Win32SelectObject(dc, font.ToHfont());
1939                         if (Win32GetTextMetrics(dc, ref tm) == false) {
1940                                 Win32ReleaseDC(IntPtr.Zero, dc);
1941                                 ascent = 0;
1942                                 descent = 0;
1943                                 return false;
1944                         }
1945                         Win32ReleaseDC(IntPtr.Zero, dc);
1946
1947                         ascent = tm.tmAscent;
1948                         descent = tm.tmDescent;
1949
1950                         return true;
1951                 }
1952
1953                 internal override void ScrollWindow(IntPtr hwnd, Rectangle rectangle, int XAmount, int YAmount, bool with_children) {
1954                         RECT    rect;
1955
1956                         rect = new RECT();
1957                         rect.left = rectangle.X;
1958                         rect.top = rectangle.Y;
1959                         rect.right = rectangle.Right;
1960                         rect.bottom = rectangle.Bottom;
1961
1962                         Win32ScrollWindowEx(hwnd, XAmount, YAmount, IntPtr.Zero, ref rect, IntPtr.Zero, IntPtr.Zero, ScrollWindowExFlags.SW_INVALIDATE | ScrollWindowExFlags.SW_ERASE | (with_children ? ScrollWindowExFlags.SW_SCROLLCHILDREN : ScrollWindowExFlags.SW_NONE));
1963                         Win32UpdateWindow(hwnd);
1964                 }
1965
1966                 internal override void ScrollWindow(IntPtr hwnd, int XAmount, int YAmount, bool with_children) {
1967                         Win32ScrollWindowEx(hwnd, XAmount, YAmount, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, ScrollWindowExFlags.SW_INVALIDATE | ScrollWindowExFlags.SW_ERASE | (with_children ? ScrollWindowExFlags.SW_SCROLLCHILDREN : ScrollWindowExFlags.SW_NONE));
1968                 }
1969
1970                 internal override bool SystrayAdd(IntPtr hwnd, string tip, Icon icon, out ToolTip tt) {
1971                         NOTIFYICONDATA  nid;
1972
1973                         nid = new NOTIFYICONDATA();
1974
1975                         nid.cbSize = (uint)Marshal.SizeOf(nid);
1976                         nid.hWnd = hwnd;
1977                         nid.uID = 1;
1978                         nid.uCallbackMessage = (uint)Msg.WM_USER;
1979                         nid.uFlags = NotifyIconFlags.NIF_MESSAGE;
1980
1981                         if (tip != null) {       
1982                                 nid.szTip = tip;
1983                                 nid.uFlags |= NotifyIconFlags.NIF_TIP;
1984                         }
1985
1986                         if (icon != null) {
1987                                 nid.hIcon = icon.Handle;
1988                                 nid.uFlags |= NotifyIconFlags.NIF_ICON;
1989                         }
1990
1991                         tt = null;
1992
1993                         return Win32Shell_NotifyIcon(NotifyIconMessage.NIM_ADD, ref nid);
1994                 }
1995
1996                 internal override bool SystrayChange(IntPtr hwnd, string tip, Icon icon, ref ToolTip tt) {
1997                         NOTIFYICONDATA  nid;
1998
1999                         nid = new NOTIFYICONDATA();
2000
2001                         nid.cbSize = (uint)Marshal.SizeOf(nid);
2002                         nid.hIcon = icon.Handle;
2003                         nid.hWnd = hwnd;
2004                         nid.uID = 1;
2005                         nid.uCallbackMessage = (uint)Msg.WM_USER;
2006                         nid.uFlags = NotifyIconFlags.NIF_MESSAGE;
2007
2008                         if (tip != null) {
2009                                 nid.szTip = tip;
2010                                 nid.uFlags |= NotifyIconFlags.NIF_TIP;
2011                         }
2012
2013                         if (icon != null) {
2014                                 nid.hIcon = icon.Handle;
2015                                 nid.uFlags |= NotifyIconFlags.NIF_ICON;
2016                         }
2017
2018                         return Win32Shell_NotifyIcon(NotifyIconMessage.NIM_MODIFY, ref nid);
2019                 }
2020
2021                 internal override void SystrayRemove(IntPtr hwnd, ref ToolTip tt) {
2022                         NOTIFYICONDATA  nid;
2023
2024                         nid = new NOTIFYICONDATA();
2025
2026                         nid.cbSize = (uint)Marshal.SizeOf(nid);
2027                         nid.hWnd = hwnd;
2028                         nid.uID = 1;
2029                         nid.uFlags = 0;
2030
2031                         Win32Shell_NotifyIcon(NotifyIconMessage.NIM_DELETE, ref nid);
2032                 }
2033
2034
2035                 internal override void SetBorderStyle(IntPtr handle, FormBorderStyle border_style) {
2036                         uint    style;
2037                         uint    exstyle;
2038
2039                         style = Win32GetWindowLong(handle, WindowLong.GWL_STYLE);
2040                         exstyle = Win32GetWindowLong(handle, WindowLong.GWL_EXSTYLE);
2041
2042
2043                         switch (border_style) {
2044                                 case FormBorderStyle.None: {
2045                                         style &= ~(uint)WindowStyles.WS_BORDER;
2046                                         exstyle &= ~(uint)WindowExStyles.WS_EX_CLIENTEDGE;
2047                                         break;
2048                                 }
2049
2050                                 case FormBorderStyle.FixedSingle: {
2051                                         style |= (uint)WindowStyles.WS_BORDER;
2052                                         exstyle &= ~(uint)WindowExStyles.WS_EX_CLIENTEDGE;
2053                                         break;
2054                                 }
2055
2056                                 case FormBorderStyle.Fixed3D: {
2057                                         style &= ~(uint)WindowStyles.WS_BORDER;
2058                                         exstyle |= (uint)WindowExStyles.WS_EX_CLIENTEDGE;
2059                                         break;
2060                                 }
2061                         }
2062
2063                         Win32SetWindowLong(handle, WindowLong.GWL_STYLE, style);
2064                         Win32SetWindowLong(handle, WindowLong.GWL_EXSTYLE, exstyle);
2065                         
2066                         Win32SetWindowPos(handle, IntPtr.Zero, 0, 0, 0, 0, 
2067                                 SetWindowPosFlags.SWP_FRAMECHANGED | SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE | SetWindowPosFlags.SWP_NOACTIVATE | SetWindowPosFlags.SWP_NOOWNERZORDER | SetWindowPosFlags.SWP_NOZORDER);
2068                 }
2069
2070                 internal override void SetMenu(IntPtr handle, Menu menu) {
2071                         // Trigger WM_NCCALC
2072                         Win32SetWindowPos(handle, IntPtr.Zero, 0, 0, 0, 0, SetWindowPosFlags.SWP_FRAMECHANGED | SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE);
2073                 }
2074
2075
2076                 internal override Point GetMenuOrigin(IntPtr handle) {
2077                         return new Point(SystemInformation.FrameBorderSize.Width, SystemInformation.FrameBorderSize.Height + ThemeEngine.Current.CaptionHeight);
2078                 }
2079
2080                 internal override void SetIcon(IntPtr hwnd, Icon icon) {
2081                         Win32SendMessage(hwnd, Msg.WM_SETICON, (IntPtr)1, icon.Handle); // 1 = large icon (0 would be small)
2082                 }
2083
2084                 internal override void ClipboardClose(IntPtr handle) {
2085                         if (handle != clip_magic) {
2086                                 throw new ArgumentException("handle is not a valid clipboard handle");
2087                         }
2088                         Win32CloseClipboard();
2089                 }
2090
2091                 internal override int ClipboardGetID(IntPtr handle, string format) {
2092                         if (handle != clip_magic) {
2093                                 throw new ArgumentException("handle is not a valid clipboard handle");
2094                         }
2095                         if (format == "Text" ) return 1;
2096                         else if (format == "Bitmap" ) return 2;
2097                         else if (format == "MetaFilePict" ) return 3;
2098                         else if (format == "SymbolicLink" ) return 4;
2099                         else if (format == "DataInterchangeFormat" ) return 5;
2100                         else if (format == "Tiff" ) return 6;
2101                         else if (format == "OEMText" ) return 7;
2102                         else if (format == "DeviceIndependentBitmap" ) return 8;
2103                         else if (format == "Palette" ) return 9;
2104                         else if (format == "PenData" ) return 10;
2105                         else if (format == "RiffAudio" ) return 11;
2106                         else if (format == "WaveAudio" ) return 12;
2107                         else if (format == "UnicodeText" ) return 13;
2108                         else if (format == "EnhancedMetafile" ) return 14;
2109                         else if (format == "FileDrop" ) return 15;
2110                         else if (format == "Locale" ) return 16;
2111
2112                         return (int)Win32RegisterClipboardFormat(format);
2113                 }
2114
2115                 internal override IntPtr ClipboardOpen(bool primary_selection) {
2116                         // Win32 does not have primary selection
2117                         Win32OpenClipboard(FosterParent);
2118                         return clip_magic;
2119                 }
2120
2121                 internal override int[] ClipboardAvailableFormats(IntPtr handle) {
2122                         uint    format;
2123                         int[]   result;
2124                         int     count;
2125
2126                         if (handle != clip_magic) {
2127                                 return null;
2128                         }
2129
2130                         // Count first
2131                         count = 0;
2132                         format = 0;
2133                         do {
2134                                 format = Win32EnumClipboardFormats(format);
2135                                 if (format != 0) {
2136                                         count++;
2137                                 }
2138                         } while (format != 0);
2139
2140                         // Now assign
2141                         result = new int[count];
2142                         count = 0;
2143                         format = 0;
2144                         do {
2145                                 format = Win32EnumClipboardFormats(format);
2146                                 if (format != 0) {
2147                                         result[count++] = (int)format;
2148                                 }
2149                         } while (format != 0);
2150
2151                         return result;
2152                 }
2153
2154
2155                 internal override object ClipboardRetrieve(IntPtr handle, int type, XplatUI.ClipboardToObject converter) {
2156                         IntPtr  hmem;
2157                         IntPtr  data;
2158                         object  obj;
2159
2160                         if (handle != clip_magic) {
2161                                 throw new ArgumentException("handle is not a valid clipboard handle");
2162                         }
2163
2164                         hmem = Win32GetClipboardData((uint)type);
2165                         if (hmem == IntPtr.Zero) {
2166                                 return null;
2167                         }
2168
2169                         data = Win32GlobalLock(hmem);
2170                         if (data == IntPtr.Zero) {
2171                                 uint error = Win32GetLastError();
2172                                 Console.WriteLine("Error: {0}", error);
2173                                 return null;
2174                         }
2175
2176                         obj = null;
2177
2178                         if (type == DataFormats.GetFormat(DataFormats.Rtf).Id) {
2179                                 obj = AnsiToString(data);
2180                         } else switch ((ClipboardFormats)type) {
2181                                 case ClipboardFormats.CF_TEXT: {
2182                                         obj = AnsiToString(data);
2183                                         break;
2184                                 }
2185
2186                                 case ClipboardFormats.CF_DIB: {
2187                                         obj = DIBtoImage(data);
2188                                         break;
2189                                 }
2190
2191                                 case ClipboardFormats.CF_UNICODETEXT: {
2192                                         obj = UnicodeToString(data);
2193                                         break;
2194                                 }
2195
2196                                 default: {
2197                                         if (converter != null && !converter(type, data, out obj)) {
2198                                                 obj = null;
2199                                         }
2200                                         break;
2201                                 }
2202                         }
2203                         Win32GlobalUnlock(hmem);
2204
2205                         return obj;
2206
2207                 }
2208
2209                 internal override void ClipboardStore(IntPtr handle, object obj, int type, XplatUI.ObjectToClipboard converter) {
2210                         byte[]  data;
2211                         IntPtr  hmem;
2212                         IntPtr  hmem_ptr;
2213
2214                         if (handle != clip_magic) {
2215                                 throw new ArgumentException("handle is not a valid clipboard handle");
2216                         }
2217
2218                         if (obj == null) {
2219                                 // Just clear it
2220                                 Win32EmptyClipboard();
2221                                 return;
2222                         }
2223
2224                         if (type == -1) {
2225                                 if (obj is string) {
2226                                         type = (int)ClipboardFormats.CF_UNICODETEXT;
2227                                 } else if (obj is Image) {
2228                                         type = (int)ClipboardFormats.CF_DIB;
2229                                 }
2230                         }
2231
2232                         if (type == DataFormats.GetFormat(DataFormats.Rtf).Id) {
2233                                 hmem = Marshal.StringToHGlobalAnsi((string)obj);
2234                                 Win32SetClipboardData((uint)type, hmem);
2235                                 return;
2236                         } else switch((ClipboardFormats)type) {
2237                                 case ClipboardFormats.CF_UNICODETEXT: {
2238                                         hmem = Marshal.StringToHGlobalUni((string)obj);
2239                                         Win32SetClipboardData((uint)type, hmem);
2240                                         return;
2241                                 }
2242
2243                                 case ClipboardFormats.CF_TEXT: {
2244                                         hmem = Marshal.StringToHGlobalAnsi((string)obj);
2245                                         Win32SetClipboardData((uint)type, hmem);
2246                                         return;
2247                                 }
2248
2249                                 case ClipboardFormats.CF_BITMAP:
2250                                 case ClipboardFormats.CF_DIB: {
2251                                         data = ImageToDIB((Image)obj);
2252
2253                                         hmem = Win32GlobalAlloc(GAllocFlags.GMEM_MOVEABLE | GAllocFlags.GMEM_DDESHARE, data.Length);
2254                                         hmem_ptr = Win32GlobalLock(hmem);
2255                                         Marshal.Copy(data, 0, hmem_ptr, data.Length);
2256                                         Win32GlobalUnlock(hmem);
2257                                         Win32SetClipboardData((uint)ClipboardFormats.CF_DIB, hmem);
2258                                         return;
2259                                 }
2260
2261                                 default: {
2262                                         if (converter != null && converter(ref type, obj, out data)) {
2263                                                 hmem = Win32GlobalAlloc(GAllocFlags.GMEM_MOVEABLE | GAllocFlags.GMEM_DDESHARE, data.Length);
2264                                                 hmem_ptr = Win32GlobalLock(hmem);
2265                                                 Marshal.Copy(data, 0, hmem_ptr, data.Length);
2266                                                 Win32GlobalUnlock(hmem);
2267                                                 Win32SetClipboardData((uint)type, hmem);
2268                                         }
2269                                         return;
2270                                 }
2271                         }
2272                 }
2273
2274                 internal override void SetAllowDrop(IntPtr hwnd, bool allowed) {
2275                         if (allowed) {
2276                                 Win32DnD.RegisterDropTarget(hwnd);
2277                         } else {
2278                                 Win32DnD.UnregisterDropTarget(hwnd);
2279                         }
2280                 }
2281
2282                 internal override DragDropEffects StartDrag(IntPtr hwnd, object data, DragDropEffects allowedEffects) {
2283                         return Win32DnD.StartDrag(hwnd, data, allowedEffects);
2284                 }
2285
2286                 internal override void DrawReversibleRectangle(IntPtr handle, Rectangle rect, int line_width) {
2287                         IntPtr          hdc;
2288                         IntPtr          pen;
2289                         IntPtr          oldpen;
2290                         POINT           pt;
2291
2292                         pt = new POINT();
2293                         pt.x = 0;
2294                         pt.y = 0;
2295                         Win32ClientToScreen(handle, ref pt);
2296
2297                         // If we want the standard hatch pattern we would
2298                         // need to create a brush
2299
2300                         // Grab a pen
2301                         pen = Win32CreatePen(PenStyle.PS_SOLID, line_width, IntPtr.Zero);
2302
2303                         hdc = Win32GetDC(IntPtr.Zero);
2304                         Win32SetROP2(hdc, ROP2DrawMode.R2_NOT);
2305                         oldpen = Win32SelectObject(hdc, pen);
2306
2307                         Control c = Control.FromHandle (handle);
2308                         if (c != null) {
2309                                 Region r = new Region(new Rectangle(c.PointToScreen (c.Location), c.Size));
2310
2311                                 Win32ExtSelectClipRgn(hdc, r.GetHrgn (Graphics.FromHdc (hdc)), (int) ClipCombineMode.RGN_AND);
2312                         }
2313
2314                         Win32MoveToEx(hdc, pt.x + rect.Left, pt.y + rect.Top, IntPtr.Zero);
2315                         if ((rect.Width > 0) && (rect.Height > 0)) {
2316                                 Win32LineTo(hdc, pt.x + rect.Right, pt.y + rect.Top);
2317                                 Win32LineTo(hdc, pt.x + rect.Right, pt.y + rect.Bottom);
2318                                 Win32LineTo(hdc, pt.x + rect.Left, pt.y + rect.Bottom);
2319                                 Win32LineTo(hdc, pt.x + rect.Left, pt.y + rect.Top);
2320                         } else {
2321                                 if (rect.Width > 0) {
2322                                         Win32LineTo(hdc, pt.x + rect.Right, pt.y + rect.Top);
2323                                 } else {
2324                                         Win32LineTo(hdc, pt.x + rect.Left, pt.y + rect.Bottom);
2325                                 }
2326                         }
2327
2328                         Win32SelectObject(hdc, oldpen);
2329                         Win32DeleteObject(pen);
2330                         if (c != null)
2331                                 Win32ExtSelectClipRgn(hdc, IntPtr.Zero, (int) ClipCombineMode.RGN_COPY);
2332
2333                         Win32ReleaseDC(IntPtr.Zero, hdc);
2334                 }
2335
2336                 internal override SizeF GetAutoScaleSize(Font font) {
2337                         Graphics        g;
2338                         float           width;
2339                         string          magic_string = "The quick brown fox jumped over the lazy dog.";
2340                         double          magic_number = 44.549996948242189;
2341
2342                         g = Graphics.FromHwnd(FosterParent);
2343
2344                         width = (float) (g.MeasureString (magic_string, font).Width / magic_number);
2345                         return new SizeF(width, font.Height);
2346                 }
2347
2348                 internal override IntPtr SendMessage (IntPtr hwnd, Msg message, IntPtr wParam, IntPtr lParam) {
2349                         return Win32SendMessage(hwnd, message, wParam, lParam);
2350                 }
2351
2352                 internal override bool PostMessage (IntPtr hwnd, Msg message, IntPtr wParam, IntPtr lParam) {
2353                         return Win32PostMessage(hwnd, message, wParam, lParam);
2354                 }
2355
2356                 internal override int KeyboardSpeed {
2357                         get {
2358                                 Console.WriteLine ("KeyboardSpeed: need to query Windows");
2359
2360                                 //
2361                                 // Return values range from 0 to 31 which map to 2.5 to 30 repetitions per second.
2362                                 //
2363                                 return 0;
2364                         }
2365                 }
2366
2367                 internal override int KeyboardDelay {
2368                         get {
2369                                 Console.WriteLine ("KeyboardDelay: need to query Windows");
2370
2371                                 //
2372                                 // Return values must range from 0 to 4, 0 meaning 250ms,
2373                                 // and 4 meaning 1000 ms.
2374                                 //
2375                                 return 1;
2376                         }
2377                 }
2378                 
2379                 internal override event EventHandler Idle;
2380
2381                 // Santa's little helper
2382                 static void Where() {
2383                         Console.WriteLine("Here: {0}", new StackTrace().ToString());
2384                 }
2385                 #endregion      // Public Static Methods
2386
2387                 #region Win32 Imports
2388                 [DllImport ("kernel32.dll", EntryPoint="GetLastError", CallingConvention=CallingConvention.StdCall)]
2389                 private extern static uint Win32GetLastError();
2390
2391                 [DllImport ("user32.dll", EntryPoint="CreateWindowExW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2392                 internal extern static IntPtr Win32CreateWindow(uint dwExStyle, string lpClassName, string lpWindowName, uint dwStyle, int x, int y, int nWidth, int nHeight, IntPtr hWndParent, IntPtr hMenu, IntPtr hInstance, IntPtr lParam);
2393
2394                 [DllImport ("user32.dll", EntryPoint="DestroyWindow", CallingConvention=CallingConvention.StdCall)]
2395                 internal extern static bool Win32DestroyWindow(IntPtr hWnd);
2396
2397                 [DllImport ("user32.dll", EntryPoint="PeekMessageW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2398                 internal extern static bool Win32PeekMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax, uint flags);
2399
2400                 [DllImport ("user32.dll", EntryPoint="GetMessageW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2401                 internal extern static bool Win32GetMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax);
2402
2403                 [DllImport ("user32.dll", EntryPoint="TranslateMessage", CallingConvention=CallingConvention.StdCall)]
2404                 internal extern static bool Win32TranslateMessage(ref MSG msg);
2405
2406                 [DllImport ("user32.dll", EntryPoint="DispatchMessageW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2407                 internal extern static IntPtr Win32DispatchMessage(ref MSG msg);
2408
2409                 [DllImport ("user32.dll", EntryPoint="MoveWindow", CallingConvention=CallingConvention.StdCall)]
2410                 internal extern static bool Win32MoveWindow(IntPtr hWnd, int x, int y, int width, int height, bool repaint);
2411
2412                 [DllImport ("user32.dll", EntryPoint="SetWindowPos", CallingConvention=CallingConvention.StdCall)]
2413                 internal extern static bool Win32SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, SetWindowPosFlags Flags);
2414
2415                 [DllImport ("user32.dll", EntryPoint="SetWindowPos", CallingConvention=CallingConvention.StdCall)]
2416                 internal extern static bool Win32SetWindowPos(IntPtr hWnd, SetWindowPosZOrder pos, int x, int y, int cx, int cy, SetWindowPosFlags Flags);
2417
2418                 [DllImport ("user32.dll", EntryPoint="SetWindowTextW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2419                 internal extern static bool Win32SetWindowText(IntPtr hWnd, string lpString);
2420
2421                 [DllImport ("user32.dll", EntryPoint="GetWindowTextW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2422                 internal extern static bool Win32GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
2423
2424                 [DllImport ("user32.dll", EntryPoint="SetParent", CallingConvention=CallingConvention.StdCall)]
2425                 internal extern static IntPtr Win32SetParent(IntPtr hWnd, IntPtr hParent);
2426
2427                 [DllImport ("user32.dll", EntryPoint="RegisterClassW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2428                 private extern static bool Win32RegisterClass(ref WNDCLASS wndClass);
2429
2430                 [DllImport ("user32.dll", EntryPoint="LoadCursorW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2431                 private extern static IntPtr Win32LoadCursor(IntPtr hInstance, LoadCursorType type);
2432
2433                 [DllImport ("user32.dll", EntryPoint="ShowCursor", CallingConvention=CallingConvention.StdCall)]
2434                 private extern static IntPtr Win32ShowCursor(bool bShow);
2435
2436                 [DllImport ("user32.dll", EntryPoint="SetCursor", CallingConvention=CallingConvention.StdCall)]
2437                 private extern static IntPtr Win32SetCursor(IntPtr hCursor);
2438
2439                 [DllImport ("user32.dll", EntryPoint="CreateCursor", CallingConvention=CallingConvention.StdCall)]
2440                 private extern static IntPtr Win32CreateCursor(IntPtr hInstance, int xHotSpot, int yHotSpot, int nWidth, int nHeight, Byte[] pvANDPlane, Byte[] pvORPlane);
2441
2442                 [DllImport ("user32.dll", EntryPoint="DestroyCursor", CallingConvention=CallingConvention.StdCall)]
2443                 private extern static bool Win32DestroyCursor(IntPtr hCursor);
2444
2445                 [DllImport ("user32.dll", EntryPoint="DefWindowProcW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2446                 private extern static IntPtr Win32DefWindowProc(IntPtr hWnd, Msg Msg, IntPtr wParam, IntPtr lParam);
2447
2448                 [DllImport ("user32.dll", EntryPoint="DefDlgProcW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2449                 private extern static IntPtr Win32DefDlgProc(IntPtr hWnd, Msg Msg, IntPtr wParam, IntPtr lParam);
2450
2451                 [DllImport ("user32.dll", EntryPoint="PostQuitMessage", CallingConvention=CallingConvention.StdCall)]
2452                 private extern static IntPtr Win32PostQuitMessage(int nExitCode);
2453
2454                 [DllImport ("user32.dll", EntryPoint="UpdateWindow", CallingConvention=CallingConvention.StdCall)]
2455                 private extern static IntPtr Win32UpdateWindow(IntPtr hWnd);
2456
2457                 [DllImport ("user32.dll", EntryPoint="GetUpdateRect", CallingConvention=CallingConvention.StdCall)]
2458                 private extern static bool Win32GetUpdateRect(IntPtr hWnd, ref RECT rect, bool erase);
2459
2460                 [DllImport ("user32.dll", EntryPoint="BeginPaint", CallingConvention=CallingConvention.StdCall)]
2461                 private extern static IntPtr Win32BeginPaint(IntPtr hWnd, ref PAINTSTRUCT ps);
2462
2463                 [DllImport ("user32.dll", EntryPoint="EndPaint", CallingConvention=CallingConvention.StdCall)]
2464                 private extern static bool Win32EndPaint(IntPtr hWnd, ref PAINTSTRUCT ps);
2465
2466                 [DllImport ("user32.dll", EntryPoint="GetDC", CallingConvention=CallingConvention.StdCall)]
2467                 private extern static IntPtr Win32GetDC(IntPtr hWnd);
2468
2469                 [DllImport ("user32.dll", EntryPoint="GetWindowDC", CallingConvention=CallingConvention.StdCall)]
2470                 private extern static IntPtr Win32GetWindowDC(IntPtr hWnd);
2471
2472                 [DllImport ("user32.dll", EntryPoint="GetDCEx", CallingConvention=CallingConvention.StdCall)]
2473                 private extern static IntPtr Win32GetDCEx(IntPtr hWnd, IntPtr hRgn, DCExFlags flags);
2474
2475                 [DllImport ("user32.dll", EntryPoint="ReleaseDC", CallingConvention=CallingConvention.StdCall)]
2476                 private extern static IntPtr Win32ReleaseDC(IntPtr hWnd, IntPtr hDC);
2477
2478                 [DllImport ("user32.dll", EntryPoint="MessageBoxW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2479                 private extern static IntPtr Win32MessageBox(IntPtr hParent, string pText, string pCaption, uint uType);
2480
2481                 [DllImport ("user32.dll", EntryPoint="InvalidateRect", CallingConvention=CallingConvention.StdCall)]
2482                 private extern static IntPtr Win32InvalidateRect(IntPtr hWnd, ref RECT lpRect, bool bErase);
2483
2484                 [DllImport ("user32.dll", EntryPoint="InvalidateRect", CallingConvention=CallingConvention.StdCall)]
2485                 private extern static IntPtr Win32InvalidateRect(IntPtr hWnd, IntPtr lpRect, bool bErase);
2486
2487                 [DllImport ("user32.dll", EntryPoint="SetCapture", CallingConvention=CallingConvention.StdCall)]
2488                 private extern static IntPtr Win32SetCapture(IntPtr hWnd);
2489
2490                 [DllImport ("user32.dll", EntryPoint="ReleaseCapture", CallingConvention=CallingConvention.StdCall)]
2491                 private extern static IntPtr Win32ReleaseCapture();
2492
2493                 [DllImport ("user32.dll", EntryPoint="GetWindowRect", CallingConvention=CallingConvention.StdCall)]
2494                 private extern static IntPtr Win32GetWindowRect(IntPtr hWnd, out RECT rect);
2495
2496                 [DllImport ("user32.dll", EntryPoint="GetClientRect", CallingConvention=CallingConvention.StdCall)]
2497                 private extern static IntPtr Win32GetClientRect(IntPtr hWnd, out RECT rect);
2498
2499                 [DllImport ("user32.dll", EntryPoint="ScreenToClient", CallingConvention=CallingConvention.StdCall)]
2500                 private extern static bool Win32ScreenToClient(IntPtr hWnd, ref POINT pt);
2501
2502                 [DllImport ("user32.dll", EntryPoint="ClientToScreen", CallingConvention=CallingConvention.StdCall)]
2503                 private extern static bool Win32ClientToScreen(IntPtr hWnd, ref POINT pt);
2504
2505                 [DllImport ("user32.dll", EntryPoint="GetParent", CallingConvention=CallingConvention.StdCall)]
2506                 private extern static IntPtr Win32GetParent(IntPtr hWnd);
2507
2508                 [DllImport ("user32.dll", EntryPoint="SetActiveWindow", CallingConvention=CallingConvention.StdCall)]
2509                 private extern static IntPtr Win32SetActiveWindow(IntPtr hWnd);
2510
2511                 [DllImport ("user32.dll", EntryPoint="AdjustWindowRectEx", CallingConvention=CallingConvention.StdCall)]
2512                 private extern static bool Win32AdjustWindowRectEx(ref RECT lpRect, int dwStyle, bool bMenu, int dwExStyle);
2513
2514                 [DllImport ("user32.dll", EntryPoint="GetCursorPos", CallingConvention=CallingConvention.StdCall)]
2515                 private extern static bool Win32GetCursorPos(out POINT lpPoint);
2516
2517                 [DllImport ("user32.dll", EntryPoint="SetCursorPos", CallingConvention=CallingConvention.StdCall)]
2518                 private extern static bool Win32SetCursorPos(int x, int y);
2519
2520                 [DllImport ("user32.dll", EntryPoint="GetWindowPlacement", CallingConvention=CallingConvention.StdCall)]
2521                 private extern static bool Win32GetWindowPlacement(IntPtr hWnd, ref WINDOWPLACEMENT lpwndpl);
2522
2523                 [DllImport ("user32.dll", EntryPoint="TrackMouseEvent", CallingConvention=CallingConvention.StdCall)]
2524                 private extern static bool Win32TrackMouseEvent(ref TRACKMOUSEEVENT tme);
2525
2526                 [DllImport ("gdi32.dll", EntryPoint="CreateBrushIndirect", CallingConvention=CallingConvention.StdCall)]
2527                 private extern static IntPtr Win32CreateBrushIndirect(ref LOGBRUSH lb);
2528
2529                 [DllImport ("user32.dll", EntryPoint="FillRect", CallingConvention=CallingConvention.StdCall)]
2530                 private extern static int Win32FillRect(IntPtr hdc, ref RECT rect, IntPtr hbr);
2531
2532                 [DllImport ("user32.dll", EntryPoint="SetWindowLong", CallingConvention=CallingConvention.StdCall)]
2533                 private extern static uint Win32SetWindowLong(IntPtr hwnd, WindowLong index, uint value);
2534
2535                 [DllImport ("user32.dll", EntryPoint="GetWindowLong", CallingConvention=CallingConvention.StdCall)]
2536                 private extern static uint Win32GetWindowLong(IntPtr hwnd, WindowLong index);
2537
2538                 [DllImport ("user32.dll", EntryPoint="SetLayeredWindowAttributes", CallingConvention=CallingConvention.StdCall)]
2539                 private extern static uint Win32SetLayeredWindowAttributes (IntPtr hwnd, COLORREF crKey, byte bAlpha, LayeredWindowAttributes dwFlags);
2540
2541                 [DllImport ("gdi32.dll", EntryPoint="DeleteObject", CallingConvention=CallingConvention.StdCall)]
2542                 private extern static bool Win32DeleteObject(IntPtr o);
2543
2544                 [DllImport ("user32.dll", EntryPoint="GetKeyState", CallingConvention=CallingConvention.StdCall)]
2545                 private extern static short Win32GetKeyState(VirtualKeys nVirtKey);
2546
2547                 [DllImport ("user32.dll", EntryPoint="GetDesktopWindow", CallingConvention=CallingConvention.StdCall)]
2548                 private extern static IntPtr Win32GetDesktopWindow();
2549
2550                 [DllImport ("user32.dll", EntryPoint="SetTimer", CallingConvention=CallingConvention.StdCall)]
2551                 private extern static IntPtr Win32SetTimer(IntPtr hwnd, int nIDEvent, uint uElapse, IntPtr timerProc);
2552
2553                 [DllImport ("user32.dll", EntryPoint="KillTimer", CallingConvention=CallingConvention.StdCall)]
2554                 private extern static IntPtr Win32KillTimer(IntPtr hwnd, int nIDEvent);
2555
2556                 [DllImport ("user32.dll", EntryPoint="ShowWindow", CallingConvention=CallingConvention.StdCall)]
2557                 private extern static IntPtr Win32ShowWindow(IntPtr hwnd, WindowPlacementFlags nCmdShow);
2558
2559                 [DllImport ("user32.dll", EntryPoint="EnableWindow", CallingConvention=CallingConvention.StdCall)]
2560                 private extern static IntPtr Win32EnableWindow(IntPtr hwnd, bool Enabled);
2561
2562                 [DllImport ("user32.dll", EntryPoint="SetFocus", CallingConvention=CallingConvention.StdCall)]
2563                 internal extern static IntPtr Win32SetFocus(IntPtr hwnd);
2564
2565                 [DllImport ("user32.dll", EntryPoint="GetFocus", CallingConvention=CallingConvention.StdCall)]
2566                 internal extern static IntPtr Win32GetFocus();
2567
2568                 [DllImport ("user32.dll", EntryPoint="CreateCaret", CallingConvention=CallingConvention.StdCall)]
2569                 internal extern static bool Win32CreateCaret(IntPtr hwnd, IntPtr hBitmap, int nWidth, int nHeight);
2570
2571                 [DllImport ("user32.dll", EntryPoint="DestroyCaret", CallingConvention=CallingConvention.StdCall)]
2572                 private  extern static bool Win32DestroyCaret();
2573
2574                 [DllImport ("user32.dll", EntryPoint="ShowCaret", CallingConvention=CallingConvention.StdCall)]
2575                 private  extern static bool Win32ShowCaret(IntPtr hwnd);
2576
2577                 [DllImport ("user32.dll", EntryPoint="HideCaret", CallingConvention=CallingConvention.StdCall)]
2578                 private  extern static bool Win32HideCaret(IntPtr hwnd);
2579
2580                 [DllImport ("user32.dll", EntryPoint="SetCaretPos", CallingConvention=CallingConvention.StdCall)]
2581                 private  extern static bool Win32SetCaretPos(int X, int Y);
2582
2583                 [DllImport ("user32.dll", EntryPoint="GetCaretBlinkTime", CallingConvention=CallingConvention.StdCall)]
2584                 private  extern static uint Win32GetCaretBlinkTime();
2585
2586                 [DllImport ("gdi32.dll", EntryPoint="GetTextMetricsW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2587                 internal extern static bool Win32GetTextMetrics(IntPtr hdc, ref TEXTMETRIC tm);
2588
2589                 [DllImport ("gdi32.dll", EntryPoint="SelectObject", CallingConvention=CallingConvention.StdCall)]
2590                 internal extern static IntPtr Win32SelectObject(IntPtr hdc, IntPtr hgdiobject);
2591
2592                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2593                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, ref RECT prcScroll, ref RECT prcClip, IntPtr hrgnUpdate, out RECT prcUpdate, ScrollWindowExFlags flags);
2594
2595                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2596                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, IntPtr prcScroll, ref RECT prcClip, IntPtr hrgnUpdate, out RECT prcUpdate, ScrollWindowExFlags flags);
2597
2598                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2599                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, ref RECT prcScroll, IntPtr prcClip, IntPtr hrgnUpdate, out RECT prcUpdate, ScrollWindowExFlags flags);
2600
2601                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2602                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, IntPtr prcScroll, ref RECT prcClip, IntPtr hrgnUpdate, IntPtr prcUpdate, ScrollWindowExFlags flags);
2603
2604                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2605                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, ref RECT prcScroll, IntPtr prcClip, IntPtr hrgnUpdate, IntPtr prcUpdate, ScrollWindowExFlags flags);
2606
2607                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2608                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, ref RECT prcScroll, ref RECT prcClip, IntPtr hrgnUpdate, IntPtr prcUpdate, ScrollWindowExFlags flags);
2609
2610                 [DllImport ("user32.dll", EntryPoint="ScrollWindowEx", CallingConvention=CallingConvention.StdCall)]
2611                 private extern static bool Win32ScrollWindowEx(IntPtr hwnd, int dx, int dy, IntPtr prcScroll, IntPtr prcClip, IntPtr hrgnUpdate, IntPtr prcUpdate, ScrollWindowExFlags flags);
2612
2613                 [DllImport ("user32.dll", EntryPoint="GetActiveWindow", CallingConvention=CallingConvention.StdCall)]
2614                 private extern static IntPtr Win32GetActiveWindow();
2615
2616                 [DllImport ("user32.dll", EntryPoint="GetSystemMetrics", CallingConvention=CallingConvention.StdCall)]
2617                 private extern static int Win32GetSystemMetrics(SystemMetrics nIndex);
2618
2619                 [DllImport ("shell32.dll", EntryPoint="Shell_NotifyIconW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2620                 private extern static bool Win32Shell_NotifyIcon(NotifyIconMessage dwMessage, ref NOTIFYICONDATA lpData);
2621
2622                 [DllImport ("gdi32.dll", EntryPoint="CreateRectRgn", CallingConvention=CallingConvention.StdCall)]
2623                 internal extern static IntPtr Win32CreateRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);
2624
2625                 [DllImport ("user32.dll", EntryPoint="IsWindowEnabled", CallingConvention=CallingConvention.StdCall)]
2626                 private extern static bool IsWindowEnabled(IntPtr hwnd);
2627
2628                 [DllImport ("user32.dll", EntryPoint="IsWindowVisible", CallingConvention=CallingConvention.StdCall)]
2629                 private extern static bool IsWindowVisible(IntPtr hwnd);
2630
2631                 [DllImport ("user32.dll", EntryPoint="SetClassLong", CallingConvention=CallingConvention.StdCall)]
2632                 private extern static bool Win32SetClassLong(IntPtr hwnd, ClassLong nIndex, IntPtr dwNewLong);
2633
2634                 [DllImport ("user32.dll", EntryPoint="SendMessageW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2635                 private extern static IntPtr Win32SendMessage(IntPtr hwnd, Msg msg, IntPtr wParam, IntPtr lParam);
2636
2637                 [DllImport ("user32.dll", EntryPoint="PostMessageW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2638                 private extern static bool Win32PostMessage(IntPtr hwnd, Msg msg, IntPtr wParam, IntPtr lParam);
2639
2640                 [DllImport ("user32.dll", EntryPoint="SystemParametersInfoW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2641                 private extern static bool Win32SystemParametersInfo(SPIAction uiAction, uint uiParam, ref RECT rect, uint fWinIni);
2642
2643                 [DllImport ("user32.dll", EntryPoint="SystemParametersInfoW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2644                 private extern static bool Win32SystemParametersInfo(SPIAction uiAction, uint uiParam, ref uint value, uint fWinIni);
2645
2646                 [DllImport ("user32.dll", EntryPoint="SystemParametersInfoW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2647                 private extern static bool Win32SystemParametersInfo(SPIAction uiAction, uint uiParam, ref int value, uint fWinIni);
2648
2649                 [DllImport ("user32.dll", EntryPoint="OpenClipboard", CallingConvention=CallingConvention.StdCall)]
2650                 private extern static bool Win32OpenClipboard(IntPtr hwnd);
2651
2652                 [DllImport ("user32.dll", EntryPoint="EmptyClipboard", CallingConvention=CallingConvention.StdCall)]
2653                 private extern static bool Win32EmptyClipboard();
2654
2655                 [DllImport ("user32.dll", EntryPoint="RegisterClipboardFormatW", CharSet=CharSet.Unicode, CallingConvention=CallingConvention.StdCall)]
2656                 private extern static uint Win32RegisterClipboardFormat(string format);
2657
2658                 [DllImport ("user32.dll", EntryPoint="CloseClipboard", CallingConvention=CallingConvention.StdCall)]
2659                 private extern static bool Win32CloseClipboard();
2660
2661                 [DllImport ("user32.dll", EntryPoint="EnumClipboardFormats", CallingConvention=CallingConvention.StdCall)]
2662                 private extern static uint Win32EnumClipboardFormats(uint format);
2663
2664                 [DllImport ("user32.dll", EntryPoint="GetClipboardData", CallingConvention=CallingConvention.StdCall)]
2665                 private extern static IntPtr Win32GetClipboardData(uint format);
2666
2667                 [DllImport ("user32.dll", EntryPoint="SetClipboardData", CallingConvention=CallingConvention.StdCall)]
2668                 private extern static IntPtr Win32SetClipboardData(uint format, IntPtr handle);
2669
2670                 [DllImport ("kernel32.dll", EntryPoint="GlobalAlloc", CallingConvention=CallingConvention.StdCall)]
2671                 internal extern static IntPtr Win32GlobalAlloc(GAllocFlags Flags, int dwBytes);
2672
2673                 [DllImport ("kernel32.dll", EntryPoint="CopyMemory", CallingConvention=CallingConvention.StdCall)]
2674                 internal extern static void Win32CopyMemory(IntPtr Destination, IntPtr Source, int length);
2675
2676                 [DllImport ("kernel32.dll", EntryPoint="GlobalFree", CallingConvention=CallingConvention.StdCall)]
2677                 internal extern static IntPtr Win32GlobalFree(IntPtr hMem);
2678
2679                 [DllImport ("kernel32.dll", EntryPoint="GlobalSize", CallingConvention=CallingConvention.StdCall)]
2680                 internal extern static uint Win32GlobalSize(IntPtr hMem);
2681
2682                 [DllImport ("kernel32.dll", EntryPoint="GlobalLock", CallingConvention=CallingConvention.StdCall)]
2683                 internal extern static IntPtr Win32GlobalLock(IntPtr hMem);
2684
2685                 [DllImport ("kernel32.dll", EntryPoint="GlobalUnlock", CallingConvention=CallingConvention.StdCall)]
2686                 internal extern static IntPtr Win32GlobalUnlock(IntPtr hMem);
2687
2688                 [DllImport ("gdi32.dll", EntryPoint="SetROP2", CallingConvention=CallingConvention.StdCall)]
2689                 internal extern static int Win32SetROP2(IntPtr hdc, ROP2DrawMode fnDrawMode);
2690
2691                 [DllImport ("gdi32.dll", EntryPoint="MoveToEx", CallingConvention=CallingConvention.StdCall)]
2692                 internal extern static bool Win32MoveToEx(IntPtr hdc, int x, int y, ref POINT lpPoint);
2693
2694                 [DllImport ("gdi32.dll", EntryPoint="MoveToEx", CallingConvention=CallingConvention.StdCall)]
2695                 internal extern static bool Win32MoveToEx(IntPtr hdc, int x, int y, IntPtr lpPoint);
2696
2697                 [DllImport ("gdi32.dll", EntryPoint="LineTo", CallingConvention=CallingConvention.StdCall)]
2698                 internal extern static bool Win32LineTo(IntPtr hdc, int x, int y);
2699
2700                 [DllImport ("gdi32.dll", EntryPoint="CreatePen", CallingConvention=CallingConvention.StdCall)]
2701                 internal extern static IntPtr Win32CreatePen(PenStyle fnPenStyle, int nWidth, ref COLORREF color);
2702
2703                 [DllImport ("gdi32.dll", EntryPoint="CreatePen", CallingConvention=CallingConvention.StdCall)]
2704                 internal extern static IntPtr Win32CreatePen(PenStyle fnPenStyle, int nWidth, IntPtr color);
2705
2706                 [DllImport ("gdi32.dll", EntryPoint="GetStockObject", CallingConvention=CallingConvention.StdCall)]
2707                 internal extern static IntPtr Win32GetStockObject(StockObject fnObject);
2708
2709                 [DllImport ("gdi32.dll", EntryPoint="CreateHatchBrush", CallingConvention=CallingConvention.StdCall)]
2710                 internal extern static IntPtr Win32CreateHatchBrush(HatchStyle fnStyle, IntPtr color);
2711
2712                 [DllImport ("gdi32.dll", EntryPoint="CreateHatchBrush", CallingConvention=CallingConvention.StdCall)]
2713                 internal extern static IntPtr Win32CreateHatchBrush(HatchStyle fnStyle, ref COLORREF color);
2714
2715                 [DllImport("gdi32.dll", EntryPoint = "ExcludeClipRect", CallingConvention = CallingConvention.StdCall)]
2716                 internal extern static int Win32ExcludeClipRect (IntPtr hdc, int left, int top,  int right, int bottom);
2717
2718                 [DllImport ("gdi32.dll", EntryPoint="ExtSelectClipRgn", CallingConvention=CallingConvention.StdCall)]
2719                 internal extern static int Win32ExtSelectClipRgn(IntPtr hdc, IntPtr hrgn, int mode);
2720
2721                 [DllImport ("winmm.dll", EntryPoint="PlaySoundW", CallingConvention=CallingConvention.StdCall, CharSet=CharSet.Unicode)]
2722                 internal extern static IntPtr Win32PlaySound(string pszSound, IntPtr hmod, SndFlags fdwSound);
2723
2724                 [DllImport ("user32.dll", EntryPoint="SetWindowRgn", CallingConvention=CallingConvention.StdCall, CharSet=CharSet.Unicode)]
2725                 internal extern static int Win32SetWindowRgn(IntPtr hWnd, IntPtr hRgn, bool redraw);
2726
2727                 [DllImport ("user32.dll", EntryPoint="GetWindowRgn", CallingConvention=CallingConvention.StdCall, CharSet=CharSet.Unicode)]
2728                 internal extern static IntPtr Win32GetWindowRgn(IntPtr hWnd, IntPtr hRgn);
2729                 #endregion
2730         }
2731 }