26
|
1 |
/*
|
|
2 |
* Copyright (c) 2004, 2007 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
// Avkon Private Resource Header
|
|
20 |
|
|
21 |
#ifndef AKNPRIV_HRH
|
|
22 |
#define AKNPRIV_HRH
|
|
23 |
|
|
24 |
#define EAknPrivParameterNotSet -1
|
|
25 |
|
|
26 |
enum TAknPrivScreenRotation // maps to CFbsBitGc::TGraphicsOrientation
|
|
27 |
{
|
|
28 |
EAknPrivScreenRotationNormal,
|
|
29 |
EAknPrivScreenRotationRotated90,
|
|
30 |
EAknPrivScreenRotationRotated180,
|
|
31 |
EAknPrivScreenRotationRotated270
|
|
32 |
};
|
|
33 |
|
|
34 |
enum TAknPrivSoftkeyLocation
|
|
35 |
{
|
|
36 |
EAknPrivSoftkeyLocationRight,
|
|
37 |
EAknPrivSoftkeyLocationLeft,
|
|
38 |
EAknPrivSoftkeyLocationBottom
|
|
39 |
};
|
|
40 |
|
|
41 |
/**
|
|
42 |
* Flags usable with AKNPRIV_TOUCHPANE resource structure.
|
|
43 |
*/
|
|
44 |
enum TAknPrivTouchPaneResourceFlags
|
|
45 |
{
|
|
46 |
/** Flag for specifying touch pane to be constructed by default for every
|
|
47 |
GUI application. Applications can override this behaviour by setting
|
|
48 |
the TAknTouchpaneResourceFlags::EAknNoTouchPane flag in their touch
|
|
49 |
pane resources. */
|
|
50 |
EAknConstructTouchPaneByDefault = 0x01,
|
|
51 |
/** Flag for disabling application specific customizations to the touch
|
|
52 |
pane. When this flag is set, the customizations defined in application's
|
|
53 |
touch pane resources are ignored. */
|
|
54 |
EAknDisabeTouchPaneCustomizations = 0x02
|
|
55 |
};
|
|
56 |
|
|
57 |
#define KAknToolbarDefault 0x80000000
|
|
58 |
|
|
59 |
#define KAknMessageFocusLost 0x20012434
|
|
60 |
|
|
61 |
#define KAknToolbarSetVisible 0x20012435
|
|
62 |
#define KAknToolbarSetHidden 0x20012436
|
|
63 |
#define KAknToolbarSetHiddenAndDrawBackground 0x20012437
|
|
64 |
|
|
65 |
// Message used to inform split input status
|
|
66 |
#define KAknSplitInputEnabled 0x2001E2C0
|
|
67 |
#define KAknSplitInputDisabled 0x2001E2C1
|
|
68 |
|
|
69 |
|
|
70 |
#endif
|