28
|
1 |
/*
|
|
2 |
* Copyright (c) 2007-2010 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: Constants for CSC Application
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef CSCCONSTANTS_H
|
|
20 |
#define CSCCONSTANTS_H
|
|
21 |
|
|
22 |
// UID for the csc application
|
|
23 |
const TUid KUidCSCApp = {0x10275458};
|
|
24 |
|
|
25 |
const TUid KPhoneBookTabUid = { 0x20012423 };
|
|
26 |
|
|
27 |
// Account creation plugin UID
|
|
28 |
const TUid KAccountCreationPluginUID = { 0x2000BEF1 };
|
|
29 |
|
|
30 |
// Advanced settings plugin UID
|
|
31 |
const TUid KAdvancedSettingsPluginUID = { 0x1028331D };
|
|
32 |
|
|
33 |
// Help context UID
|
|
34 |
const TUid KCscHelpUid = { 0x1020E566 };
|
|
35 |
|
|
36 |
// Filename and path for bitmaps and icons.
|
|
37 |
_LIT( KDriveZ, "z:" );
|
|
38 |
_LIT( KCSCAifFile, "csc_aif.mif");
|
|
39 |
|
|
40 |
// For icon size
|
|
41 |
const TInt KItemHeightPortrait = 67;
|
|
42 |
const TInt KIconSizeCorrectionPortrait = 8;
|
|
43 |
const TInt KIconSizeCorrectionLandscape = 7;
|
|
44 |
|
|
45 |
#endif // CSCCONSTANTS_H
|