|
1 /* |
|
2 * Copyright (c) 2005-2006 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 the License "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: describes system information notifiers. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __ENTITYKEYS_H__ |
|
20 #define __ENTITYKEYS_H__ |
|
21 |
|
22 namespace SysInfo |
|
23 { |
|
24 _LIT(KNetwork, "Network"); |
|
25 _LIT(KBattery, "Battery"); |
|
26 _LIT(KGeneral, "General"); |
|
27 _LIT(KConnectivity,"Connectivity"); |
|
28 _LIT(KFeatures, "Features"); |
|
29 _LIT(KDisplay, "Display"); |
|
30 _LIT(KMemory, "Memory"); |
|
31 _LIT(KDevice, "Device"); |
|
32 |
|
33 |
|
34 _LIT(KSignalStrength, "SignalStrength"); |
|
35 _LIT(KRegistrationStatus,"RegistrationStatus"); |
|
36 _LIT(KNetworkMode, "NetworkMode"); |
|
37 _LIT(KHomeNetwork, "HomeNetwork"); |
|
38 _LIT(KCurrentNetwork, "CurrentNetwork"); |
|
39 _LIT(KLocationArea, "LocationArea"); |
|
40 _LIT(KCellID, "CellID"); |
|
41 |
|
42 _LIT(KChargingStatus, "ChargingStatus"); |
|
43 _LIT(KBatteryStrength, "BatteryStrength"); |
|
44 |
|
45 _LIT(KAccessoryStatus, "AccessoryStatus"); |
|
46 _LIT(KConnectedAccessories, "ConnectedAccessories"); |
|
47 _LIT(KInputLanguage, "InputLanguage"); |
|
48 _LIT(KSupportedLanguages, "SupportedLanguages"); |
|
49 _LIT(KPridictiveText, "PredictiveText"); |
|
50 _LIT(KVibraActive, "VibraActive"); |
|
51 _LIT(KAvailableUSBModes, "AvailableUSBModes"); |
|
52 _LIT(KActiveUSBMode, "ActiveUSBMode"); |
|
53 _LIT(KFlipStatus, "FlipStatus"); |
|
54 _LIT(KGripStatus, "GripStatus"); |
|
55 _LIT(KNumberOfSoftKeys, "NumberOfSoftKeys"); |
|
56 |
|
57 |
|
58 _LIT(KBlueTooth, "BlueTooth"); |
|
59 _LIT(KInfraRed, "InfraRed"); |
|
60 _LIT(KActiveConnections,"ActiveConnections"); |
|
61 _LIT(KConnectionStatus, "ConnectionStatus"); |
|
62 _LIT(KWLanMacAddress, "WLanMacAddress"); |
|
63 |
|
64 |
|
65 _LIT(KCamera, "Camera"); |
|
66 _LIT(KMemoryCard, "MemoryCard"); |
|
67 _LIT(KFMRadio, "FMRadio"); |
|
68 _LIT(KQwerty, "Qwerty"); |
|
69 _LIT(KWLan, "WLan"); |
|
70 _LIT(KUsb, "Usb"); |
|
71 _LIT(KPen, "Pen"); |
|
72 _LIT(KLED, "LED"); |
|
73 _LIT(KCoverUI, "CoverUI"); |
|
74 _LIT(KSideVolumeKeys, "SideVolumeKeys"); |
|
75 _LIT(KVibra, "Vibra"); |
|
76 |
|
77 |
|
78 _LIT(KBrightness, "Brightness"); |
|
79 _LIT(KPowerSaverTimeOut,"PowerSaverTimeOut"); |
|
80 _LIT(KScreenSaverTimeOut,"ScreenSaverTimeOut"); |
|
81 _LIT(KUserInactivity, "UserInactivity"); |
|
82 _LIT(KAutoLockTime, "AutoLockTime"); |
|
83 _LIT(KAutoLockStatus, "AutoLockStatus"); |
|
84 _LIT(KKeyGaurdTime, "KeyGuardTime"); |
|
85 _LIT(KWallpaper, "Wallpaper"); |
|
86 _LIT(KLightTimeOut, "LightTimeOut"); |
|
87 _LIT(KDisplayResolution,"DisplayResolution"); |
|
88 _LIT(KDisplayOrientation,"DisplayOrientation"); |
|
89 |
|
90 _LIT(KListDrives, "ListDrives"); |
|
91 _LIT(KDriveInfo, "DriveInfo"); |
|
92 _LIT(KCriticalMemory, "CriticalMemory"); |
|
93 |
|
94 _LIT(KFirmwareVersion, "FirmwareVersion"); |
|
95 _LIT(KPlatformVersion, "PlatformVersion"); |
|
96 _LIT(KSymbianOsVersion, "OsVersion"); |
|
97 _LIT(KProductType, "ProductType"); |
|
98 _LIT(KManufacturer, "Manufacturer"); |
|
99 _LIT(KMachineID, "MachineID"); |
|
100 _LIT(KPhoneModel, "PhoneModel"); |
|
101 _LIT(KIMEI, "IMEI"); |
|
102 |
|
103 enum TStatus |
|
104 { |
|
105 EUnknown = -1, |
|
106 ENotCharging=0, |
|
107 ECharging=1, |
|
108 EOff=0, |
|
109 EOn=1, |
|
110 EDisabled=0, |
|
111 EEnabled=1, |
|
112 ENotLocked=0, |
|
113 ELocked=1, |
|
114 EClosed=0, |
|
115 EOpen=1, |
|
116 ERemoved=0, |
|
117 EInserted=1, |
|
118 ENormal=0, |
|
119 ERotated90, |
|
120 ERotated180, |
|
121 ERotated270 |
|
122 }; |
|
123 |
|
124 } |
|
125 |
|
126 #endif __ENTITYKEYS_H__ |