sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This material, including documentation and any related
|
sl@0
|
4 |
// computer programs, is protected by copyright controlled by
|
sl@0
|
5 |
// Nokia. All rights are reserved. Copying, including
|
sl@0
|
6 |
// reproducing, storing, adapting or translating, any
|
sl@0
|
7 |
// or all of this material requires the prior written consent of
|
sl@0
|
8 |
// Nokia. This material also contains confidential
|
sl@0
|
9 |
// information which may not be disclosed to others without the
|
sl@0
|
10 |
// prior written consent of Nokia.
|
sl@0
|
11 |
//
|
sl@0
|
12 |
// Description:
|
sl@0
|
13 |
// Render Orientation Tracking and Publication
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef renderorientationtracker_h
|
sl@0
|
17 |
#define renderorientationtracker_h
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#include <e32property.h>
|
sl@0
|
22 |
#include <w32std.h>
|
sl@0
|
23 |
#include <wspublishandsubscribedata.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
// Values for the device orientation that we receive via P&S from the Theme Server
|
sl@0
|
26 |
// Todo FIX THIS Category UID!!!
|
sl@0
|
27 |
const TUid KThemeOrientationCategory = {0x20022E82}; // == KHbPsHardwareCoarseOrientationCategoryUid
|
sl@0
|
28 |
const TUint KThemeOrientationKey = 0x4F726965; // == KHbPsHardwareCoarseOrientationKey
|
sl@0
|
29 |
|
sl@0
|
30 |
typedef TRenderOrientation TRenderOrientationTrackingType;
|
sl@0
|
31 |
|
sl@0
|
32 |
class CWsWindowGroup;
|
sl@0
|
33 |
|
sl@0
|
34 |
class CWsRenderOrienationTracker : public CActive
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
static CWsRenderOrienationTracker* NewL();
|
sl@0
|
38 |
~CWsRenderOrienationTracker();
|
sl@0
|
39 |
|
sl@0
|
40 |
void CheckRenderOrientation();
|
sl@0
|
41 |
|
sl@0
|
42 |
private:
|
sl@0
|
43 |
CWsRenderOrienationTracker();
|
sl@0
|
44 |
void ConstructL();
|
sl@0
|
45 |
|
sl@0
|
46 |
void RequestDeviceOrientationNotification();
|
sl@0
|
47 |
void CancelDeviceOrientationNotification();
|
sl@0
|
48 |
|
sl@0
|
49 |
// CActive
|
sl@0
|
50 |
void RunL();
|
sl@0
|
51 |
void DoCancel();
|
sl@0
|
52 |
|
sl@0
|
53 |
TInt DoOrientationTracking();
|
sl@0
|
54 |
TInt GetThemeOrientation(TRenderOrientation& aThemeOrientation);
|
sl@0
|
55 |
TInt PublishOrientation(const TRenderOrientation aRenderOrientation);
|
sl@0
|
56 |
TInt DoPublishOrientation(const TRenderOrientation aRenderOrientation);
|
sl@0
|
57 |
TInt GetIndicatedOrientation(TRenderOrientationTrackingType& aOrientationTrackingType);
|
sl@0
|
58 |
TInt CheckWindowGroupOrientation(const CWsWindowGroup& aWinGroup, TRenderOrientationTrackingType& aOrientationTrackingType);
|
sl@0
|
59 |
TBool UseableGroupWindow(const CWsWindowGroup& aWinGroup) const;
|
sl@0
|
60 |
TInt GetFocusWindowOrientation(TRenderOrientationTrackingType& aOrientationTrackingType);
|
sl@0
|
61 |
TInt FindOrientationFromWindowTree(TRenderOrientationTrackingType& aOrientationTrackingType);
|
sl@0
|
62 |
void SetHALOrientation(const TRenderOrientation aRenderOrientation);
|
sl@0
|
63 |
|
sl@0
|
64 |
private:
|
sl@0
|
65 |
TRenderOrientationTrackingType iRenderOrientationTrackingType;
|
sl@0
|
66 |
TRenderOrientation iPublishedRenderOrientation;
|
sl@0
|
67 |
RProperty iThemeOrientationProperty;
|
sl@0
|
68 |
RProperty iRenderOrientationPublisher;
|
sl@0
|
69 |
};
|
sl@0
|
70 |
|
sl@0
|
71 |
#endif
|