os/graphics/windowing/windowserver/nga/SERVER/wsdisplaychangeao.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /**
     2 * Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 /**
    21  @file
    22 */
    23 
    24 #ifndef WS_DISP_CHANGE_NOTIFY
    25 #define WS_DISP_CHANGE_NOTIFY
    26 
    27 
    28 #include <graphics/wsdisplaycontrol.h>
    29 #include <e32base.h>
    30 #include <e32cmn.h>
    31 #include "EVENT.H"
    32 
    33 class CWsDisplayChangeNotifier : public CActive
    34 	{
    35 	public:
    36 		static CWsDisplayChangeNotifier* NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
    37 		void IssueNotificationRequest();
    38 		void CancelNotificationRequest();
    39 		~CWsDisplayChangeNotifier();
    40 	protected:
    41 		void ConstructL();
    42 		virtual void RunL();
    43 		virtual void DoCancel();
    44 	private:
    45 		CWsDisplayChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
    46 		TBool IsResListEqual(RArray<MWsDisplayControl::TResolution>& aResListA, RArray<MWsDisplayControl::TResolution>& aResListB);
    47 		
    48 		TRequestStatus* iRsStatus;
    49 		MWsDisplayControl* iNextLevelInterface;
    50 		CScreen *iOwner;
    51 		CEventQueueRetry *iRetry;
    52 				
    53 		RArray<MWsDisplayControl::TResolution> iLastResList;
    54 		TInt iLastErr;
    55 	};
    56 
    57 class CWsConfigChangeNotifier : public CActive
    58 	{
    59 	public:
    60 		static CWsConfigChangeNotifier* NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
    61 		void IssueNotificationRequest();
    62 		void CancelNotificationRequest();
    63 		void UpdateLastSetConfiguration(TDisplayConfiguration& aNewConfig);
    64 		~CWsConfigChangeNotifier();
    65 	protected:
    66 		void ConstructL();
    67 		virtual void RunL();
    68 		virtual void DoCancel();
    69 	private:
    70 		CWsConfigChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
    71 		TBool IsConfigEqual(TDisplayConfiguration& aConfigA, TDisplayConfiguration& aConfigB);
    72 		
    73 		TRequestStatus* iRsStatus;
    74 		MWsDisplayControl* iNextLevelInterface;
    75 		CScreen *iOwner;
    76 		CEventQueueRetry *iRetry;
    77 		
    78 		TDisplayConfiguration iLastConfig;
    79 		// last set screen device SetConfiguration call
    80 		TDisplayConfiguration iLastSetConfig;
    81 	};
    82 
    83 #endif