First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Extracted from DEBLOGWN.CPP
15 // Code to run the WIN32 windows with the output
24 GLDEF_D struct TSharedMemory GSharedMemory;
25 //GLDEF_D struct HWND__ *Hwnd;
26 //LOCAL_D RSemaphore Sem;
28 const TUint KHeapSize=0x8000;
31 TInt numLines(const CArrayVarSeg<TText> &aTextArray, TBool aOutOfMemory)
33 return (TInt)(aOutOfMemory)?
38 TInt numVisibleLines(TInt aHeight, TInt aTextHeight)
40 return aHeight/aTextHeight;
43 TInt32 __stdcall WndProc(struct HWND__ *aHwnd, TUint aMessage, TUint wParam, TInt32 lParam)
52 static LOGFONT logFont;
54 static TInt textHeight,
59 numLinesAbove=scrollMin,
61 static CArrayVarSeg<TText> *pmsg;
62 static TBool outOfMemory=EFalse;
69 pmsg=new(ELeave) CArrayVarSeg<TText>(20);
72 errorMsg=_L("ERROR: out of memory");
73 errorMsg.ZeroTerminate();
74 TRAPD(err,pmsg->AppendL(*errorMsg.Ptr(), (errorMsg.Length()+1)*sizeof(TText)));
78 GetTextMetrics(hdc, &tm);
79 textHeight=tm.tmHeight+tm.tmExternalLeading;
80 GetClientRect(aHwnd, &rect);
83 scrollMax=numLines(*pmsg, outOfMemory);
84 SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE);
85 SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE);
87 wsprintf(logFont.lfFaceName, (LPCTSTR)_S("courier"));
89 ReleaseDC(aHwnd, hdc);
91 case WM_USER+EAppendText:
93 TRAPD(err,pmsg->InsertL(pmsg->Count()-1, *(TText *)lParam, wParam));
96 pmsg->Delete(0, Max(0, (TInt)pmsg->Count()-1));
97 numLinesAbove=scrollMax=scrollMin;
98 SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE);
99 SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE);
101 PatBlt(hdc, 0, 0, width, height, WHITENESS);
102 ReleaseDC(aHwnd, hdc);
105 // adjust the scroll position so that the last line added is visible
106 if (numLinesAbove<numLines(*pmsg, outOfMemory)-numVisibleLines(height, textHeight))
108 prevNumLinesAbove=numLinesAbove;
109 numLinesAbove=numLines(*pmsg, outOfMemory)-numVisibleLines(height, textHeight);
110 scrollMax=numLines(*pmsg, outOfMemory);
111 SendMessage(aHwnd, WM_USER+EScrollToPos, 0, 0L);
116 hfont=(HFONT)SelectObject(hdc, CreateFontIndirect(&logFont));
117 TText *text=&((*pmsg)[scrollMax]);
118 TextOut(hdc, 0, (scrollMax-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
119 scrollMax=numLines(*pmsg, outOfMemory);
120 ReleaseDC(aHwnd, hdc);
124 case WM_USER+EScrollToPos:
125 SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE);
126 SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE);
129 hfont=(HFONT)SelectObject(hdc, CreateFontIndirect(&logFont));
131 if (numLinesAbove>prevNumLinesAbove)
132 // scrolling towards end, therefore text moves up on screen
134 TInt numLinesToDraw=numLinesAbove-prevNumLinesAbove;
135 TInt numLinesToBlt=numVisibleLines(height, textHeight)-numLinesToDraw;
137 ScrollWindow(aHwnd, 0, -numLinesToDraw*textHeight, NULL, NULL);
138 PatBlt(hdc, 0, numLinesToBlt*textHeight, width, numLinesToDraw*textHeight, WHITENESS);
139 paintMin=Max(Min(numLinesAbove+numLinesToBlt, scrollMax), scrollMin);
140 paintMax=Min(paintMin+numLinesToDraw, scrollMax);
141 for (i=paintMin; i<paintMax; i++)
143 TText *text=&((*pmsg)[i]);
144 TextOut(hdc, 0, (i-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
148 // scrolling towards beginning, therefore text moves down on screen
150 TInt numLinesToDraw=prevNumLinesAbove-numLinesAbove;
151 TInt numLinesToBlt=numVisibleLines(height, textHeight)-numLinesToDraw;
153 ScrollWindow(aHwnd, 0, numLinesToDraw*textHeight, NULL, NULL);
154 PatBlt(hdc, 0, 0, width, numLinesToDraw*textHeight, WHITENESS);
155 paintMin=Max(Min(numLinesAbove, scrollMax), scrollMin);
156 paintMax=Min(paintMin+numLinesToDraw, scrollMax);
157 for (i=paintMin; i<paintMax; i++)
159 TText *text=&((*pmsg)[i]);
160 TextOut(hdc, 0, (i-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
165 ReleaseDC(aHwnd, hdc);
168 hdc=BeginPaint(aHwnd, &ps);
169 hfont=(HFONT)SelectObject(hdc, CreateFontIndirect(&logFont));
171 paintMin=Max(scrollMin, numLinesAbove);
172 paintMax=Min(numLines(*pmsg, outOfMemory), numLinesAbove+numVisibleLines(height, textHeight));
173 for (i=paintMin; i<paintMax; i++)
175 TText *text=&((*pmsg)[i]);
176 TextOut(hdc, 0, (i-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
180 EndPaint(aHwnd, &ps);
183 width=LOWORD(lParam);
184 height=HIWORD(lParam);
187 prevNumLinesAbove=numLinesAbove;
188 switch (LOWORD(wParam))
191 numLinesAbove=scrollMin;
194 numLinesAbove=scrollMax;
203 numLinesAbove-=numVisibleLines(height, textHeight);
206 numLinesAbove+=numVisibleLines(height, textHeight);
209 numLinesAbove=HIWORD(wParam);
212 numLinesAbove=max(scrollMin, min(numLinesAbove, scrollMax));
214 if (numLinesAbove!=prevNumLinesAbove)
215 SendMessage(aHwnd, WM_USER+EScrollToPos, 0, 0L);
221 SendMessage(aHwnd, WM_VSCROLL, SB_TOP, 0L);
224 SendMessage(aHwnd, WM_VSCROLL, SB_BOTTOM, 0L);
227 SendMessage(aHwnd, WM_VSCROLL, SB_PAGEUP, 0L);
230 SendMessage(aHwnd, WM_VSCROLL, SB_PAGEDOWN, 0L);
233 SendMessage(aHwnd, WM_VSCROLL, SB_LINEUP, 0L);
236 SendMessage(aHwnd, WM_VSCROLL, SB_LINEDOWN, 0L);
246 return DefWindowProc(aHwnd, aMessage, wParam, lParam);
249 TInt logWinMain(TAny *)
253 const TText *szAppName=_S("Window Server Log");
255 wndclass.style=CS_HREDRAW|CS_VREDRAW;
256 wndclass.lpfnWndProc=WndProc;
257 wndclass.cbClsExtra=0;
258 wndclass.cbWndExtra=0;
259 wndclass.hInstance=NULL;
260 wndclass.hIcon=LoadIcon(NULL, IDI_APPLICATION);
261 wndclass.hCursor=LoadCursor(NULL, IDC_ARROW);
262 //wndclass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);
263 wndclass.hbrBackground=(HBRUSH)GetSysColorBrush(COLOR_BTNFACE);
264 wndclass.lpszMenuName=NULL;
265 wndclass.lpszClassName=(LPCTSTR)szAppName;
267 RegisterClass(&wndclass);
269 GSharedMemory.iHwnd=CreateWindow((LPCTSTR)szAppName,
272 //WS_OVERLAPPEDWINDOW|WS_VSCROLL|WS_MINIMIZE,
282 ShowWindow(GSharedMemory.iHwnd, SW_SHOWMINNOACTIVE);
283 //ShowWindow(GSharedMemory.iHwnd, SW_MINIMIZE);
284 UpdateWindow(GSharedMemory.iHwnd);
285 GSharedMemory.iStartSemaphore.Signal(); // allows logging to start now that the window, etc. has been set up
287 while (GetMessage(&msg, NULL, 0, 0))
289 TranslateMessage(&msg);
290 DispatchMessage(&msg);
296 GLDEF_C void CreateLogWinThreadL()
298 _LIT(KLogWin,"LogingWindow");
300 GSharedMemory.iStartSemaphore.CreateLocal(0);
301 User::LeaveIfError(wsThread.Create(KLogWin,logWinMain,KDefaultStackSize,KHeapSize,KHeapSize,NULL));
303 GSharedMemory.iStartSemaphore.Wait();