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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef DISPCTRL_CLIENT_H_
|
sl@0
|
17 |
#define DISPCTRL_CLIENT_H_
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <graphics/displaycontrolbase.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
* Window Server client interface for display control.
|
sl@0
|
23 |
*
|
sl@0
|
24 |
* All functions in MDisplayControlBase will automatically flush the client-server
|
sl@0
|
25 |
* session buffer as part of their behavior.
|
sl@0
|
26 |
*
|
sl@0
|
27 |
* Setting the display configuration successfully shall cause the screen mode
|
sl@0
|
28 |
* index to change to one of the last two entries (dependent on rotation) and that
|
sl@0
|
29 |
* mode's size information shall be updated as necessary.
|
sl@0
|
30 |
*
|
sl@0
|
31 |
* @publishedPartner
|
sl@0
|
32 |
* @prototype
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class MDisplayControl : public MDisplayControlBase
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
enum
|
sl@0
|
38 |
{
|
sl@0
|
39 |
KUidDisplayControl = 0x10286499, //To 0x1028649A
|
sl@0
|
40 |
ETypeId= KUidDisplayControl
|
sl@0
|
41 |
};
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
* Returns whether changes in the display will trigger an EEventDisplayChanged
|
sl@0
|
45 |
* event to be issued.
|
sl@0
|
46 |
*
|
sl@0
|
47 |
* Events will be triggered configuration changes that have taken place on
|
sl@0
|
48 |
* the display, when a display has been connected / disconnected (if it can be
|
sl@0
|
49 |
* detected), and when the available resolutions change.
|
sl@0
|
50 |
*
|
sl@0
|
51 |
* This function always causes a flush of the window server buffer.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* @return ETrue if display change events are enabled, EFalse otherwise
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
virtual TBool DisplayChangeEventsEnabled() const =0;
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
* Determines whether changes in the display will trigger an EEventDisplayChanged
|
sl@0
|
58 |
* event to be issued.
|
sl@0
|
59 |
*
|
sl@0
|
60 |
* @see DisplayChangeEventsEnabled
|
sl@0
|
61 |
*
|
sl@0
|
62 |
* @param aEnable ETrue to enable display change events, EFalse to disable them
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
virtual void EnableDisplayChangeEvents(TBool aEnable) =0;
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
#endif /*DISPCTRL_CLIENT_H_*/
|