37
|
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: MMS settings specific enumerations, constants, declaration.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef MSG_UNIFIED_EDITOR_MMS_SETTINGSDEFS_H
|
|
19 |
#define MSG_UNIFIED_EDITOR_MMS_SETTINGSDEFS_H
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
|
|
23 |
// CONSTANTS
|
|
24 |
// Following definitions are applicable when the Unified SMS and MMS editor is in the build.
|
|
25 |
// (Naming like KMmsImageSmallWidth cannot be used, because it is defined in mmsconst.h)
|
|
26 |
// Small image: 640*480
|
|
27 |
const TInt KMmsUniImageSmallWidth = 640;
|
|
28 |
const TInt KMmsUniImageSmallHeight = 480;
|
|
29 |
// Large image: 1600*1200
|
|
30 |
const TInt KMmsUniImageLargeWidth = 1600;
|
|
31 |
const TInt KMmsUniImageLargeHeight = 1200;
|
|
32 |
|
|
33 |
#endif // MSG_UNIFIED_EDITOR_MMS_SETTINGSDEFS_H
|
|
34 |
|
|
35 |
// End of File
|