Removed some unnecessary #includes and dll dependencies.
[wine/multimedia.git] / controls / icontitle.c
blob0e9489349df16c267f428438a3084cb95f4024b8
1 /*
2 * Icontitle window class.
4 * Copyright 1997 Alex Korobka
5 */
7 #include <stdio.h>
8 #include <string.h>
9 #include <unistd.h>
10 #include "windef.h"
11 #include "wingdi.h"
12 #include "winuser.h"
13 #include "wine/winuser16.h"
14 #include "win.h"
15 #include "heap.h"
17 BOOL bMultiLineTitle;
18 HFONT hIconTitleFont;
20 /***********************************************************************
21 * ICONTITLE_Init
23 BOOL ICONTITLE_Init(void)
25 LOGFONTA logFont;
27 SystemParametersInfoA( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
28 SystemParametersInfoA( SPI_GETICONTITLEWRAP, 0, &bMultiLineTitle, 0 );
29 hIconTitleFont = CreateFontIndirectA( &logFont );
30 return (hIconTitleFont) ? TRUE : FALSE;
33 /***********************************************************************
34 * ICONTITLE_Create
36 HWND ICONTITLE_Create( WND* wnd )
38 WND* wndPtr;
39 HWND hWnd;
41 if( wnd->dwStyle & WS_CHILD )
42 hWnd = CreateWindowExA( 0, ICONTITLE_CLASS_ATOM, NULL,
43 WS_CHILD | WS_CLIPSIBLINGS, 0, 0, 1, 1,
44 wnd->parent->hwndSelf, 0, wnd->hInstance, NULL );
45 else
46 hWnd = CreateWindowExA( 0, ICONTITLE_CLASS_ATOM, NULL,
47 WS_CLIPSIBLINGS, 0, 0, 1, 1,
48 wnd->hwndSelf, 0, wnd->hInstance, NULL );
49 wndPtr = WIN_FindWndPtr( hWnd );
50 if( wndPtr )
52 wndPtr->owner = wnd; /* MDI depends on this */
53 wndPtr->dwStyle &= ~(WS_CAPTION | WS_BORDER);
54 if( wnd->dwStyle & WS_DISABLED ) wndPtr->dwStyle |= WS_DISABLED;
55 WIN_ReleaseWndPtr(wndPtr);
56 return hWnd;
58 return 0;
61 /***********************************************************************
62 * ICONTITLE_GetTitlePos
64 static BOOL ICONTITLE_GetTitlePos( WND* wnd, LPRECT lpRect )
66 static WCHAR emptyTitleText[] = {'<','.','.','.','>',0};
67 LPWSTR str = NULL;
68 int length = lstrlenW( wnd->owner->text );
70 if( length )
72 str = HeapAlloc( GetProcessHeap(), 0, (length + 1) * sizeof(WCHAR) );
73 lstrcpyW( str, wnd->owner->text );
74 while( str[length - 1] == ' ' ) /* remove trailing spaces */
76 str[--length] = '\0';
77 if( !length )
79 HeapFree( GetProcessHeap(), 0, str );
80 break;
84 if( !length )
86 str = emptyTitleText;
87 length = lstrlenW( str );
90 if( str )
92 HDC hDC = GetDC( wnd->hwndSelf );
93 if( hDC )
95 HFONT hPrevFont = SelectObject( hDC, hIconTitleFont );
97 SetRect( lpRect, 0, 0, GetSystemMetrics(SM_CXICONSPACING) -
98 GetSystemMetrics(SM_CXBORDER) * 2,
99 GetSystemMetrics(SM_CYBORDER) * 2 );
101 DrawTextW( hDC, str, length, lpRect, DT_CALCRECT |
102 DT_CENTER | DT_NOPREFIX | DT_WORDBREAK |
103 (( bMultiLineTitle ) ? 0 : DT_SINGLELINE) );
105 SelectObject( hDC, hPrevFont );
106 ReleaseDC( wnd->hwndSelf, hDC );
108 lpRect->right += 4 * GetSystemMetrics(SM_CXBORDER) - lpRect->left;
109 lpRect->left = wnd->owner->rectWindow.left + GetSystemMetrics(SM_CXICON) / 2 -
110 (lpRect->right - lpRect->left) / 2;
111 lpRect->bottom -= lpRect->top;
112 lpRect->top = wnd->owner->rectWindow.top + GetSystemMetrics(SM_CYICON);
114 if( str != emptyTitleText ) HeapFree( GetProcessHeap(), 0, str );
115 return ( hDC ) ? TRUE : FALSE;
117 return FALSE;
120 /***********************************************************************
121 * ICONTITLE_Paint
123 static BOOL ICONTITLE_Paint( WND* wnd, HDC hDC, BOOL bActive )
125 HFONT hPrevFont;
126 HBRUSH hBrush = 0;
127 COLORREF textColor = 0;
129 if( bActive )
131 hBrush = GetSysColorBrush(COLOR_ACTIVECAPTION);
132 textColor = GetSysColor(COLOR_CAPTIONTEXT);
134 else
136 if( wnd->dwStyle & WS_CHILD )
138 hBrush = (HBRUSH) GetClassLongA(wnd->hwndSelf, GCL_HBRBACKGROUND);
139 if( hBrush )
141 INT level;
142 LOGBRUSH logBrush;
143 GetObjectA( hBrush, sizeof(logBrush), &logBrush );
144 level = GetRValue(logBrush.lbColor) +
145 GetGValue(logBrush.lbColor) +
146 GetBValue(logBrush.lbColor);
147 if( level < (0x7F * 3) )
148 textColor = RGB( 0xFF, 0xFF, 0xFF );
150 else
151 hBrush = GetStockObject( WHITE_BRUSH );
153 else
155 hBrush = GetStockObject( BLACK_BRUSH );
156 textColor = RGB( 0xFF, 0xFF, 0xFF );
160 FillWindow16( wnd->parent->hwndSelf, wnd->hwndSelf, hDC, hBrush );
162 hPrevFont = SelectObject( hDC, hIconTitleFont );
163 if( hPrevFont )
165 RECT rect;
166 INT length;
167 char buffer[80];
169 rect.left = rect.top = 0;
170 rect.right = wnd->rectWindow.right - wnd->rectWindow.left;
171 rect.bottom = wnd->rectWindow.bottom - wnd->rectWindow.top;
173 length = GetWindowTextA( wnd->owner->hwndSelf, buffer, 80 );
174 SetTextColor( hDC, textColor );
175 SetBkMode( hDC, TRANSPARENT );
177 DrawTextA( hDC, buffer, length, &rect, DT_CENTER | DT_NOPREFIX |
178 DT_WORDBREAK | ((bMultiLineTitle) ? 0 : DT_SINGLELINE) );
180 SelectObject( hDC, hPrevFont );
182 return ( hPrevFont ) ? TRUE : FALSE;
185 /***********************************************************************
186 * IconTitleWndProc
188 LRESULT WINAPI IconTitleWndProc( HWND hWnd, UINT msg,
189 WPARAM wParam, LPARAM lParam )
191 LRESULT retvalue;
192 WND *wnd = WIN_FindWndPtr( hWnd );
194 switch( msg )
196 case WM_NCHITTEST:
197 retvalue = HTCAPTION;
198 goto END;
199 case WM_NCMOUSEMOVE:
200 case WM_NCLBUTTONDBLCLK:
201 retvalue = SendMessageA( wnd->owner->hwndSelf, msg, wParam, lParam );
202 goto END;
203 case WM_ACTIVATE:
204 if( wParam ) SetActiveWindow( wnd->owner->hwndSelf );
205 /* fall through */
207 case WM_CLOSE:
208 retvalue = 0;
209 goto END;
210 case WM_SHOWWINDOW:
211 if( wnd && wParam )
213 RECT titleRect;
215 ICONTITLE_GetTitlePos( wnd, &titleRect );
216 if( wnd->owner->next != wnd ) /* keep icon title behind the owner */
217 SetWindowPos( hWnd, wnd->owner->hwndSelf,
218 titleRect.left, titleRect.top,
219 titleRect.right, titleRect.bottom, SWP_NOACTIVATE );
220 else
221 SetWindowPos( hWnd, 0, titleRect.left, titleRect.top,
222 titleRect.right, titleRect.bottom,
223 SWP_NOACTIVATE | SWP_NOZORDER );
225 retvalue = 0;
226 goto END;
227 case WM_ERASEBKGND:
228 if( wnd )
230 WND* iconWnd = WIN_LockWndPtr(wnd->owner);
232 if( iconWnd->dwStyle & WS_CHILD )
233 lParam = SendMessageA( iconWnd->hwndSelf, WM_ISACTIVEICON, 0, 0 );
234 else
235 lParam = (iconWnd->hwndSelf == GetActiveWindow16());
237 WIN_ReleaseWndPtr(iconWnd);
238 if( ICONTITLE_Paint( wnd, (HDC)wParam, (BOOL)lParam ) )
239 ValidateRect( hWnd, NULL );
240 retvalue = 1;
241 goto END;
245 retvalue = DefWindowProcA( hWnd, msg, wParam, lParam );
246 END:
247 WIN_ReleaseWndPtr(wnd);
248 return retvalue;