os/graphics/windowing/windowserver/test/t_integ/src/t_dsaappview.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 <eikenv.h>
    23 #include "t_dsaappview.h"
    24 #include "t_dsaappeng.h"
    25 
    26 /**
    27  *	Private constructor, does nothing	
    28  *
    29  */  
    30 CDsaAppView::CDsaAppView()
    31 	{
    32 	}
    33 	
    34 /**
    35  *	Standard 2 phase construction, constructs a View object
    36  *	@return pointer to the  CDsaAppView
    37  *	@param aRect - rectangle coordinate defining control's extent
    38  */  
    39  CDsaAppView* CDsaAppView::NewL(const TRect& aRect)
    40 	{
    41 	CDsaAppView* self = new(ELeave) CDsaAppView();
    42 	CleanupStack::PushL(self);
    43 	self->ConstructL(aRect);
    44 	CleanupStack::Pop();
    45 	return self;
    46 	}
    47 	
    48 /**
    49  *	
    50  *	Destructor
    51  */  
    52 CDsaAppView::~CDsaAppView()
    53 	{
    54 	delete iDsaText;
    55 	iDsaText = NULL;
    56 	delete iEng;
    57 	iEng = NULL;
    58 	}
    59 	
    60 /**
    61  *	constructL method
    62  *	@param aRect - rectangle coordinate defining control's extent
    63  *	
    64  */  
    65 void CDsaAppView::ConstructL(const TRect& aRect)
    66     {
    67 	CreateWindowL();
    68 	SetRect(aRect);
    69 	
    70 	// Set up our engine
    71 	iEng = CTDsaAppEng::NewL(iEikonEnv->WsSession(), 
    72                              *(CCoeEnv::Static()->ScreenDevice()), 
    73 					         Window());
    74 					           
    75 	ActivateL();
    76 	}
    77 	
    78 /**
    79  *	
    80  *	Draws the text on the screen
    81  *	
    82  */  
    83  
    84 void CDsaAppView::Draw(const TRect& /*aRect*/) const
    85 	{
    86 	RDebug::Print(_L("dsa draw"));
    87 	
    88 	if(iEng->Drawing())
    89 		{
    90         return;
    91 		}
    92 	
    93 	iEng->StartDrawing();
    94 	}