Made all 16<->32 HWND conversions use explicit functions instead of
[wine/multimedia.git] / controls / icontitle.c
blob85bcd42cbf6893334c42700478ae15224ebae8a1
1 /*
2 * Icontitle window class.
4 * Copyright 1997 Alex Korobka
5 */
7 #include <stdio.h>
8 #include <string.h>
9 #include <unistd.h>
11 #include "windef.h"
12 #include "winbase.h"
13 #include "wingdi.h"
14 #include "winuser.h"
15 #include "wine/winuser16.h"
16 #include "wine/unicode.h"
17 #include "controls.h"
18 #include "win.h"
20 static BOOL bMultiLineTitle;
21 static HFONT hIconTitleFont;
23 static LRESULT WINAPI IconTitleWndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam );
25 /*********************************************************************
26 * icon title class descriptor
28 const struct builtin_class_descr ICONTITLE_builtin_class =
30 ICONTITLE_CLASS_ATOM, /* name */
31 CS_GLOBALCLASS, /* style */
32 NULL, /* procA (winproc is Unicode only) */
33 IconTitleWndProc, /* procW */
34 0, /* extra */
35 IDC_ARROWA, /* cursor */
36 0 /* brush */
41 /***********************************************************************
42 * ICONTITLE_Create
44 HWND ICONTITLE_Create( HWND owner )
46 WND* wndPtr;
47 HWND hWnd;
48 HINSTANCE instance = GetWindowLongA( owner, GWL_HINSTANCE );
50 if( GetWindowLongA( owner, GWL_STYLE ) & WS_CHILD )
51 hWnd = CreateWindowExA( 0, ICONTITLE_CLASS_ATOM, NULL,
52 WS_CHILD | WS_CLIPSIBLINGS, 0, 0, 1, 1,
53 GetParent(owner), 0, instance, NULL );
54 else
55 hWnd = CreateWindowExA( 0, ICONTITLE_CLASS_ATOM, NULL,
56 WS_CLIPSIBLINGS, 0, 0, 1, 1,
57 owner, 0, instance, NULL );
58 wndPtr = WIN_FindWndPtr( hWnd );
59 if( wndPtr )
61 wndPtr->owner = owner; /* MDI depends on this */
62 wndPtr->dwStyle &= ~(WS_CAPTION | WS_BORDER);
63 if (!IsWindowEnabled(owner)) wndPtr->dwStyle |= WS_DISABLED;
64 WIN_ReleaseWndPtr(wndPtr);
65 return hWnd;
67 return 0;
70 /***********************************************************************
71 * ICONTITLE_SetTitlePos
73 static BOOL ICONTITLE_SetTitlePos( HWND hwnd, HWND owner )
75 static WCHAR emptyTitleText[] = {'<','.','.','.','>',0};
76 WCHAR str[80];
77 HDC hDC;
78 HFONT hPrevFont;
79 RECT rect;
80 INT cx, cy;
81 POINT pt;
83 int length = GetWindowTextW( owner, str, sizeof(str)/sizeof(WCHAR) );
85 while (length && str[length - 1] == ' ') /* remove trailing spaces */
86 str[--length] = 0;
88 if( !length )
90 strcpyW( str, emptyTitleText );
91 length = strlenW( str );
94 if (!(hDC = GetDC( hwnd ))) return FALSE;
96 hPrevFont = SelectObject( hDC, hIconTitleFont );
98 SetRect( &rect, 0, 0, GetSystemMetrics(SM_CXICONSPACING) -
99 GetSystemMetrics(SM_CXBORDER) * 2,
100 GetSystemMetrics(SM_CYBORDER) * 2 );
102 DrawTextW( hDC, str, length, &rect, DT_CALCRECT | DT_CENTER | DT_NOPREFIX | DT_WORDBREAK |
103 (( bMultiLineTitle ) ? 0 : DT_SINGLELINE) );
105 SelectObject( hDC, hPrevFont );
106 ReleaseDC( hwnd, hDC );
108 cx = rect.right - rect.left + 4 * GetSystemMetrics(SM_CXBORDER);
109 cy = rect.bottom - rect.top;
111 pt.x = (GetSystemMetrics(SM_CXICON) - cx) / 2;
112 pt.y = GetSystemMetrics(SM_CYICON);
114 /* point is relative to owner, make it relative to parent */
115 MapWindowPoints( owner, GetParent(hwnd), &pt, 1 );
117 SetWindowPos( hwnd, owner, pt.x, pt.y, cx, cy, SWP_NOACTIVATE );
118 return TRUE;
121 /***********************************************************************
122 * ICONTITLE_Paint
124 static BOOL ICONTITLE_Paint( HWND hwnd, HWND owner, HDC hDC, BOOL bActive )
126 RECT rect;
127 HFONT hPrevFont;
128 HBRUSH hBrush = 0;
129 COLORREF textColor = 0;
131 if( bActive )
133 hBrush = GetSysColorBrush(COLOR_ACTIVECAPTION);
134 textColor = GetSysColor(COLOR_CAPTIONTEXT);
136 else
138 if( GetWindowLongA( hwnd, GWL_STYLE ) & WS_CHILD )
140 hBrush = (HBRUSH) GetClassLongA(hwnd, GCL_HBRBACKGROUND);
141 if( hBrush )
143 INT level;
144 LOGBRUSH logBrush;
145 GetObjectA( hBrush, sizeof(logBrush), &logBrush );
146 level = GetRValue(logBrush.lbColor) +
147 GetGValue(logBrush.lbColor) +
148 GetBValue(logBrush.lbColor);
149 if( level < (0x7F * 3) )
150 textColor = RGB( 0xFF, 0xFF, 0xFF );
152 else
153 hBrush = GetStockObject( WHITE_BRUSH );
155 else
157 hBrush = GetStockObject( BLACK_BRUSH );
158 textColor = RGB( 0xFF, 0xFF, 0xFF );
162 GetClientRect( hwnd, &rect );
163 DPtoLP( hDC, (LPPOINT)&rect, 2 );
164 FillRect( hDC, &rect, hBrush );
166 hPrevFont = SelectObject( hDC, hIconTitleFont );
167 if( hPrevFont )
169 WCHAR buffer[80];
171 INT length = GetWindowTextW( owner, buffer, sizeof(buffer) );
172 SetTextColor( hDC, textColor );
173 SetBkMode( hDC, TRANSPARENT );
175 DrawTextW( hDC, buffer, length, &rect, DT_CENTER | DT_NOPREFIX |
176 DT_WORDBREAK | ((bMultiLineTitle) ? 0 : DT_SINGLELINE) );
178 SelectObject( hDC, hPrevFont );
180 return (hPrevFont != 0);
183 /***********************************************************************
184 * IconTitleWndProc
186 LRESULT WINAPI IconTitleWndProc( HWND hWnd, UINT msg,
187 WPARAM wParam, LPARAM lParam )
189 HWND owner = GetWindow( hWnd, GW_OWNER );
191 if (!IsWindow(hWnd)) return 0;
193 switch( msg )
195 case WM_CREATE:
196 if (!hIconTitleFont)
198 LOGFONTA logFont;
199 SystemParametersInfoA( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
200 SystemParametersInfoA( SPI_GETICONTITLEWRAP, 0, &bMultiLineTitle, 0 );
201 hIconTitleFont = CreateFontIndirectA( &logFont );
203 return (hIconTitleFont ? 0 : -1);
204 case WM_NCHITTEST:
205 return HTCAPTION;
206 case WM_NCMOUSEMOVE:
207 case WM_NCLBUTTONDBLCLK:
208 return SendMessageW( owner, msg, wParam, lParam );
209 case WM_ACTIVATE:
210 if( wParam ) SetActiveWindow( owner );
211 return 0;
212 case WM_CLOSE:
213 return 0;
214 case WM_SHOWWINDOW:
215 if (wParam) ICONTITLE_SetTitlePos( hWnd, owner );
216 return 0;
217 case WM_ERASEBKGND:
218 if( GetWindowLongA( owner, GWL_STYLE ) & WS_CHILD )
219 lParam = SendMessageA( owner, WM_ISACTIVEICON, 0, 0 );
220 else
221 lParam = (owner == GetActiveWindow());
222 if( ICONTITLE_Paint( hWnd, owner, (HDC)wParam, (BOOL)lParam ) )
223 ValidateRect( hWnd, NULL );
224 return 1;
226 return DefWindowProcW( hWnd, msg, wParam, lParam );