1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tlib/TLEVENT.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,294 @@
1.4 +// Copyright (c) 1994-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 +// Maintains a window displaying last event details
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <w32std.h>
1.23 +#include <e32svr.h>
1.24 +#include "testbase.h"
1.25 +
1.26 +const TInt NumLogLinesPerEvent=2;
1.27 +
1.28 +
1.29 +//
1.30 +// Event window //
1.31 +//
1.32 +
1.33 +EXPORT_C CEventWindow::CEventWindow(TInt aLogSize) : CTWin(), iLogSize(aLogSize)
1.34 + {
1.35 + }
1.36 +
1.37 +EXPORT_C CEventWindow::~CEventWindow()
1.38 + {
1.39 + delete[] iLoggedEvents;
1.40 + RelinquishFocus();
1.41 + }
1.42 +
1.43 +EXPORT_C void CEventWindow::ConstructL(CTWinBase &parent)
1.44 + {
1.45 + CTWin::ConstructL(parent);
1.46 + iLineHeight=iFont->HeightInPixels()+2;
1.47 + iLoggedEvents=new(ELeave) TWsEvent[iLogSize];
1.48 + iWin.EnableModifierChangedEvents(EModifierFunc|EModifierCapsLock|EModifierNumLock, EEventControlAlways);
1.49 + iWin.EnableOnEvents(EEventControlAlways);
1.50 + }
1.51 +
1.52 +EXPORT_C void CEventWindow::SetUpL(const TPoint &pos, CTWinBase *parent, CWindowGc &aGc)
1.53 + {
1.54 + TRAPD(err,ConstructL(*parent));
1.55 + if (err!=KErrNone)
1.56 + {
1.57 + delete this;
1.58 + User::Leave(err);
1.59 + }
1.60 + SetExt(pos,TSize(600,iLineHeight*NumLogLinesPerEvent*iLogSize));
1.61 + Activate();
1.62 + AssignGC(aGc);
1.63 + }
1.64 +
1.65 +void CEventWindow::DrawLine(TInt aLine, const TDesC &aText)
1.66 + {
1.67 + iGc->DrawText(aText, TPoint(10,iLineHeight*aLine+iFont->AscentInPixels()+1));
1.68 + }
1.69 +
1.70 +void CEventWindow::LogEvent(TInt aLogNum, const TWsEvent &aEvent)
1.71 + {
1.72 + TBuf<0x80> buf1;
1.73 + TBuf<0x80> buf2;
1.74 + TPtrC type(_L("Unknown event type"));
1.75 + TKeyEvent *key=aEvent.Key();
1.76 + switch(aEvent.Type())
1.77 + {
1.78 + case EEventKey:
1.79 + type.Set(_L("EEventKey"));
1.80 + buf2.Format(TRefByValue<const TDesC>(_L("Code=%d [%c], ScanCode=0x%x, Modifiers=0x%04x, repeats=%d")), key->iCode, key->iCode, key->iScanCode,key->iModifiers,key->iRepeats);
1.81 + break;
1.82 + case EEventKeyUp:
1.83 + type.Set(_L("EEventKeyUp"));
1.84 + buf2.Format(TRefByValue<const TDesC>(_L("scanCode=0x%x, Modifiers=0x%04x")), key->iScanCode, key->iModifiers);
1.85 + break;
1.86 + case EEventKeyDown:
1.87 + type.Set(_L("EEventKeyDown"));
1.88 + buf2.Format(TRefByValue<const TDesC>(_L("scanCode=0x%x, Modifiers=0x%04x")), key->iScanCode, key->iModifiers);
1.89 + break;
1.90 + case EEventPointer:
1.91 + {
1.92 + TPointerEvent *pointer=aEvent.Pointer();
1.93 + TPtrC ptrType(_L("Unknown pointer event"));
1.94 + switch(pointer->iType)
1.95 + {
1.96 + case TPointerEvent::EButton1Up:
1.97 + ptrType.Set(_L("EButton1Up"));
1.98 + break;
1.99 + case TPointerEvent::EButton3Up:
1.100 + ptrType.Set(_L("EButton3Up"));
1.101 + break;
1.102 + case TPointerEvent::EButton2Up:
1.103 + ptrType.Set(_L("EButton2Up"));
1.104 + break;
1.105 + case TPointerEvent::EButton1Down:
1.106 + ptrType.Set(_L("EButton1Down"));
1.107 + break;
1.108 + case TPointerEvent::EButton3Down:
1.109 + ptrType.Set(_L("EButton3Down"));
1.110 + break;
1.111 + case TPointerEvent::EButton2Down:
1.112 + ptrType.Set(_L("EButton2Down"));
1.113 + break;
1.114 + case TPointerEvent::EDrag:
1.115 + ptrType.Set(_L("EDrag"));
1.116 + break;
1.117 + case TPointerEvent::EMove:
1.118 + ptrType.Set(_L("EMove"));
1.119 + break;
1.120 + case TPointerEvent::EButtonRepeat:
1.121 + ptrType.Set(_L("EButtonRepeat"));
1.122 + break;
1.123 + case TPointerEvent::ESwitchOn:
1.124 + ptrType.Set(_L("ESwitchOn"));
1.125 + break;
1.126 + }
1.127 + type.Set(_L("EEventPointer"));
1.128 + buf2.Format(TRefByValue<const TDesC>(_L("Type=%S, state=0x%x, pos={%d,%d}, parent pos={%d,%d}")),&ptrType, pointer->iModifiers,
1.129 + pointer->iPosition.iX,pointer->iPosition.iY,pointer->iParentPosition.iX,pointer->iParentPosition.iY);
1.130 + }
1.131 + break;
1.132 + case EEventPointerEnter:
1.133 + type.Set(_L("EEventPointerEnter"));
1.134 + break;
1.135 + case EEventPointerExit:
1.136 + type.Set(_L("EEventPointerExit"));
1.137 + break;
1.138 + case EEventSwitchOn:
1.139 + type.Set(_L("EEventSwitchOn"));
1.140 + break;
1.141 + case EEventModifiersChanged:
1.142 + type.Set(_L("EEventModifiersChanged"));
1.143 + buf2.Format(TRefByValue<const TDesC>(_L("Changed=0x%x, State=0x%x ")),aEvent.ModifiersChanged()->iChangedModifiers,aEvent.ModifiersChanged()->iModifiers);
1.144 + break;
1.145 + case EEventFocusLost:
1.146 + type.Set(_L("EEventFocusLost"));
1.147 + break;
1.148 + case EEventFocusGained:
1.149 + type.Set(_L("EEventFocusGained"));
1.150 + break;
1.151 + default:;
1.152 + }
1.153 + TBuf<20> timeBuf;
1.154 + _LIT(TimeDisc,"%/0%1%/1%2%/2%3%/3 %:0%H%:1%T%:2%S%:3");
1.155 + TRAPD(err,aEvent.Time().FormatL(timeBuf,TimeDisc));
1.156 + if (err!=KErrNone)
1.157 + {
1.158 + _LIT(DummyTime,"########");
1.159 + timeBuf.Append(DummyTime);
1.160 + }
1.161 + buf1.Format(TRefByValue<const TDesC>(_L("%d: %S [%x], %S")), iCount-aLogNum, &type, aEvent.Handle(), &timeBuf);
1.162 + TInt baseLine=(iLogSize-aLogNum-1)*NumLogLinesPerEvent;
1.163 + DrawLine(baseLine+0,buf1);
1.164 + DrawLine(baseLine+1,buf2);
1.165 + }
1.166 +
1.167 +EXPORT_C void CEventWindow::Draw()
1.168 + {
1.169 + DrawBorder();
1.170 + for(TInt index=0;index<iNumLogged;index++)
1.171 + LogEvent(index,iLoggedEvents[index]);
1.172 + }
1.173 +
1.174 +EXPORT_C void CEventWindow::WinKeyL(const TKeyEvent &,const TTime&)
1.175 + {
1.176 + }
1.177 +
1.178 +EXPORT_C void CEventWindow::LogEvent(const TWsEvent &aEvent)
1.179 + {
1.180 + iCount++;
1.181 + if (iNumLogged<iLogSize)
1.182 + iNumLogged++;
1.183 + for(TInt index=iNumLogged-1;index>0;index--)
1.184 + iLoggedEvents[index]=iLoggedEvents[index-1];
1.185 + iLoggedEvents[0]=aEvent;
1.186 + DrawNow();
1.187 + }
1.188 +
1.189 +
1.190 +//
1.191 +// Blank window, just sort of sits there looking blank //
1.192 +//
1.193 +
1.194 +EXPORT_C TBool CheckBlankWindow(TRect aArea,TRgb aColor,const CWsScreenDevice* aScreen)
1.195 +//
1.196 +// Returns ETrue if the the given rect is all the specified color
1.197 +// EFalse if it is not
1.198 +//
1.199 + {
1.200 + TInt wid=aArea.Width();
1.201 + TAny *buf2=User::AllocL(wid*sizeof(TRgb));
1.202 + TRgb *pRgb=(TRgb *)buf2;
1.203 + Mem::FillZ(buf2,wid*sizeof(TRgb));
1.204 + //TRgb tmp(TRgb::Gray16(aColor.Gray16()));
1.205 + //Truncate color to match color conversion in EColor64K mode before comparison
1.206 + if (aScreen->DisplayMode()==EColor64K)
1.207 + aColor=TRgb::Color64K(aColor.Color64K());
1.208 + for(TInt i=0;i<wid;i++,pRgb++)
1.209 + *pRgb=aColor;
1.210 + TPtr8 tstBuf(reinterpret_cast<TUint8*>(buf2),wid*sizeof(TRgb),wid*sizeof(TRgb));
1.211 +
1.212 + TAny *buf=User::AllocL(wid*sizeof(TRgb));
1.213 + TPtr8 rgbBuf(reinterpret_cast<TUint8*>(buf),wid*sizeof(TRgb));
1.214 +
1.215 + TBool ret=ETrue;
1.216 + TPoint offset=aArea.iTl; //iWin.InquireOffset(*TheClient->iGroup->WinTreeNode());
1.217 + for(;offset.iY<aArea.iBr.iY;offset.iY++)
1.218 + {
1.219 + aScreen->GetScanLine(rgbBuf,offset,wid,EColor16MA);
1.220 + if (rgbBuf.Compare(tstBuf)!=0)
1.221 + {
1.222 + ret=EFalse;
1.223 + break;
1.224 + }
1.225 + }
1.226 + User::FreeZ(buf);
1.227 + User::FreeZ(buf2);
1.228 + return(ret);
1.229 + }
1.230 +
1.231 +EXPORT_C CBlankWindow::CBlankWindow() : CTWin()
1.232 + {
1.233 + iCol=TRgb::Gray256(128);
1.234 + }
1.235 +
1.236 +EXPORT_C CBlankWindow::CBlankWindow(TRgb aCol) : CTWin(), iCol(aCol), iRealDraw(EFalse)
1.237 + {
1.238 + }
1.239 +
1.240 +EXPORT_C void CBlankWindow::ConstructL(CTWinBase &parent)
1.241 + {
1.242 + CTWin::ConstructL(parent);
1.243 + iWin.SetBackgroundColor(iCol);
1.244 + }
1.245 +
1.246 +EXPORT_C void CBlankWindow::SetColor(TRgb aColor)
1.247 + {
1.248 + iCol=aColor;
1.249 + }
1.250 +
1.251 +EXPORT_C void CBlankWindow::RealDraw(TBool aRealDraw)
1.252 + {
1.253 + iRealDraw=aRealDraw;
1.254 + }
1.255 +
1.256 +EXPORT_C void CBlankWindow::Draw()
1.257 + {
1.258 + if (!iRealDraw)
1.259 + iGc->Clear();
1.260 + else
1.261 + {
1.262 + iGc->SetPenStyle(CGraphicsContext::ENullPen);
1.263 + iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.264 + iGc->SetBrushColor(iCol);
1.265 + iGc->DrawRect(TRect(iSize));
1.266 + }
1.267 + }
1.268 +
1.269 +EXPORT_C void CBlankWindow::DrawNow()
1.270 + {
1.271 + iWin.Invalidate();
1.272 + iWin.BeginRedraw();
1.273 + iGc->Activate(iWin);
1.274 + Draw();
1.275 + iGc->Deactivate();
1.276 + iWin.EndRedraw();
1.277 + }
1.278 +
1.279 +EXPORT_C void CBlankWindow::DrawNow(TRect& aRect)
1.280 + {
1.281 + iWin.Invalidate(aRect);
1.282 + iWin.BeginRedraw(aRect);
1.283 + iGc->Activate(iWin);
1.284 + iGc->SetClippingRect(aRect);
1.285 + Draw();
1.286 + iGc->Deactivate();
1.287 + iWin.EndRedraw();
1.288 + }
1.289 +
1.290 +EXPORT_C TBool CBlankWindow::Check(const CTClient& aClient)
1.291 +//
1.292 +// Returns ETrue if the window is Ok,
1.293 +// EFalse if it is not
1.294 +//
1.295 + {
1.296 + return CheckBlankWindow(TRect(iWin.InquireOffset(*aClient.iGroup->WinTreeNode()),Size()),TRgb::Gray16(iCol.Gray16()),aClient.iScreen);
1.297 + }