4 * Copyright David W. Metcalfe, 1993
8 #include "wine/winuser16.h"
11 #include "cursoricon.h"
17 static void STATIC_PaintTextfn( WND
*wndPtr
, HDC hdc
);
18 static void STATIC_PaintRectfn( WND
*wndPtr
, HDC hdc
);
19 static void STATIC_PaintIconfn( WND
*wndPtr
, HDC hdc
);
20 static void STATIC_PaintBitmapfn( WND
*wndPtr
, HDC hdc
);
21 static void STATIC_PaintEtchedfn( WND
*wndPtr
, HDC hdc
);
23 static COLORREF color_windowframe
, color_background
, color_window
;
26 typedef void (*pfPaint
)( WND
*, HDC
);
28 static pfPaint staticPaintFunc
[SS_TYPEMASK
+1] =
30 STATIC_PaintTextfn
, /* SS_LEFT */
31 STATIC_PaintTextfn
, /* SS_CENTER */
32 STATIC_PaintTextfn
, /* SS_RIGHT */
33 STATIC_PaintIconfn
, /* SS_ICON */
34 STATIC_PaintRectfn
, /* SS_BLACKRECT */
35 STATIC_PaintRectfn
, /* SS_GRAYRECT */
36 STATIC_PaintRectfn
, /* SS_WHITERECT */
37 STATIC_PaintRectfn
, /* SS_BLACKFRAME */
38 STATIC_PaintRectfn
, /* SS_GRAYFRAME */
39 STATIC_PaintRectfn
, /* SS_WHITEFRAME */
40 NULL
, /* Not defined */
41 STATIC_PaintTextfn
, /* SS_SIMPLE */
42 STATIC_PaintTextfn
, /* SS_LEFTNOWORDWRAP */
43 NULL
, /* SS_OWNERDRAW */
44 STATIC_PaintBitmapfn
, /* SS_BITMAP */
45 NULL
, /* SS_ENHMETAFILE */
46 STATIC_PaintEtchedfn
, /* SS_ETCHEDHORIZ */
47 STATIC_PaintEtchedfn
, /* SS_ETCHEDVERT */
48 STATIC_PaintEtchedfn
, /* SS_ETCHEDFRAME */
52 /***********************************************************************
55 * Set the icon for an SS_ICON control.
57 static HICON16
STATIC_SetIcon( WND
*wndPtr
, HICON16 hicon
)
60 STATICINFO
*infoPtr
= (STATICINFO
*)wndPtr
->wExtra
;
61 CURSORICONINFO
*info
= hicon
?(CURSORICONINFO
*) GlobalLock16( hicon
):NULL
;
63 if ((wndPtr
->dwStyle
& SS_TYPEMASK
) != SS_ICON
) return 0;
65 ERR(static, "huh? hicon!=0, but info=0???\n");
68 prevIcon
= infoPtr
->hIcon
;
69 infoPtr
->hIcon
= hicon
;
72 SetWindowPos( wndPtr
->hwndSelf
, 0, 0, 0, info
->nWidth
, info
->nHeight
,
73 SWP_NOACTIVATE
| SWP_NOMOVE
| SWP_NOZORDER
);
74 GlobalUnlock16( hicon
);
79 /***********************************************************************
82 * Set the bitmap for an SS_BITMAP control.
84 static HICON16
STATIC_SetBitmap( WND
*wndPtr
, HICON16 hicon
)
87 STATICINFO
*infoPtr
= (STATICINFO
*)wndPtr
->wExtra
;
88 BITMAPOBJ
*info
= (BITMAPOBJ
*)GDI_HEAP_LOCK(hicon
);
90 if ((wndPtr
->dwStyle
& SS_TYPEMASK
) != SS_BITMAP
) return 0;
92 ERR(static, "huh? hicon!=0, but info=0???\n");
95 prevIcon
= infoPtr
->hIcon
;
96 infoPtr
->hIcon
= hicon
;
99 SetWindowPos( wndPtr
->hwndSelf
, 0, 0, 0, info
->bitmap
.bmWidth
, info
->bitmap
.bmHeight
,
100 SWP_NOACTIVATE
| SWP_NOMOVE
| SWP_NOZORDER
);
102 GDI_HEAP_UNLOCK( hicon
);
107 /***********************************************************************
110 * Load the icon for an SS_ICON control.
112 static HICON16
STATIC_LoadIcon( WND
*wndPtr
, LPCSTR name
)
116 if (wndPtr
->flags
& WIN_ISWIN32
)
118 if (!HIWORD(wndPtr
->hInstance
)) {
119 LPSTR segname
= SEGPTR_STRDUP(name
);
120 hicon
= LoadIcon16( wndPtr
->hInstance
, SEGPTR_GET(segname
) );
121 SEGPTR_FREE(segname
);
123 hicon
= LoadIconA( wndPtr
->hInstance
, name
);
125 LPSTR segname
= SEGPTR_STRDUP(name
);
127 if (HIWORD(wndPtr
->hInstance
))
128 FIXME(static,"win16 window class, but win32 hinstance??\n");
129 hicon
= LoadIcon16( wndPtr
->hInstance
, SEGPTR_GET(segname
) );
130 SEGPTR_FREE(segname
);
133 hicon
= LoadIconA( 0, name
);
137 /***********************************************************************
140 * Load the bitmap for an SS_BITMAP control.
142 static HBITMAP16
STATIC_LoadBitmap( WND
*wndPtr
, LPCSTR name
)
146 if (wndPtr
->flags
& WIN_ISWIN32
)
148 hbitmap
= LoadBitmapA( wndPtr
->hInstance
, name
);
149 if (!hbitmap
) /* Try OEM icon (FIXME: is this right?) */
150 hbitmap
= LoadBitmapA( 0, name
);
154 LPSTR segname
= SEGPTR_STRDUP(name
);
155 hbitmap
= LoadBitmap16( wndPtr
->hInstance
, SEGPTR_GET(segname
) );
156 if (!hbitmap
) /* Try OEM icon (FIXME: is this right?) */
157 hbitmap
= LoadBitmapA( 0, segname
);
158 SEGPTR_FREE(segname
);
164 /***********************************************************************
167 LRESULT WINAPI
StaticWndProc( HWND hWnd
, UINT uMsg
, WPARAM wParam
,
171 WND
*wndPtr
= WIN_FindWndPtr(hWnd
);
172 LONG style
= wndPtr
->dwStyle
& SS_TYPEMASK
;
173 STATICINFO
*infoPtr
= (STATICINFO
*)wndPtr
->wExtra
;
178 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)lParam
;
180 if ((TWEAK_WineLook
> WIN31_LOOK
) && (wndPtr
->dwStyle
& SS_SUNKEN
))
181 wndPtr
->dwExStyle
|= WS_EX_STATICEDGE
;
183 if (style
== SS_ICON
)
186 if (!HIWORD(cs
->lpszName
) || cs
->lpszName
[0])
187 STATIC_SetIcon( wndPtr
,
188 STATIC_LoadIcon( wndPtr
, cs
->lpszName
));
192 if (style
== SS_BITMAP
)
195 STATIC_SetBitmap( wndPtr
,
196 STATIC_LoadBitmap( wndPtr
, cs
->lpszName
));
197 WARN(static, "style SS_BITMAP, dwStyle is 0x%08lx\n",
201 if (!HIWORD(cs
->lpszName
) && (cs
->lpszName
)) {
202 FIXME(static,"windowName is 0x%04x, not doing DefWindowProc\n",
207 return DefWindowProcA( hWnd
, uMsg
, wParam
, lParam
);
210 if (style
< 0L || style
> SS_TYPEMASK
)
212 ERR(static, "Unknown style 0x%02lx\n", style
);
216 /* initialise colours */
217 color_windowframe
= GetSysColor(COLOR_WINDOWFRAME
);
218 color_background
= GetSysColor(COLOR_BACKGROUND
);
219 color_window
= GetSysColor(COLOR_WINDOW
);
223 if (style
== SS_ICON
) {
226 * DestroyIcon32( STATIC_SetIcon( wndPtr, 0 ) );
228 * We don't want to do this yet because DestroyIcon32 is broken. If the icon
229 * had already been loaded by the application the last thing we want to do is
230 * GlobalFree16 the handle.
233 lResult
= DefWindowProcA( hWnd
, uMsg
, wParam
, lParam
);
240 BeginPaint( hWnd
, &ps
);
241 if (staticPaintFunc
[style
])
242 (staticPaintFunc
[style
])( wndPtr
, ps
.hdc
);
243 EndPaint( hWnd
, &ps
);
248 InvalidateRect( hWnd
, NULL
, FALSE
);
251 case WM_SYSCOLORCHANGE
:
252 color_windowframe
= GetSysColor(COLOR_WINDOWFRAME
);
253 color_background
= GetSysColor(COLOR_BACKGROUND
);
254 color_window
= GetSysColor(COLOR_WINDOW
);
255 InvalidateRect( hWnd
, NULL
, TRUE
);
259 if (style
== SS_ICON
)
260 /* FIXME : should we also return the previous hIcon here ??? */
261 STATIC_SetIcon( wndPtr
, STATIC_LoadIcon( wndPtr
, (LPCSTR
)lParam
));
262 else if (style
== SS_BITMAP
)
263 STATIC_SetBitmap(wndPtr
,STATIC_LoadBitmap(wndPtr
,(LPCSTR
)lParam
));
265 DEFWND_SetText( wndPtr
, (LPCSTR
)lParam
);
266 InvalidateRect( hWnd
, NULL
, FALSE
);
267 UpdateWindow( hWnd
);
271 if (style
== SS_ICON
) return 0;
272 if (style
== SS_BITMAP
) return 0;
273 infoPtr
->hFont
= (HFONT16
)wParam
;
276 InvalidateRect( hWnd
, NULL
, FALSE
);
277 UpdateWindow( hWnd
);
282 return infoPtr
->hFont
;
285 return HTTRANSPARENT
;
293 return infoPtr
->hIcon
;
296 /* FIXME: handle wParam */
297 lResult
= STATIC_SetBitmap( wndPtr
, (HBITMAP
)lParam
);
298 InvalidateRect( hWnd
, NULL
, FALSE
);
299 UpdateWindow( hWnd
);
304 lResult
= STATIC_SetIcon( wndPtr
, (HICON16
)wParam
);
305 InvalidateRect( hWnd
, NULL
, FALSE
);
306 UpdateWindow( hWnd
);
310 lResult
= DefWindowProcA(hWnd
, uMsg
, wParam
, lParam
);
318 static void STATIC_PaintTextfn( WND
*wndPtr
, HDC hdc
)
324 LONG style
= wndPtr
->dwStyle
;
325 STATICINFO
*infoPtr
= (STATICINFO
*)wndPtr
->wExtra
;
327 GetClientRect( wndPtr
->hwndSelf
, &rc
);
329 switch (style
& SS_TYPEMASK
)
332 wFormat
= DT_LEFT
| DT_EXPANDTABS
| DT_WORDBREAK
| DT_NOCLIP
;
336 wFormat
= DT_CENTER
| DT_EXPANDTABS
| DT_WORDBREAK
| DT_NOCLIP
;
340 wFormat
= DT_RIGHT
| DT_EXPANDTABS
| DT_WORDBREAK
| DT_NOCLIP
;
344 wFormat
= DT_LEFT
| DT_SINGLELINE
| DT_VCENTER
| DT_NOCLIP
;
347 case SS_LEFTNOWORDWRAP
:
348 wFormat
= DT_LEFT
| DT_EXPANDTABS
| DT_VCENTER
;
355 if (style
& SS_NOPREFIX
)
356 wFormat
|= DT_NOPREFIX
;
358 if (infoPtr
->hFont
) SelectObject( hdc
, infoPtr
->hFont
);
359 hBrush
= SendMessageA( GetParent(wndPtr
->hwndSelf
), WM_CTLCOLORSTATIC
,
360 hdc
, wndPtr
->hwndSelf
);
361 if (!hBrush
) hBrush
= GetStockObject(WHITE_BRUSH
);
362 FillRect( hdc
, &rc
, hBrush
);
363 if (wndPtr
->text
) DrawTextA( hdc
, wndPtr
->text
, -1, &rc
, wFormat
);
366 static void STATIC_PaintRectfn( WND
*wndPtr
, HDC hdc
)
371 GetClientRect( wndPtr
->hwndSelf
, &rc
);
373 switch (wndPtr
->dwStyle
& SS_TYPEMASK
)
376 hBrush
= CreateSolidBrush(color_windowframe
);
377 FillRect( hdc
, &rc
, hBrush
);
380 hBrush
= CreateSolidBrush(color_background
);
381 FillRect( hdc
, &rc
, hBrush
);
384 hBrush
= CreateSolidBrush(color_window
);
385 FillRect( hdc
, &rc
, hBrush
);
388 hBrush
= CreateSolidBrush(color_windowframe
);
389 FrameRect( hdc
, &rc
, hBrush
);
392 hBrush
= CreateSolidBrush(color_background
);
393 FrameRect( hdc
, &rc
, hBrush
);
396 hBrush
= CreateSolidBrush(color_window
);
397 FrameRect( hdc
, &rc
, hBrush
);
402 DeleteObject( hBrush
);
406 static void STATIC_PaintIconfn( WND
*wndPtr
, HDC hdc
)
410 STATICINFO
*infoPtr
= (STATICINFO
*)wndPtr
->wExtra
;
412 GetClientRect( wndPtr
->hwndSelf
, &rc
);
413 hbrush
= SendMessageA( GetParent(wndPtr
->hwndSelf
), WM_CTLCOLORSTATIC
,
414 hdc
, wndPtr
->hwndSelf
);
415 FillRect( hdc
, &rc
, hbrush
);
416 if (infoPtr
->hIcon
) DrawIcon( hdc
, rc
.left
, rc
.top
, infoPtr
->hIcon
);
419 static void STATIC_PaintBitmapfn(WND
*wndPtr
, HDC hdc
)
423 STATICINFO
*infoPtr
= (STATICINFO
*)wndPtr
->wExtra
;
427 GetClientRect( wndPtr
->hwndSelf
, &rc
);
428 hbrush
= SendMessageA( GetParent(wndPtr
->hwndSelf
), WM_CTLCOLORSTATIC
,
429 hdc
, wndPtr
->hwndSelf
);
430 FillRect( hdc
, &rc
, hbrush
);
431 if (infoPtr
->hIcon
) {
432 BITMAPOBJ
*bmp
= (BITMAPOBJ
*) GDI_HEAP_LOCK( infoPtr
->hIcon
);
435 if (!(hMemDC
= CreateCompatibleDC( hdc
))) return;
437 oldbitmap
= SelectObject(hMemDC
,infoPtr
->hIcon
);
438 BitBlt(hdc
,bmp
->size
.cx
,bmp
->size
.cy
,bmp
->bitmap
.bmWidth
,bmp
->bitmap
.bmHeight
,hMemDC
,0,0,SRCCOPY
);
440 GDI_HEAP_UNLOCK(infoPtr
->hIcon
);
445 static void STATIC_PaintEtchedfn( WND
*wndPtr
, HDC hdc
)
451 if (TWEAK_WineLook
== WIN31_LOOK
)
454 GetClientRect( wndPtr
->hwndSelf
, &rc
);
455 hbrush
= SendMessageA( GetParent(wndPtr
->hwndSelf
), WM_CTLCOLORSTATIC
,
456 hdc
, wndPtr
->hwndSelf
);
457 FillRect( hdc
, &rc
, hbrush
);
459 switch (wndPtr
->dwStyle
& SS_TYPEMASK
)
462 hpen
= SelectObject (hdc
, GetSysColorPen (COLOR_3DSHADOW
));
463 MoveToEx (hdc
, rc
.left
, rc
.bottom
/ 2 - 1, NULL
);
464 LineTo (hdc
, rc
.right
- 1, rc
.bottom
/ 2 - 1);
465 SelectObject (hdc
, GetSysColorPen (COLOR_3DHIGHLIGHT
));
466 MoveToEx (hdc
, rc
.left
, rc
.bottom
/ 2, NULL
);
467 LineTo (hdc
, rc
.right
, rc
.bottom
/ 2);
468 LineTo (hdc
, rc
.right
, rc
.bottom
/ 2 - 1);
469 SelectObject (hdc
, hpen
);
473 hpen
= SelectObject (hdc
, GetSysColorPen (COLOR_3DSHADOW
));
474 MoveToEx (hdc
, rc
.right
/ 2 - 1, rc
.top
, NULL
);
475 LineTo (hdc
, rc
.right
/ 2 - 1, rc
.bottom
- 1);
476 SelectObject (hdc
, GetSysColorPen (COLOR_3DHIGHLIGHT
));
477 MoveToEx (hdc
, rc
.right
/ 2, rc
.top
, NULL
);
478 LineTo (hdc
, rc
.right
/ 2, rc
.bottom
);
479 LineTo (hdc
, rc
.right
/ 2 -1 , rc
.bottom
);
480 SelectObject (hdc
, hpen
);
484 DrawEdge (hdc
, &rc
, EDGE_ETCHED
, BF_RECT
);