Release 990314.
[wine/multimedia.git] / controls / icontitle.c
blob82dd72680459339fe155d0637b6d2d1f97db64e8
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 "winuser.h"
11 #include "wine/winuser16.h"
12 #include "sysmetrics.h"
13 #include "win.h"
14 #include "desktop.h"
15 #include "heap.h"
17 static LPCSTR emptyTitleText = "<...>";
19 BOOL bMultiLineTitle;
20 HFONT hIconTitleFont;
22 /***********************************************************************
23 * ICONTITLE_Init
25 BOOL ICONTITLE_Init(void)
27 LOGFONTA logFont;
29 SystemParametersInfoA( SPI_GETICONTITLELOGFONT, 0, &logFont, 0 );
30 SystemParametersInfoA( SPI_GETICONTITLEWRAP, 0, &bMultiLineTitle, 0 );
31 hIconTitleFont = CreateFontIndirectA( &logFont );
32 return (hIconTitleFont) ? TRUE : FALSE;
35 /***********************************************************************
36 * ICONTITLE_Create
38 HWND ICONTITLE_Create( WND* wnd )
40 WND* wndPtr;
41 HWND hWnd;
43 if( wnd->dwStyle & WS_CHILD )
44 hWnd = CreateWindowExA( 0, ICONTITLE_CLASS_ATOM, NULL,
45 WS_CHILD | WS_CLIPSIBLINGS, 0, 0, 1, 1,
46 wnd->parent->hwndSelf, 0, wnd->hInstance, NULL );
47 else
48 hWnd = CreateWindowExA( 0, ICONTITLE_CLASS_ATOM, NULL,
49 WS_CLIPSIBLINGS, 0, 0, 1, 1,
50 wnd->hwndSelf, 0, wnd->hInstance, NULL );
51 wndPtr = WIN_FindWndPtr( hWnd );
52 if( wndPtr )
54 wndPtr->owner = wnd; /* MDI depends on this */
55 wndPtr->dwStyle &= ~(WS_CAPTION | WS_BORDER);
56 if( wnd->dwStyle & WS_DISABLED ) wndPtr->dwStyle |= WS_DISABLED;
57 WIN_ReleaseWndPtr(wndPtr);
58 return hWnd;
60 return 0;
63 /***********************************************************************
64 * ICONTITLE_GetTitlePos
66 static BOOL ICONTITLE_GetTitlePos( WND* wnd, LPRECT lpRect )
68 LPSTR str;
69 int length = lstrlenA( wnd->owner->text );
71 if( length )
73 str = HeapAlloc( GetProcessHeap(), 0, length + 1 );
74 lstrcpyA( str, wnd->owner->text );
75 while( str[length - 1] == ' ' ) /* remove trailing spaces */
77 str[--length] = '\0';
78 if( !length )
80 HeapFree( GetProcessHeap(), 0, str );
81 break;
85 if( !length )
87 str = (LPSTR)emptyTitleText;
88 length = lstrlenA( str );
91 if( str )
93 HDC hDC = GetDC( wnd->hwndSelf );
94 if( hDC )
96 HFONT hPrevFont = SelectObject( hDC, hIconTitleFont );
98 SetRect( lpRect, 0, 0, sysMetrics[SM_CXICONSPACING] -
99 SYSMETRICS_CXBORDER * 2, SYSMETRICS_CYBORDER * 2 );
101 DrawTextA( 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 * SYSMETRICS_CXBORDER - lpRect->left;
109 lpRect->left = wnd->owner->rectWindow.left + SYSMETRICS_CXICON / 2 -
110 (lpRect->right - lpRect->left) / 2;
111 lpRect->bottom -= lpRect->top;
112 lpRect->top = wnd->owner->rectWindow.top + SYSMETRICS_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 = wnd->parent->class->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;