Update contrib.
2 * Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #ifndef WS_DISP_CHANGE_NOTIFY
25 #define WS_DISP_CHANGE_NOTIFY
28 #include <graphics/wsdisplaycontrol.h>
33 class CWsDisplayChangeNotifier : public CActive
36 static CWsDisplayChangeNotifier* NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
37 void IssueNotificationRequest();
38 void CancelNotificationRequest();
39 ~CWsDisplayChangeNotifier();
43 virtual void DoCancel();
45 CWsDisplayChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
46 TBool IsResListEqual(RArray<MWsDisplayControl::TResolution>& aResListA, RArray<MWsDisplayControl::TResolution>& aResListB);
48 TRequestStatus* iRsStatus;
49 MWsDisplayControl* iNextLevelInterface;
51 CEventQueueRetry *iRetry;
53 RArray<MWsDisplayControl::TResolution> iLastResList;
57 class CWsConfigChangeNotifier : public CActive
60 static CWsConfigChangeNotifier* NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
61 void IssueNotificationRequest();
62 void CancelNotificationRequest();
63 void UpdateLastSetConfiguration(TDisplayConfiguration& aNewConfig);
64 ~CWsConfigChangeNotifier();
68 virtual void DoCancel();
70 CWsConfigChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner);
71 TBool IsConfigEqual(TDisplayConfiguration& aConfigA, TDisplayConfiguration& aConfigB);
73 TRequestStatus* iRsStatus;
74 MWsDisplayControl* iNextLevelInterface;
76 CEventQueueRetry *iRetry;
78 TDisplayConfiguration iLastConfig;
79 // last set screen device SetConfiguration call
80 TDisplayConfiguration iLastSetConfig;