os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoapppopupwindow.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include <e32debug.h>
    23 #include <w32std.h>
    24 #include <iniparser.h>
    25 
    26 #include "t_pseudoapppopupwindow.h"
    27 #include "t_pseudoapputils.h"
    28 #include "t_winutils.h"			//CTestBitmap
    29 
    30 GLDEF_C TInt E32Main()
    31 	{
    32 	RDebug::Print(_L("T_PseudoAppPopupWindow::E32Main - entry"));
    33 
    34 //	__UHEAP_MARK; // mark heap state
    35 
    36 	CTrapCleanup* TheTrapCleanup = CTrapCleanup::New();
    37 
    38 	TRAPD(err, DisplayPopupWindowL());
    39 	if (err)
    40 		{
    41 		User::Panic(KTPopupWindowAppPanic,err);
    42 		}
    43 
    44     delete TheTrapCleanup;
    45 
    46 //	__UHEAP_MARKEND; // check no memory leak
    47 
    48 	User::After(20000000);
    49 	RDebug::Print(_L("T_PseudoAppPopupWindow::E32Main - exit"));
    50 	return KErrNone;
    51 	}
    52 
    53 LOCAL_C void DisplayPopupWindowL()
    54 	{
    55 	TPtrC multiBitmapPopupFile;
    56 	TSize windowSize;
    57 	TPoint windowPosition;
    58 	TInt transparency;
    59 	TInt screenNo;
    60 	TDisplayMode aMode;
    61 
    62 	//Create CIniData class for reading in values form ini files
    63 	CIniData* utils = CIniData::NewL(KWServPseudoAppConfigFile);
    64 	CleanupStack::PushL(utils);
    65 
    66 	ReadPopupConfig(windowSize, windowPosition, multiBitmapPopupFile, transparency, screenNo, aMode, utils);
    67 
    68 	RDebug::Print(_L("Create Window server session"));
    69 	RWsSession session;
    70 	User::LeaveIfError(session.Connect());
    71 
    72 	RDebug::Print(_L("Create CWsScreenDevice\n"));
    73 	CWsScreenDevice screenDevice(session);
    74 	User::LeaveIfError(screenDevice.Construct(screenNo));
    75 
    76 	RDebug::Print(_L("Create RWindowGroup\n"));
    77 	RWindowGroup group(session);
    78 	User::LeaveIfError(group.Construct(8970+screenNo,ETrue));
    79 
    80 	RDebug::Print(_L("Create Window\n"));
    81 	RWindow window(session);
    82 	User::LeaveIfError(window.Construct((RWindowTreeNode)group,(TUint32)&window));
    83 
    84 	DeterminePixelValues(windowSize, windowPosition, screenDevice);
    85 
    86 	window.SetExtent(windowPosition, windowSize);
    87 
    88 	TInt ret = window.SetRequiredDisplayMode(aMode);
    89 
    90 	RDebug::Print(_L("Window display mode set to %d\n"), ret);
    91 
    92 	RDebug::Print(_L("Create CWindowGc\n"));
    93 	CWindowGc windowGc(&screenDevice);
    94 	User::LeaveIfError(windowGc.Construct());
    95 
    96 	//Make the window transparent
    97 	CTestBitmap* bitmap = CTestBitmap::NewL(windowSize, EGray256);
    98 	CleanupStack::PushL(bitmap);
    99 
   100 	bitmap->Gc().SetBrushColor(TRgb::Gray256(128));
   101 	bitmap->Gc().SetBrushStyle(CGraphicsContext::ESolidBrush);
   102 	bitmap->Gc().SetPenStyle(CGraphicsContext::ENullPen);
   103 	bitmap->Gc().DrawRect(windowSize);
   104 
   105 	window.SetTransparencyBitmap(bitmap->Bitmap());
   106 	window.SetVisible(ETrue);
   107 	window.Activate();
   108 
   109 	windowGc.Activate(window);
   110 	window.Invalidate();
   111 	window.BeginRedraw();
   112 
   113 	//Load popup bitmap
   114 	CTestBitmap* bitmapSource = CTestBitmap::NewL(windowSize, aMode);
   115 	CleanupStack::PushL(bitmapSource);
   116 
   117 	User::LeaveIfError(bitmapSource->Bitmap().Load(multiBitmapPopupFile, 0));
   118 
   119 	if(transparency)
   120 		{
   121 		CTestBitmap* bitmapSourceAlpha;
   122 		CTestBitmap* bitmapDest;
   123 		CTestBitmap* bitmapDestAlpha;
   124 
   125 		bitmapSourceAlpha = CTestBitmap::NewL(windowSize, EGray256);
   126 		CleanupStack::PushL(bitmapSourceAlpha);
   127 
   128 		User::LeaveIfError(bitmapSourceAlpha->Bitmap().Load(multiBitmapPopupFile, 1));
   129 
   130 		bitmapDest = CTestBitmap::NewL(windowSize, aMode);
   131 		CleanupStack::PushL(bitmapDest);
   132 
   133 		bitmapDest->Bitmap().SetSizeInTwips(bitmapSource->Bitmap().SizeInTwips());
   134 		bitmapDest->Gc().DrawBitmap(TRect(TPoint(0,0), windowSize), &(bitmapSource->Bitmap()));
   135 
   136 		bitmapDestAlpha = CTestBitmap::NewL(windowSize, EGray256);
   137 		CleanupStack::PushL(bitmapDestAlpha);
   138 
   139 		bitmapDestAlpha->Bitmap().SetSizeInTwips(bitmapSourceAlpha->Bitmap().SizeInTwips());
   140 		bitmapDestAlpha->Gc().DrawBitmap(TRect(TPoint(0,0), windowSize), &(bitmapSourceAlpha->Bitmap()));
   141 
   142 		TInt ret = windowGc.AlphaBlendBitmaps(TPoint(0,0), &(bitmapDest->Bitmap()), TRect(TPoint(0,0), windowSize), &(bitmapDestAlpha->Bitmap()), TPoint(0,0));
   143 
   144 		if(ret != KErrNone)
   145 			{
   146 			RDebug::Print(_L("Transparent popup window drawing error\n"));
   147 			}
   148 		else
   149 			{
   150 			RDebug::Print(_L("Transparent popup window drawn correctly\n"));
   151 			}
   152 
   153 		CleanupStack::PopAndDestroy(3); //bitmapSourceAlpha, bitmapDest, bitmapDestAlpha
   154 		}
   155 	else
   156 		{
   157 		//Make window opaque
   158 		window.SetTransparencyFactor(TRgb(0xFFFFFFFF));
   159 		windowGc.DrawBitmap(TRect(TPoint(0,0), windowSize), &(bitmapSource->Bitmap()));
   160 		}
   161 
   162 	window.EndRedraw();
   163 	session.Flush();
   164 	windowGc.Deactivate();
   165 	User::After(100000);
   166 
   167 	CleanupStack::PopAndDestroy(3);	//utils, bitmap, bitmapSource
   168 	}
   169 
   170 LOCAL_C void ReadPopupConfig(TSize& aWindowSize, TPoint& aWindowPosition, TPtrC& aBitmapFile, TInt& aTransparency,
   171                              TInt& aScreenNo, TDisplayMode& aMode, CIniData* aUtils)
   172 	{
   173 	TInt maxNumberOfScreens;
   174 	TPtrC windowSize;
   175 	TPtrC windowPosition;
   176 	TInt popupOccurances;
   177 
   178 	TBuf<KMaxUiBitmapNameLength>	tempStore;
   179 	TInt i;
   180 
   181 	READ_INI1(max_number_of_screens, maxNumberOfScreens, aUtils);
   182 
   183 	for(i=0; i<maxNumberOfScreens; i++)
   184 		{
   185 		TBuf<KMaxUiBitmapNameLength>	tempStore;
   186 
   187 		tempStore.Format(KScreenWindowPopup, i);
   188 		READ_INI1A(tempStore, occurances, popupOccurances, aUtils);
   189 
   190 		tempStore.Format(KScreenWindowPopup, i);
   191 
   192 		if(popupOccurances)
   193 			{
   194 			RDebug::Print(_L("Popup window enabled for screen %d"), i);
   195 			aScreenNo = i;
   196 			TInt screenMode;
   197 
   198 			READ_INI1A(tempStore, multi_bitmap_popup_file, aBitmapFile, aUtils);
   199 
   200 			READ_INI1A(tempStore, window_size, windowSize, aUtils);
   201 			TImportScreenConfig::ExtractSize(windowSize, aWindowSize);
   202 
   203 			READ_INI1A(tempStore, window_position, windowPosition, aUtils);
   204 			TImportScreenConfig::ExtractPoint(windowPosition, aWindowPosition);
   205 
   206 			READ_INI2A(tempStore, transparency,   True, False, aTransparency,  ETrue, EFalse, aUtils);
   207 			READ_INI2(screen_mode, EColor16MA, EColor64K, screenMode, EColor16MA, EColor64K, aUtils);
   208 
   209 			aMode = static_cast<TDisplayMode>(screenMode);
   210 
   211 			//The popup is enabled for one screen per instance of the exe
   212 			return;
   213 			}
   214 		else
   215 			{
   216 			RDebug::Print(_L("No popup window enabled for screen %d"), i);
   217 			}
   218 		}
   219 	}
   220 
   221 
   222 LOCAL_C void DeterminePixelValues(TSize& aWindowSize, TPoint& aWindowPosition, 	CWsScreenDevice& aScreenDevice)
   223 	{
   224 	TSize screenSize = aScreenDevice.SizeInPixels();
   225 
   226 	//Convert surface size percentages to pixel sizes
   227 	if(aWindowSize.iWidth <= 0)
   228 		{
   229 		RDebug::Print(_L("popup_width is zero or less, quitting\n"));
   230 		User::Exit(0);
   231 		}
   232 	else
   233 		{
   234 		aWindowSize.iWidth = (aWindowSize.iWidth * screenSize.iWidth)/100;
   235 		}
   236 
   237 	if(aWindowSize.iHeight <= 0)
   238 		{
   239 		RDebug::Print(_L("popup_height is zero or less, quitting\n"));
   240 		User::Exit(0);
   241 		}
   242 	else
   243 		{
   244 		aWindowSize.iHeight = (aWindowSize.iHeight * screenSize.iHeight)/100;
   245 		}
   246 
   247 	//Convert surface position percentages to pixel sizes
   248 	aWindowPosition.iX = (aWindowPosition.iX * screenSize.iWidth)/100;
   249 	aWindowPosition.iY = (aWindowPosition.iY * screenSize.iHeight)/100;
   250 	}