os/graphics/windowing/windowserver/inc/wspublishandsubscribedata.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/inc/wspublishandsubscribedata.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,47 @@
     1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Standard window server header file
    1.18 +// 
    1.19 +//
    1.20 +#ifndef WSPUBLISHANDSUBSCRIBEDATA_H
    1.21 +#define WSPUBLISHANDSUBSCRIBEDATA_H
    1.22 +
    1.23 +#include <e32cmn.h>
    1.24 +
    1.25 +// Values for the render orientation P&S value that we publish
    1.26 +// Used when the property is defined, attached to, and deleted
    1.27 +const TUid  KRenderOrientationCategory  = {268450592};  // WServ UID3
    1.28 +const TUint KRenderOrientationKey       = 0x102872E5;
    1.29 +
    1.30 +/** The orientation of rendering the application intends to use.
    1.31 +
    1.32 +@see RWsSession::IndicateAppOrientation(TOrientation aOrientation)*/
    1.33 +enum TRenderOrientation
    1.34 +    {
    1.35 +    /** Fixed default orientation */
    1.36 +    EDisplayOrientationNormal,
    1.37 +    /** 90° clockwise */
    1.38 +    EDisplayOrientation90CW,
    1.39 +    /** 180° */
    1.40 +    EDisplayOrientation180,
    1.41 +    /** 270° clockwise */
    1.42 +    EDisplayOrientation270CW,
    1.43 +    /** The orientation is from the P&S Key */
    1.44 +    EDisplayOrientationAuto,
    1.45 +    /** use the orientation specified by the next top level window(s) that does not have ignore flag set. 
    1.46 +    E.g. system dialog on top of foreground app. */
    1.47 +    EDisplayOrientationIgnore
    1.48 +    };
    1.49 +
    1.50 +#endif // WSPUBLISHANDSUBSCRIBEDATA_H