os/graphics/windowing/windowserver/test/TClick/LOGWIN.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/TClick/LOGWIN.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,304 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Extracted from DEBLOGWN.CPP
    1.18 +// Code to run the WIN32 windows with the output
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <e32std.h>
    1.23 +#include <e32base.h>
    1.24 +#include <emulator.h>
    1.25 +#include "LOGWIN.H"
    1.26 +
    1.27 +GLDEF_D struct TSharedMemory GSharedMemory;
    1.28 +//GLDEF_D struct HWND__ *Hwnd;
    1.29 +//LOCAL_D RSemaphore Sem;
    1.30 +
    1.31 +const TUint KHeapSize=0x8000;
    1.32 +
    1.33 +
    1.34 +TInt numLines(const CArrayVarSeg<TText> &aTextArray, TBool aOutOfMemory)
    1.35 +	{
    1.36 +	return (TInt)(aOutOfMemory)?
    1.37 +				aTextArray.Count():
    1.38 +				aTextArray.Count()-1;
    1.39 +	}
    1.40 +
    1.41 +TInt numVisibleLines(TInt aHeight, TInt aTextHeight)
    1.42 +	{
    1.43 +	return aHeight/aTextHeight;
    1.44 +	}
    1.45 +
    1.46 +TInt32 __stdcall WndProc(struct HWND__ *aHwnd, TUint aMessage, TUint wParam, TInt32 lParam)
    1.47 +    {
    1.48 +    HDC hdc;
    1.49 +    PAINTSTRUCT ps;
    1.50 +	HFONT hfont;
    1.51 +    RECT rect;
    1.52 +	TInt i,
    1.53 +		paintMin,
    1.54 +		paintMax;
    1.55 +	static LOGFONT logFont;
    1.56 +	static TEXTMETRIC tm;
    1.57 +	static TInt textHeight,
    1.58 +		width,
    1.59 +		height,
    1.60 +		scrollMin=0,
    1.61 +		scrollMax,
    1.62 +		numLinesAbove=scrollMin,
    1.63 +		prevNumLinesAbove;
    1.64 +	static CArrayVarSeg<TText> *pmsg;
    1.65 +	static TBool outOfMemory=EFalse;
    1.66 +
    1.67 +    switch (aMessage)
    1.68 +        {
    1.69 +    case WM_CREATE:
    1.70 +		hdc=GetDC(aHwnd);
    1.71 +
    1.72 +		pmsg=new(ELeave) CArrayVarSeg<TText>(20);
    1.73 +		{
    1.74 +		TBuf<0x20> errorMsg;
    1.75 +		errorMsg=_L("ERROR: out of memory");
    1.76 +		errorMsg.ZeroTerminate();
    1.77 +		TRAPD(err,pmsg->AppendL(*errorMsg.Ptr(), (errorMsg.Length()+1)*sizeof(TText)));
    1.78 +		if (err!=KErrNone)
    1.79 +			return(err);
    1.80 +		}
    1.81 +		GetTextMetrics(hdc, &tm);
    1.82 +		textHeight=tm.tmHeight+tm.tmExternalLeading;
    1.83 +        GetClientRect(aHwnd, &rect);
    1.84 +		width=rect.right;
    1.85 +		height=rect.bottom;
    1.86 +		scrollMax=numLines(*pmsg, outOfMemory);
    1.87 +		SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE);
    1.88 +		SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE);
    1.89 +		logFont.lfHeight=8;
    1.90 +		wsprintf(logFont.lfFaceName, (LPCTSTR)_S("courier"));
    1.91 +
    1.92 +		ReleaseDC(aHwnd, hdc);
    1.93 +		return 0;
    1.94 +	case WM_USER+EAppendText:
    1.95 +		{
    1.96 +		TRAPD(err,pmsg->InsertL(pmsg->Count()-1, *(TText *)lParam, wParam));
    1.97 +		if (err!=KErrNone)
    1.98 +			{
    1.99 +			pmsg->Delete(0, Max(0, (TInt)pmsg->Count()-1));
   1.100 +			numLinesAbove=scrollMax=scrollMin;
   1.101 +			SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE);
   1.102 +			SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE);
   1.103 +			hdc=GetDC(aHwnd);
   1.104 +			PatBlt(hdc, 0, 0, width, height, WHITENESS);
   1.105 +			ReleaseDC(aHwnd, hdc);
   1.106 +			return(err);
   1.107 +			}
   1.108 +		// adjust the scroll position so that the last line added is visible
   1.109 +		if (numLinesAbove<numLines(*pmsg, outOfMemory)-numVisibleLines(height, textHeight))
   1.110 +			{
   1.111 +			prevNumLinesAbove=numLinesAbove;
   1.112 +			numLinesAbove=numLines(*pmsg, outOfMemory)-numVisibleLines(height, textHeight);
   1.113 +			scrollMax=numLines(*pmsg, outOfMemory);
   1.114 +			SendMessage(aHwnd, WM_USER+EScrollToPos, 0, 0L);
   1.115 +			}
   1.116 +		else
   1.117 +			{
   1.118 +			hdc=GetDC(aHwnd);
   1.119 +			hfont=(HFONT)SelectObject(hdc, CreateFontIndirect(&logFont));
   1.120 +			TText *text=&((*pmsg)[scrollMax]);
   1.121 +			TextOut(hdc, 0, (scrollMax-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
   1.122 +			scrollMax=numLines(*pmsg, outOfMemory);
   1.123 +			ReleaseDC(aHwnd, hdc);
   1.124 +			}
   1.125 +		return KErrNone;
   1.126 +		}
   1.127 +	case WM_USER+EScrollToPos:
   1.128 +		SetScrollPos(aHwnd, SB_VERT, numLinesAbove, TRUE);
   1.129 +		SetScrollRange(aHwnd, SB_VERT, scrollMin, scrollMax, FALSE);
   1.130 +
   1.131 +		hdc=GetDC(aHwnd);
   1.132 +		hfont=(HFONT)SelectObject(hdc, CreateFontIndirect(&logFont));
   1.133 +
   1.134 +		if (numLinesAbove>prevNumLinesAbove)
   1.135 +		// scrolling towards end, therefore text moves up on screen
   1.136 +			{
   1.137 +			TInt numLinesToDraw=numLinesAbove-prevNumLinesAbove;
   1.138 +			TInt numLinesToBlt=numVisibleLines(height, textHeight)-numLinesToDraw;
   1.139 +			if (numLinesToBlt>0)
   1.140 +				ScrollWindow(aHwnd, 0, -numLinesToDraw*textHeight, NULL, NULL);
   1.141 +			PatBlt(hdc, 0, numLinesToBlt*textHeight, width, numLinesToDraw*textHeight, WHITENESS);
   1.142 +			paintMin=Max(Min(numLinesAbove+numLinesToBlt, scrollMax), scrollMin);
   1.143 +			paintMax=Min(paintMin+numLinesToDraw, scrollMax);
   1.144 +			for (i=paintMin; i<paintMax; i++)
   1.145 +				{
   1.146 +				TText *text=&((*pmsg)[i]);
   1.147 +				TextOut(hdc, 0, (i-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
   1.148 +				}
   1.149 +			}
   1.150 +		else
   1.151 +		// scrolling towards beginning, therefore text moves down on screen
   1.152 +			{
   1.153 +			TInt numLinesToDraw=prevNumLinesAbove-numLinesAbove;
   1.154 +			TInt numLinesToBlt=numVisibleLines(height, textHeight)-numLinesToDraw;
   1.155 +			if (numLinesToBlt>0)
   1.156 +				ScrollWindow(aHwnd, 0, numLinesToDraw*textHeight, NULL, NULL);
   1.157 +			PatBlt(hdc, 0, 0, width, numLinesToDraw*textHeight, WHITENESS);
   1.158 +			paintMin=Max(Min(numLinesAbove, scrollMax), scrollMin);
   1.159 +			paintMax=Min(paintMin+numLinesToDraw, scrollMax);
   1.160 +			for (i=paintMin; i<paintMax; i++)
   1.161 +				{
   1.162 +				TText *text=&((*pmsg)[i]);
   1.163 +				TextOut(hdc, 0, (i-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
   1.164 +				}
   1.165 +			}
   1.166 +
   1.167 +		DeleteObject(hfont);
   1.168 +		ReleaseDC(aHwnd, hdc);
   1.169 +		return 0;
   1.170 +    case WM_PAINT:
   1.171 +		hdc=BeginPaint(aHwnd, &ps);
   1.172 +		hfont=(HFONT)SelectObject(hdc, CreateFontIndirect(&logFont));
   1.173 +
   1.174 +		paintMin=Max(scrollMin, numLinesAbove);
   1.175 +		paintMax=Min(numLines(*pmsg, outOfMemory), numLinesAbove+numVisibleLines(height, textHeight));
   1.176 +		for (i=paintMin; i<paintMax; i++)
   1.177 +				{
   1.178 +				TText *text=&((*pmsg)[i]);
   1.179 +				TextOut(hdc, 0, (i-numLinesAbove)*textHeight, (LPCTSTR)text, User::StringLength(text));
   1.180 +				}
   1.181 +
   1.182 +		DeleteObject(hfont);
   1.183 +		EndPaint(aHwnd, &ps);
   1.184 +        return 0;
   1.185 +    case WM_SIZE:
   1.186 +        width=LOWORD(lParam);
   1.187 +        height=HIWORD(lParam);
   1.188 +		return 0;
   1.189 +    case WM_VSCROLL:
   1.190 +		prevNumLinesAbove=numLinesAbove;
   1.191 +        switch (LOWORD(wParam))
   1.192 +			{
   1.193 +		case SB_TOP:
   1.194 +			numLinesAbove=scrollMin;
   1.195 +			break;
   1.196 +		case SB_BOTTOM:
   1.197 +			numLinesAbove=scrollMax;
   1.198 +			break;
   1.199 +		case SB_LINEUP:
   1.200 +			numLinesAbove--;
   1.201 +			break;
   1.202 +		case SB_LINEDOWN:
   1.203 +			numLinesAbove++;
   1.204 +			break;
   1.205 +		case SB_PAGEUP:
   1.206 +			numLinesAbove-=numVisibleLines(height, textHeight);
   1.207 +			break;
   1.208 +		case SB_PAGEDOWN:
   1.209 +			numLinesAbove+=numVisibleLines(height, textHeight);
   1.210 +			break;
   1.211 +		case SB_THUMBTRACK:
   1.212 +			numLinesAbove=HIWORD(wParam);
   1.213 +			break;
   1.214 +			}
   1.215 +		numLinesAbove=max(scrollMin, min(numLinesAbove, scrollMax));
   1.216 +
   1.217 +		if (numLinesAbove!=prevNumLinesAbove)
   1.218 +			SendMessage(aHwnd, WM_USER+EScrollToPos, 0, 0L);
   1.219 +		return 0;
   1.220 +    case WM_KEYDOWN:
   1.221 +		switch (wParam)
   1.222 +			{
   1.223 +		case VK_HOME:
   1.224 +			SendMessage(aHwnd, WM_VSCROLL, SB_TOP, 0L);
   1.225 +			break;
   1.226 +		case VK_END:
   1.227 +			SendMessage(aHwnd, WM_VSCROLL, SB_BOTTOM, 0L);
   1.228 +			break;
   1.229 +		case VK_PRIOR:
   1.230 +			SendMessage(aHwnd, WM_VSCROLL, SB_PAGEUP, 0L);
   1.231 +			break;
   1.232 +		case VK_NEXT:
   1.233 +			SendMessage(aHwnd, WM_VSCROLL, SB_PAGEDOWN, 0L);
   1.234 +			break;
   1.235 +		case VK_UP:
   1.236 +			SendMessage(aHwnd, WM_VSCROLL, SB_LINEUP, 0L);
   1.237 +			break;
   1.238 +		case VK_DOWN:
   1.239 +			SendMessage(aHwnd, WM_VSCROLL, SB_LINEDOWN, 0L);
   1.240 +			break;
   1.241 +			}
   1.242 +		return 0;
   1.243 +	case WM_DESTROY:
   1.244 +		delete pmsg;
   1.245 +		PostQuitMessage(0);
   1.246 +		return 0;
   1.247 +		}
   1.248 +
   1.249 +	return DefWindowProc(aHwnd, aMessage, wParam, lParam);
   1.250 +	}
   1.251 +
   1.252 +TInt logWinMain(TAny *)
   1.253 +    {
   1.254 +    MSG msg;
   1.255 +    WNDCLASS wndclass;
   1.256 +    const TText *szAppName=_S("Window Server Log");
   1.257 +
   1.258 +    wndclass.style=CS_HREDRAW|CS_VREDRAW;
   1.259 +    wndclass.lpfnWndProc=WndProc;
   1.260 +    wndclass.cbClsExtra=0;
   1.261 +    wndclass.cbWndExtra=0;
   1.262 +    wndclass.hInstance=NULL;
   1.263 +    wndclass.hIcon=LoadIcon(NULL, IDI_APPLICATION);
   1.264 +    wndclass.hCursor=LoadCursor(NULL, IDC_ARROW);
   1.265 +	//wndclass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);
   1.266 +	wndclass.hbrBackground=(HBRUSH)GetSysColorBrush(COLOR_BTNFACE);
   1.267 +    wndclass.lpszMenuName=NULL;
   1.268 +    wndclass.lpszClassName=(LPCTSTR)szAppName;
   1.269 +
   1.270 +    RegisterClass(&wndclass);
   1.271 +
   1.272 +	GSharedMemory.iHwnd=CreateWindow((LPCTSTR)szAppName,
   1.273 +                    (LPCTSTR)szAppName,
   1.274 +					WS_OVERLAPPEDWINDOW,
   1.275 +					//WS_OVERLAPPEDWINDOW|WS_VSCROLL|WS_MINIMIZE,
   1.276 +                    CW_USEDEFAULT,
   1.277 +                    CW_USEDEFAULT,
   1.278 +                    CW_USEDEFAULT,
   1.279 +                    CW_USEDEFAULT,
   1.280 +                    NULL,
   1.281 +                    NULL,
   1.282 +                    NULL,
   1.283 +                    NULL);
   1.284 +
   1.285 +	ShowWindow(GSharedMemory.iHwnd, SW_SHOWMINNOACTIVE);
   1.286 +	//ShowWindow(GSharedMemory.iHwnd, SW_MINIMIZE);
   1.287 +	UpdateWindow(GSharedMemory.iHwnd);
   1.288 +	GSharedMemory.iStartSemaphore.Signal(); // allows logging to start now that the window, etc. has been set up
   1.289 +	Emulator::Escape();
   1.290 +    while (GetMessage(&msg, NULL, 0, 0))
   1.291 +        {
   1.292 +        TranslateMessage(&msg);
   1.293 +        DispatchMessage(&msg);
   1.294 +        }
   1.295 +	Emulator::Reenter();
   1.296 +    return msg.wParam;
   1.297 +    }
   1.298 +
   1.299 +GLDEF_C void CreateLogWinThreadL()
   1.300 +	{
   1.301 +	_LIT(KLogWin,"LogingWindow");
   1.302 +	RThread wsThread;
   1.303 +	GSharedMemory.iStartSemaphore.CreateLocal(0);
   1.304 +	User::LeaveIfError(wsThread.Create(KLogWin,logWinMain,KDefaultStackSize,KHeapSize,KHeapSize,NULL));
   1.305 +	wsThread.Resume();
   1.306 +	GSharedMemory.iStartSemaphore.Wait();
   1.307 +	}