First public contribution.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef DISPCTRL_CLIENT_H_
17 #define DISPCTRL_CLIENT_H_
19 #include <graphics/displaycontrolbase.h>
22 * Window Server client interface for display control.
24 * All functions in MDisplayControlBase will automatically flush the client-server
25 * session buffer as part of their behavior.
27 * Setting the display configuration successfully shall cause the screen mode
28 * index to change to one of the last two entries (dependent on rotation) and that
29 * mode's size information shall be updated as necessary.
34 class MDisplayControl : public MDisplayControlBase
39 KUidDisplayControl = 0x10286499, //To 0x1028649A
40 ETypeId= KUidDisplayControl
44 * Returns whether changes in the display will trigger an EEventDisplayChanged
47 * Events will be triggered configuration changes that have taken place on
48 * the display, when a display has been connected / disconnected (if it can be
49 * detected), and when the available resolutions change.
51 * This function always causes a flush of the window server buffer.
53 * @return ETrue if display change events are enabled, EFalse otherwise
55 virtual TBool DisplayChangeEventsEnabled() const =0;
57 * Determines whether changes in the display will trigger an EEventDisplayChanged
60 * @see DisplayChangeEventsEnabled
62 * @param aEnable ETrue to enable display change events, EFalse to disable them
64 virtual void EnableDisplayChangeEvents(TBool aEnable) =0;
68 #endif /*DISPCTRL_CLIENT_H_*/