sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Interface for Render Stage Display Resolution
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef WSDISPLAYCONTROL_H_
|
sl@0
|
19 |
#define WSDISPLAYCONTROL_H_
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
@file
|
sl@0
|
23 |
@publishedpartner
|
sl@0
|
24 |
@released
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <graphics/displaycontrolbase.h>
|
sl@0
|
28 |
#include <graphics/wsgraphicdrawerinterface.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
class MWsDisplayControl: public MWsObjectProvider,public MDisplayControlBase
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
enum
|
sl@0
|
34 |
{
|
sl@0
|
35 |
KUidWsDisplayControl = 0x10286497, //To 0x1028649A
|
sl@0
|
36 |
ETypeId= KUidWsDisplayControl,
|
sl@0
|
37 |
EWsObjectInterfaceId= KUidWsDisplayControl
|
sl@0
|
38 |
};
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* Asynchronous request to complete aStatus when a change of display is detected.
|
sl@0
|
42 |
*
|
sl@0
|
43 |
* The request is completed when the connectedness of the display changes, or when
|
sl@0
|
44 |
* the set of available resolutions changes.
|
sl@0
|
45 |
*
|
sl@0
|
46 |
* @param aStatus Asynchronous request status.
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
virtual void NotifyOnDisplayChange(TRequestStatus& aStatus)=0;
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
* Cancels a pending request to notify on display change.
|
sl@0
|
51 |
*
|
sl@0
|
52 |
* If there is a pending notification request, the status value will be set to
|
sl@0
|
53 |
* KErrCancelled and it will be completed. If there is no pending request for
|
sl@0
|
54 |
* notification, the call will simply return.
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
virtual void NotifyOnDisplayChangeCancel()=0;
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
* Asynchronous request to complete aStatus when a configuration change occurs.
|
sl@0
|
59 |
*
|
sl@0
|
60 |
* The request is completed when a new configuration has been set, either
|
sl@0
|
61 |
* explicitly or by a render stage. Earlier render stages and the Window Server
|
sl@0
|
62 |
* can use this to update their state.
|
sl@0
|
63 |
*
|
sl@0
|
64 |
* @param aStatus Asynchronous request status.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
virtual void NotifyOnConfigChange(TRequestStatus& aStatus)=0;
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
* Cancels a pending request to notify on configuration change.
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* If there is a pending notification request, the status value will be set to
|
sl@0
|
71 |
* KErrCancelled and it will be completed. If there is no pending request for
|
sl@0
|
72 |
* notification, the call will simply return.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
virtual void NotifyOnConfigChangeCancel()=0;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
#endif /*WSDISPLAYCONTROL_H_*/
|