sl@0: // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Extracted from DEBLOGWN.CPP sl@0: // Code to run the WIN32 windows with the output sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "LOGWIN.H" sl@0: sl@0: GLDEF_D struct TSharedMemory GSharedMemory; sl@0: //GLDEF_D struct HWND__ *Hwnd; sl@0: //LOCAL_D RSemaphore Sem; sl@0: sl@0: const TUint KHeapSize=0x8000; sl@0: sl@0: sl@0: TInt numLines(const CArrayVarSeg &aTextArray, TBool aOutOfMemory) sl@0: { sl@0: return (TInt)(aOutOfMemory)? sl@0: aTextArray.Count(): sl@0: aTextArray.Count()-1; sl@0: } sl@0: sl@0: TInt numVisibleLines(TInt aHeight, TInt aTextHeight) sl@0: { sl@0: return aHeight/aTextHeight; sl@0: } sl@0: sl@0: TInt32 __stdcall WndProc(struct HWND__ *aHwnd, TUint aMessage, TUint wParam, TInt32 lParam) sl@0: { sl@0: HDC hdc; sl@0: PAINTSTRUCT ps; sl@0: HFONT hfont; sl@0: RECT rect; sl@0: TInt i, sl@0: paintMin, sl@0: paintMax; sl@0: static LOGFONT logFont; sl@0: static TEXTMETRIC tm; sl@0: static TInt textHeight, sl@0: width, sl@0: height, sl@0: scrollMin=0, sl@0: scrollMax, sl@0: numLinesAbove=scrollMin, sl@0: prevNumLinesAbove; sl@0: static CArrayVarSeg *pmsg; sl@0: static TBool outOfMemory=EFalse; sl@0: sl@0: switch (aMessage) sl@0: { sl@0: case WM_CREATE: sl@0: hdc=GetDC(aHwnd); sl@0: sl@0: pmsg=new(ELeave) CArrayVarSeg(20); sl@0: { sl@0: TBuf<0x20> errorMsg; sl@0: errorMsg=_L("ERROR: out of memory"); sl@0: errorMsg.ZeroTerminate(); sl@0: TRAPD(err,pmsg->AppendL(*errorMsg.Ptr(), (errorMsg.Length()+1)*sizeof(TText))); sl@0: if (err!=KErrNone) sl@0: return(err); sl@0: } sl@0: GetTextMetrics(hdc, &tm); sl@0: textHeight=tm.tmHeight+tm.tmExternalLeading; sl@0: GetClientRect(aHwnd, &rect); sl@0: width=rect.right; sl@0: height=rect.bottom; sl@0: scrollMax=numLines(*pmsg, outOfMemory); sl@0: SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE); sl@0: SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE); sl@0: logFont.lfHeight=8; sl@0: wsprintf(logFont.lfFaceName, (LPCTSTR)_S("courier")); sl@0: sl@0: ReleaseDC(aHwnd, hdc); sl@0: return 0; sl@0: case WM_USER+EAppendText: sl@0: { sl@0: TRAPD(err,pmsg->InsertL(pmsg->Count()-1, *(TText *)lParam, wParam)); sl@0: if (err!=KErrNone) sl@0: { sl@0: pmsg->Delete(0, Max(0, (TInt)pmsg->Count()-1)); sl@0: numLinesAbove=scrollMax=scrollMin; sl@0: SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE); sl@0: SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE); sl@0: hdc=GetDC(aHwnd); sl@0: PatBlt(hdc, 0, 0, width, height, WHITENESS); sl@0: ReleaseDC(aHwnd, hdc); sl@0: return(err); sl@0: } sl@0: // adjust the scroll position so that the last line added is visible sl@0: if (numLinesAboveprevNumLinesAbove) sl@0: // scrolling towards end, therefore text moves up on screen sl@0: { sl@0: TInt numLinesToDraw=numLinesAbove-prevNumLinesAbove; sl@0: TInt numLinesToBlt=numVisibleLines(height, textHeight)-numLinesToDraw; sl@0: if (numLinesToBlt>0) sl@0: ScrollWindow(aHwnd, 0, -numLinesToDraw*textHeight, NULL, NULL); sl@0: PatBlt(hdc, 0, numLinesToBlt*textHeight, width, numLinesToDraw*textHeight, WHITENESS); sl@0: paintMin=Max(Min(numLinesAbove+numLinesToBlt, scrollMax), scrollMin); sl@0: paintMax=Min(paintMin+numLinesToDraw, scrollMax); sl@0: for (i=paintMin; i0) sl@0: ScrollWindow(aHwnd, 0, numLinesToDraw*textHeight, NULL, NULL); sl@0: PatBlt(hdc, 0, 0, width, numLinesToDraw*textHeight, WHITENESS); sl@0: paintMin=Max(Min(numLinesAbove, scrollMax), scrollMin); sl@0: paintMax=Min(paintMin+numLinesToDraw, scrollMax); sl@0: for (i=paintMin; i