equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2004 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef AKN_ICON_SRV_RH |
|
21 #define AKN_ICON_SRV_RH |
|
22 |
|
23 // INCLUDES |
|
24 #include "AknIconSrv.hrh" |
|
25 |
|
26 |
|
27 // STRUCTURE DEFINITIONS |
|
28 // ----------------------------------------------------------------------------- |
|
29 // PRECACHE ICON |
|
30 // ----------------------------------------------------------------------------- |
|
31 // |
|
32 STRUCT ICON2 |
|
33 { |
|
34 // Skin ID for the icon in skin. This is used primarily. |
|
35 |
|
36 LONG skin_id_major = -1; // If major and minor skin ID are set to -1, |
|
37 LONG skin_id_minor = -1; // Fallback MIF location is used. |
|
38 |
|
39 // Fallback MIF location, if the icon is not present in the active skin. |
|
40 |
|
41 LTEXT16 fallback_icon_file = ""; // full file name |
|
42 LONG fallback_icon_id; |
|
43 LONG fallback_mask_id; |
|
44 LONG icon_width; |
|
45 LONG icon_height; |
|
46 LONG icon_mode; |
|
47 } |
|
48 |
|
49 #endif // AKN_ICON_SRV_RH |
|
50 |
|
51 // End of File |