Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 1997-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include <guldef.h> // only requried for limited source compatability with releases prior to 250
22 const TInt KCoeCustomColorsArrayValue=0x100057C2;
23 const TInt KCoeColorGray4=0x19bd6002;
24 const TInt KCoeColorColor16=0x19bd6003;
25 const TInt ECoeResourceSignatureValue=4;
27 /** Event handling flags.
29 These should be returned by CCoeControl::OfferKeyEventL() to indicate whether
30 or not a key event was processed by the control.
36 /** The key event was not handled. */
38 /** The key event was handled. */
42 /** Control redraw flags.
44 Passed to CCoeControl::SetFocus() to indicate the requirements for control
51 /** Redraw of the control is not required immediately. */
53 /** Redraw control immediately. */
57 /** Window priority values.
59 These are passed in the aOrdinalPriority argument to RWindowTreeNode::SetOrdinalPosition().
66 ECoeWinPriorityNeverAtFront =-1000,
68 ECoeWinPriorityLow =-750,
70 ECoeWinPriorityNormal =0,
72 ECoeWinPriorityMedium =500,
74 ECoeWinPriorityHigh =750,
76 ECoeWinPriorityFep =900,
78 ECoeWinPriorityAlwaysAtFront =1000
81 /** The message UID sent when a colour scheme change event occurs.
83 @internalTechnology */
84 const TInt KUidValueCoeColorSchemeChangeEvent =0x100056C4;
85 const TInt KUidValueCoeZoomChangeEvent =0x100057C3;
86 const TInt KUidValueCoeFontChangeEvent =0x100057C4;
88 /** @internalTechnology */
89 const TUint KUidFepFrameworkRepository=0x10272618;
91 /** @internalTechnology */
92 enum // key-masks and keys for the "KUidFepFrameworkRepository" repository
94 ERepositoryKeyMask_DefaultSetting =0x00001000,
95 ERepositoryKeyMask_DynamicSetting =0x00002000,
97 ERepositoryKeyMask_FepId =0x00000001,
98 ERepositoryKeyMask_OnState =0x00000002,
99 ERepositoryKeyMask_OnKeyData =0x00000004,
100 ERepositoryKeyMask_OffKeyData =0x00000008,
102 ERepositoryKey_DefaultFepId =ERepositoryKeyMask_DefaultSetting|ERepositoryKeyMask_FepId,
103 ERepositoryKey_DefaultOnState =ERepositoryKeyMask_DefaultSetting|ERepositoryKeyMask_OnState,
104 ERepositoryKey_DefaultOnKeyData =ERepositoryKeyMask_DefaultSetting|ERepositoryKeyMask_OnKeyData,
105 ERepositoryKey_DefaultOffKeyData =ERepositoryKeyMask_DefaultSetting|ERepositoryKeyMask_OffKeyData,
107 ERepositoryKey_DynamicFepId =ERepositoryKeyMask_DynamicSetting|ERepositoryKeyMask_FepId,
108 ERepositoryKey_DynamicOnState =ERepositoryKeyMask_DynamicSetting|ERepositoryKeyMask_OnState,
109 ERepositoryKey_DynamicOnKeyData =ERepositoryKeyMask_DynamicSetting|ERepositoryKeyMask_OnKeyData,
110 ERepositoryKey_DynamicOffKeyData =ERepositoryKeyMask_DynamicSetting|ERepositoryKeyMask_OffKeyData
113 /** @internalTechnology */
115 #define __DEBUG_CHECK_HEAP_INTEGRITY User::Heap().Check()
117 #define __DEBUG_CHECK_HEAP_INTEGRITY
120 /** Control key modifier.
122 Key codes get changed when the Ctrl key modifier is pressed at the same time as the key .
123 The CTRL macro is used to shift the key character appropriately.
125 Note: this is not an inline function since that can't be used as the case of a switch
130 #define CTRL(x) ((x)-'a'+1)
132 /** Constant that represents all standard keyboard modifier keys.
136 #define EAllStdModifiers (EModifierFunc|EModifierCtrl|EModifierShift)
138 #endif // __COEDEF_H__