sl@0
|
1 |
// Copyright (c) 2010 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 |
// Standard window server header file
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
#ifndef WSPUBLISHANDSUBSCRIBEDATA_H
|
sl@0
|
18 |
#define WSPUBLISHANDSUBSCRIBEDATA_H
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32cmn.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
// Values for the render orientation P&S value that we publish
|
sl@0
|
23 |
// Used when the property is defined, attached to, and deleted
|
sl@0
|
24 |
const TUid KRenderOrientationCategory = {268450592}; // WServ UID3
|
sl@0
|
25 |
const TUint KRenderOrientationKey = 0x102872E5;
|
sl@0
|
26 |
|
sl@0
|
27 |
/** The orientation of rendering the application intends to use.
|
sl@0
|
28 |
|
sl@0
|
29 |
@see RWsSession::IndicateAppOrientation(TOrientation aOrientation)*/
|
sl@0
|
30 |
enum TRenderOrientation
|
sl@0
|
31 |
{
|
sl@0
|
32 |
/** Fixed default orientation */
|
sl@0
|
33 |
EDisplayOrientationNormal,
|
sl@0
|
34 |
/** 90° clockwise */
|
sl@0
|
35 |
EDisplayOrientation90CW,
|
sl@0
|
36 |
/** 180° */
|
sl@0
|
37 |
EDisplayOrientation180,
|
sl@0
|
38 |
/** 270° clockwise */
|
sl@0
|
39 |
EDisplayOrientation270CW,
|
sl@0
|
40 |
/** The orientation is from the P&S Key */
|
sl@0
|
41 |
EDisplayOrientationAuto,
|
sl@0
|
42 |
/** use the orientation specified by the next top level window(s) that does not have ignore flag set.
|
sl@0
|
43 |
E.g. system dialog on top of foreground app. */
|
sl@0
|
44 |
EDisplayOrientationIgnore
|
sl@0
|
45 |
};
|
sl@0
|
46 |
|
sl@0
|
47 |
#endif // WSPUBLISHANDSUBSCRIBEDATA_H
|