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