equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2007 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: Phonebook 2 title pane picture factory. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef PBK2TITLEPANEPICTUREFACTORY_H |
|
20 #define PBK2TITLEPANEPICTUREFACTORY_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32def.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class CEikImage; |
|
27 class CPbk2StorePropertyArray; |
|
28 class MVPbkStoreContact; |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * Phonebook 2 title pane picture factory. |
|
34 * Responsible for creating title pane picture. |
|
35 */ |
|
36 class Pbk2TitlePanePictureFactory |
|
37 { |
|
38 public: // Interface |
|
39 |
|
40 /** |
|
41 * Creates a picture to be set in title pane for the contact. |
|
42 * |
|
43 * @param aContact The contact for which the picture |
|
44 * is to be created. |
|
45 * @param aStoreProperties Store properties array. |
|
46 * @return The picture for the title pane. |
|
47 */ |
|
48 IMPORT_C static CEikImage* CreateTitlePanePictureLC( |
|
49 const MVPbkStoreContact* aContact, |
|
50 CPbk2StorePropertyArray& aStoreProperties ); |
|
51 |
|
52 }; |
|
53 |
|
54 #endif // PBK2TITLEPANEPICTUREFACTORY_H |
|
55 |
|
56 // End of File |