diff -r 000000000000 -r 5d03bc08d59c windowing/windowserver/nga/SERVER/wsdisplaychangeao.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/windowing/windowserver/nga/SERVER/wsdisplaychangeao.h Tue Feb 02 01:47:50 2010 +0200 @@ -0,0 +1,80 @@ +/** +* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + +/** + @file +*/ + +#ifndef WS_DISP_CHANGE_NOTIFY +#define WS_DISP_CHANGE_NOTIFY + + +#include +#include +#include +#include "EVENT.H" + +class CWsDisplayChangeNotifier : public CActive + { + public: + static CWsDisplayChangeNotifier* NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner); + void IssueNotificationRequest(); + void CancelNotificationRequest(); + ~CWsDisplayChangeNotifier(); + protected: + void ConstructL(); + virtual void RunL(); + virtual void DoCancel(); + private: + CWsDisplayChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner); + TBool IsResListEqual(RArray& aResListA, RArray& aResListB); + + TRequestStatus* iRsStatus; + MWsDisplayControl* iNextLevelInterface; + CScreen *iOwner; + CEventQueueRetry *iRetry; + + RArray iLastResList; + TInt iLastErr; + }; + +class CWsConfigChangeNotifier : public CActive + { + public: + static CWsConfigChangeNotifier* NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner); + void IssueNotificationRequest(); + void CancelNotificationRequest(); + ~CWsConfigChangeNotifier(); + protected: + void ConstructL(); + virtual void RunL(); + virtual void DoCancel(); + private: + CWsConfigChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner); + TBool IsConfigEqual(TDisplayConfiguration& aConfigA, TDisplayConfiguration& aConfigB); + + TRequestStatus* iRsStatus; + MWsDisplayControl* iNextLevelInterface; + CScreen *iOwner; + CEventQueueRetry *iRetry; + + TDisplayConfiguration iLastConfig; + }; + +#endif