equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: Domain level Central Repository keys for Tacticon settings. |
|
15 * Part of : Tacticon Server |
|
16 */ |
|
17 |
|
18 #ifndef TACTICONDOMAINCRKEYS_H |
|
19 #define TACTICONDOMAINCRKEYS_H |
|
20 |
|
21 #include <e32std.h> |
|
22 |
|
23 const TUid KCRUidTacticon = {0x2001FE4D}; |
|
24 |
|
25 /** |
|
26 * Base strength of tacticons |
|
27 * |
|
28 * Possible values are: |
|
29 * 0-100 |
|
30 * |
|
31 * Default value: 50 |
|
32 **/ |
|
33 const TUint32 KTacticonStrength = 0x00000001; |
|
34 |
|
35 /** |
|
36 * Full path of the IVT file, which is used to play tacticons. |
|
37 * |
|
38 * Possible values are: |
|
39 * Valid path to IVT file. |
|
40 * |
|
41 * Default value: "Z:\\system\\sounds\\digital\\tacticons.ivt" |
|
42 **/ |
|
43 const TUint32 KTacticonIVTFile = 0x00000002; |
|
44 |
|
45 |
|
46 #endif // TACTICONDOMAINCRKEYS_H |
|
47 |
|
48 // End of File |