Merged display.dll into USER.
[wine.git] / controls / static.c
blob291b70821f8b6c4ca71d519b070811fd0574c967
1 /*
2 * Static control
4 * Copyright David W. Metcalfe, 1993
6 */
8 #include "windef.h"
9 #include "wingdi.h"
10 #include "wine/winuser16.h"
11 #include "win.h"
12 #include "cursoricon.h"
13 #include "static.h"
14 #include "heap.h"
15 #include "debugtools.h"
16 #include "tweak.h"
18 DEFAULT_DEBUG_CHANNEL(static)
20 static void STATIC_PaintOwnerDrawfn( WND *wndPtr, HDC hdc );
21 static void STATIC_PaintTextfn( WND *wndPtr, HDC hdc );
22 static void STATIC_PaintRectfn( WND *wndPtr, HDC hdc );
23 static void STATIC_PaintIconfn( WND *wndPtr, HDC hdc );
24 static void STATIC_PaintBitmapfn( WND *wndPtr, HDC hdc );
25 static void STATIC_PaintEtchedfn( WND *wndPtr, HDC hdc );
27 static COLORREF color_windowframe, color_background, color_window;
30 typedef void (*pfPaint)( WND *, HDC );
32 static pfPaint staticPaintFunc[SS_TYPEMASK+1] =
34 STATIC_PaintTextfn, /* SS_LEFT */
35 STATIC_PaintTextfn, /* SS_CENTER */
36 STATIC_PaintTextfn, /* SS_RIGHT */
37 STATIC_PaintIconfn, /* SS_ICON */
38 STATIC_PaintRectfn, /* SS_BLACKRECT */
39 STATIC_PaintRectfn, /* SS_GRAYRECT */
40 STATIC_PaintRectfn, /* SS_WHITERECT */
41 STATIC_PaintRectfn, /* SS_BLACKFRAME */
42 STATIC_PaintRectfn, /* SS_GRAYFRAME */
43 STATIC_PaintRectfn, /* SS_WHITEFRAME */
44 NULL, /* Not defined */
45 STATIC_PaintTextfn, /* SS_SIMPLE */
46 STATIC_PaintTextfn, /* SS_LEFTNOWORDWRAP */
47 STATIC_PaintOwnerDrawfn, /* SS_OWNERDRAW */
48 STATIC_PaintBitmapfn, /* SS_BITMAP */
49 NULL, /* SS_ENHMETAFILE */
50 STATIC_PaintEtchedfn, /* SS_ETCHEDHORIZ */
51 STATIC_PaintEtchedfn, /* SS_ETCHEDVERT */
52 STATIC_PaintEtchedfn, /* SS_ETCHEDFRAME */
56 /***********************************************************************
57 * STATIC_SetIcon
59 * Set the icon for an SS_ICON control.
61 static HICON16 STATIC_SetIcon( WND *wndPtr, HICON16 hicon )
63 HICON16 prevIcon;
64 STATICINFO *infoPtr = (STATICINFO *)wndPtr->wExtra;
65 CURSORICONINFO *info = hicon?(CURSORICONINFO *) GlobalLock16( hicon ):NULL;
67 if ((wndPtr->dwStyle & SS_TYPEMASK) != SS_ICON) return 0;
68 if (hicon && !info) {
69 ERR("huh? hicon!=0, but info=0???\n");
70 return 0;
72 prevIcon = infoPtr->hIcon;
73 infoPtr->hIcon = hicon;
74 if (hicon)
76 SetWindowPos( wndPtr->hwndSelf, 0, 0, 0, info->nWidth, info->nHeight,
77 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER );
78 GlobalUnlock16( hicon );
80 return prevIcon;
83 /***********************************************************************
84 * STATIC_SetBitmap
86 * Set the bitmap for an SS_BITMAP control.
88 static HBITMAP16 STATIC_SetBitmap( WND *wndPtr, HBITMAP16 hBitmap )
90 HBITMAP16 hOldBitmap;
91 STATICINFO *infoPtr = (STATICINFO *)wndPtr->wExtra;
93 if ((wndPtr->dwStyle & SS_TYPEMASK) != SS_BITMAP) return 0;
94 if (hBitmap && GetObjectType(hBitmap) != OBJ_BITMAP) {
95 ERR("huh? hBitmap!=0, but not bitmap\n");
96 return 0;
98 hOldBitmap = infoPtr->hIcon;
99 infoPtr->hIcon = hBitmap;
100 if (hBitmap)
102 BITMAP bm;
103 GetObjectA(hBitmap, sizeof(bm), &bm);
104 SetWindowPos( wndPtr->hwndSelf, 0, 0, 0, bm.bmWidth, bm.bmHeight,
105 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER );
107 return hOldBitmap;
111 /***********************************************************************
112 * STATIC_LoadIcon
114 * Load the icon for an SS_ICON control.
116 static HICON16 STATIC_LoadIcon( WND *wndPtr, LPCSTR name )
118 HICON16 hicon;
120 if (wndPtr->flags & WIN_ISWIN32)
122 if (!HIWORD(wndPtr->hInstance)) {
123 LPSTR segname = SEGPTR_STRDUP(name);
124 hicon = LoadIcon16( wndPtr->hInstance, SEGPTR_GET(segname) );
125 SEGPTR_FREE(segname);
126 } else
127 hicon = LoadIconA( wndPtr->hInstance, name );
128 } else {
129 LPSTR segname = SEGPTR_STRDUP(name);
131 if (HIWORD(wndPtr->hInstance))
132 FIXME("win16 window class, but win32 hinstance??\n");
133 hicon = LoadIcon16( wndPtr->hInstance, SEGPTR_GET(segname) );
134 SEGPTR_FREE(segname);
136 if (!hicon)
137 hicon = LoadIconA( 0, name );
138 return hicon;
141 /***********************************************************************
142 * STATIC_LoadBitmap
144 * Load the bitmap for an SS_BITMAP control.
146 static HBITMAP16 STATIC_LoadBitmap( WND *wndPtr, LPCSTR name )
148 HBITMAP16 hbitmap;
150 if (wndPtr->flags & WIN_ISWIN32)
152 hbitmap = LoadBitmapA( wndPtr->hInstance, name );
153 if (!hbitmap) /* Try OEM icon (FIXME: is this right?) */
154 hbitmap = LoadBitmapA( 0, name );
156 else
158 LPSTR segname = SEGPTR_STRDUP(name);
159 hbitmap = LoadBitmap16( wndPtr->hInstance, SEGPTR_GET(segname) );
160 if (!hbitmap) /* Try OEM icon (FIXME: is this right?) */
161 hbitmap = LoadBitmapA( 0, segname );
162 SEGPTR_FREE(segname);
164 return hbitmap;
168 /***********************************************************************
169 * StaticWndProc
171 LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
172 LPARAM lParam )
174 LRESULT lResult = 0;
175 WND *wndPtr = WIN_FindWndPtr(hWnd);
176 LONG style = wndPtr->dwStyle & SS_TYPEMASK;
177 STATICINFO *infoPtr = (STATICINFO *)wndPtr->wExtra;
179 switch (uMsg)
181 case WM_NCCREATE: {
182 CREATESTRUCTA *cs = (CREATESTRUCTA *)lParam;
184 if ((TWEAK_WineLook > WIN31_LOOK) && (wndPtr->dwStyle & SS_SUNKEN))
185 wndPtr->dwExStyle |= WS_EX_STATICEDGE;
187 if (style == SS_ICON)
189 if (cs->lpszName)
191 if (!HIWORD(cs->lpszName) || cs->lpszName[0])
192 STATIC_SetIcon( wndPtr,
193 STATIC_LoadIcon( wndPtr, cs->lpszName ));
195 lResult = 1;
196 goto END;
198 if (style == SS_BITMAP)
200 if (cs->lpszName)
201 STATIC_SetBitmap( wndPtr,
202 STATIC_LoadBitmap( wndPtr, cs->lpszName ));
203 WARN("style SS_BITMAP, dwStyle is 0x%08lx\n",
204 wndPtr->dwStyle);
205 lResult = 1;
206 goto END;
208 if (!HIWORD(cs->lpszName) && (cs->lpszName))
210 FIXME("windowName is 0x%04x, not doing DefWindowProc\n",
211 LOWORD(cs->lpszName));
212 lResult = 1;
213 goto END;
215 lResult = DefWindowProcA( hWnd, uMsg, wParam, lParam );
216 goto END;
218 case WM_CREATE:
219 if (style < 0L || style > SS_TYPEMASK)
221 ERR("Unknown style 0x%02lx\n", style );
222 lResult = -1L;
223 break;
225 /* initialise colours */
226 color_windowframe = GetSysColor(COLOR_WINDOWFRAME);
227 color_background = GetSysColor(COLOR_BACKGROUND);
228 color_window = GetSysColor(COLOR_WINDOW);
229 break;
231 case WM_NCDESTROY:
232 if (style == SS_ICON) {
234 * FIXME
235 * DestroyIcon32( STATIC_SetIcon( wndPtr, 0 ) );
237 * We don't want to do this yet because DestroyIcon32 is broken. If the icon
238 * had already been loaded by the application the last thing we want to do is
239 * GlobalFree16 the handle.
241 } else {
242 lResult = DefWindowProcA( hWnd, uMsg, wParam, lParam );
244 break;
246 case WM_PAINT:
248 PAINTSTRUCT ps;
249 BeginPaint( hWnd, &ps );
250 if (staticPaintFunc[style])
251 (staticPaintFunc[style])( wndPtr, ps.hdc );
252 EndPaint( hWnd, &ps );
254 break;
256 case WM_ENABLE:
257 InvalidateRect( hWnd, NULL, FALSE );
258 break;
260 case WM_SYSCOLORCHANGE:
261 color_windowframe = GetSysColor(COLOR_WINDOWFRAME);
262 color_background = GetSysColor(COLOR_BACKGROUND);
263 color_window = GetSysColor(COLOR_WINDOW);
264 InvalidateRect( hWnd, NULL, TRUE );
265 break;
267 case WM_SETTEXT:
268 if (style == SS_ICON)
269 /* FIXME : should we also return the previous hIcon here ??? */
270 STATIC_SetIcon( wndPtr, STATIC_LoadIcon( wndPtr, (LPCSTR)lParam ));
271 else if (style == SS_BITMAP)
272 STATIC_SetBitmap(wndPtr,STATIC_LoadBitmap(wndPtr,(LPCSTR)lParam ));
273 else
274 DEFWND_SetText( wndPtr, (LPCSTR)lParam );
275 InvalidateRect( hWnd, NULL, FALSE );
276 break;
278 case WM_SETFONT:
279 if (style == SS_ICON)
281 lResult = 0;
282 goto END;
284 if (style == SS_BITMAP)
286 lResult = 0;
287 goto END;
289 infoPtr->hFont = (HFONT16)wParam;
290 if (LOWORD(lParam))
292 InvalidateRect( hWnd, NULL, FALSE );
293 UpdateWindow( hWnd );
295 break;
297 case WM_GETFONT:
298 lResult = infoPtr->hFont;
299 goto END;
301 case WM_NCHITTEST:
302 if (wndPtr->dwStyle & SS_NOTIFY)
303 lResult = HTCLIENT;
304 else
305 lResult = HTTRANSPARENT;
306 goto END;
308 case WM_GETDLGCODE:
309 lResult = DLGC_STATIC;
310 goto END;
312 case STM_GETIMAGE:
313 case STM_GETICON16:
314 case STM_GETICON:
315 lResult = infoPtr->hIcon;
316 goto END;
318 case STM_SETIMAGE:
319 /* FIXME: handle wParam */
320 lResult = STATIC_SetBitmap( wndPtr, (HBITMAP)lParam );
321 InvalidateRect( hWnd, NULL, FALSE );
322 UpdateWindow( hWnd );
323 break;
325 case STM_SETICON16:
326 case STM_SETICON:
327 lResult = STATIC_SetIcon( wndPtr, (HICON16)wParam );
328 InvalidateRect( hWnd, NULL, FALSE );
329 UpdateWindow( hWnd );
330 break;
332 default:
333 lResult = DefWindowProcA(hWnd, uMsg, wParam, lParam);
334 break;
337 END:
338 WIN_ReleaseWndPtr(wndPtr);
339 return lResult;
342 static void STATIC_PaintOwnerDrawfn( WND *wndPtr, HDC hdc )
344 DRAWITEMSTRUCT dis;
346 dis.CtlType = ODT_STATIC;
347 dis.CtlID = wndPtr->wIDmenu;
348 dis.itemID = 0;
349 dis.itemAction = ODA_DRAWENTIRE;
350 dis.itemState = 0;
351 dis.hwndItem = wndPtr->hwndSelf;
352 dis.hDC = hdc;
353 dis.itemData = 0;
354 GetClientRect( wndPtr->hwndSelf, &dis.rcItem );
356 SendMessageA( GetParent(wndPtr->hwndSelf), WM_CTLCOLORSTATIC,
357 hdc, wndPtr->hwndSelf );
358 SendMessageA( GetParent(wndPtr->hwndSelf), WM_DRAWITEM,
359 wndPtr->wIDmenu, (LPARAM)&dis );
362 static void STATIC_PaintTextfn( WND *wndPtr, HDC hdc )
364 RECT rc;
365 HBRUSH hBrush;
366 WORD wFormat;
368 LONG style = wndPtr->dwStyle;
369 STATICINFO *infoPtr = (STATICINFO *)wndPtr->wExtra;
371 GetClientRect( wndPtr->hwndSelf, &rc);
373 switch (style & SS_TYPEMASK)
375 case SS_LEFT:
376 wFormat = DT_LEFT | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP;
377 break;
379 case SS_CENTER:
380 wFormat = DT_CENTER | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP;
381 break;
383 case SS_RIGHT:
384 wFormat = DT_RIGHT | DT_EXPANDTABS | DT_WORDBREAK | DT_NOCLIP;
385 break;
387 case SS_SIMPLE:
388 wFormat = DT_LEFT | DT_SINGLELINE | DT_VCENTER | DT_NOCLIP;
389 break;
391 case SS_LEFTNOWORDWRAP:
392 wFormat = DT_LEFT | DT_EXPANDTABS | DT_VCENTER;
393 break;
395 default:
396 return;
399 if (style & SS_NOPREFIX)
400 wFormat |= DT_NOPREFIX;
402 if (infoPtr->hFont) SelectObject( hdc, infoPtr->hFont );
403 hBrush = SendMessageA( GetParent(wndPtr->hwndSelf), WM_CTLCOLORSTATIC,
404 hdc, wndPtr->hwndSelf );
405 if (!hBrush) hBrush = GetStockObject(WHITE_BRUSH);
406 FillRect( hdc, &rc, hBrush );
408 if (!IsWindowEnabled(wndPtr->hwndSelf))
409 SetTextColor(hdc, GetSysColor(COLOR_GRAYTEXT));
411 if (wndPtr->text) DrawTextA( hdc, wndPtr->text, -1, &rc, wFormat );
414 static void STATIC_PaintRectfn( WND *wndPtr, HDC hdc )
416 RECT rc;
417 HBRUSH hBrush;
419 GetClientRect( wndPtr->hwndSelf, &rc);
421 switch (wndPtr->dwStyle & SS_TYPEMASK)
423 case SS_BLACKRECT:
424 hBrush = CreateSolidBrush(color_windowframe);
425 FillRect( hdc, &rc, hBrush );
426 break;
427 case SS_GRAYRECT:
428 hBrush = CreateSolidBrush(color_background);
429 FillRect( hdc, &rc, hBrush );
430 break;
431 case SS_WHITERECT:
432 hBrush = CreateSolidBrush(color_window);
433 FillRect( hdc, &rc, hBrush );
434 break;
435 case SS_BLACKFRAME:
436 hBrush = CreateSolidBrush(color_windowframe);
437 FrameRect( hdc, &rc, hBrush );
438 break;
439 case SS_GRAYFRAME:
440 hBrush = CreateSolidBrush(color_background);
441 FrameRect( hdc, &rc, hBrush );
442 break;
443 case SS_WHITEFRAME:
444 hBrush = CreateSolidBrush(color_window);
445 FrameRect( hdc, &rc, hBrush );
446 break;
447 default:
448 return;
450 DeleteObject( hBrush );
454 static void STATIC_PaintIconfn( WND *wndPtr, HDC hdc )
456 RECT rc;
457 HBRUSH hbrush;
458 STATICINFO *infoPtr = (STATICINFO *)wndPtr->wExtra;
460 GetClientRect( wndPtr->hwndSelf, &rc );
461 hbrush = SendMessageA( GetParent(wndPtr->hwndSelf), WM_CTLCOLORSTATIC,
462 hdc, wndPtr->hwndSelf );
463 FillRect( hdc, &rc, hbrush );
464 if (infoPtr->hIcon) DrawIcon( hdc, rc.left, rc.top, infoPtr->hIcon );
467 static void STATIC_PaintBitmapfn(WND *wndPtr, HDC hdc )
469 RECT rc;
470 HBRUSH hbrush;
471 STATICINFO *infoPtr = (STATICINFO *)wndPtr->wExtra;
472 HDC hMemDC;
473 HBITMAP oldbitmap;
475 GetClientRect( wndPtr->hwndSelf, &rc );
476 hbrush = SendMessageA( GetParent(wndPtr->hwndSelf), WM_CTLCOLORSTATIC,
477 hdc, wndPtr->hwndSelf );
478 FillRect( hdc, &rc, hbrush );
480 if (infoPtr->hIcon) {
481 BITMAP bm;
482 SIZE sz;
484 if(GetObjectType(infoPtr->hIcon) != OBJ_BITMAP)
485 return;
486 if (!(hMemDC = CreateCompatibleDC( hdc ))) return;
487 GetObjectA(infoPtr->hIcon, sizeof(bm), &bm);
488 GetBitmapDimensionEx(infoPtr->hIcon, &sz);
489 oldbitmap = SelectObject(hMemDC, infoPtr->hIcon);
490 BitBlt(hdc, sz.cx, sz.cy, bm.bmWidth, bm.bmHeight, hMemDC, 0, 0,
491 SRCCOPY);
492 SelectObject(hMemDC, oldbitmap);
493 DeleteDC(hMemDC);
498 static void STATIC_PaintEtchedfn( WND *wndPtr, HDC hdc )
500 RECT rc;
502 if (TWEAK_WineLook == WIN31_LOOK)
503 return;
505 GetClientRect( wndPtr->hwndSelf, &rc );
506 switch (wndPtr->dwStyle & SS_TYPEMASK)
508 case SS_ETCHEDHORZ:
509 DrawEdge(hdc,&rc,EDGE_ETCHED,BF_TOP|BF_BOTTOM);
510 break;
511 case SS_ETCHEDVERT:
512 DrawEdge(hdc,&rc,EDGE_ETCHED,BF_LEFT|BF_RIGHT);
513 break;
514 case SS_ETCHEDFRAME:
515 DrawEdge (hdc, &rc, EDGE_ETCHED, BF_RECT);
516 break;