|
1 /* |
|
2 * Copyright (c) 2004-2005 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: Creator class for views. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MCALISTBOX_H |
|
21 #define MCALISTBOX_H |
|
22 |
|
23 #include <aknlists.h> |
|
24 |
|
25 /** |
|
26 * Common interface of any list box |
|
27 * |
|
28 * @lib chat.app |
|
29 * @since 2.1 |
|
30 */ |
|
31 |
|
32 class MCAListBox |
|
33 { |
|
34 |
|
35 |
|
36 }; |
|
37 class CAknSingle2GraphicStyleListBox; |
|
38 |
|
39 enum TListBoxType |
|
40 { |
|
41 ESingleStyleListBox = 0, |
|
42 ESingle2GraphicStyleListBox, |
|
43 EDoubleStyleListBox, |
|
44 ESingleLargeStyleListBox, |
|
45 ESettingStyleListBox, |
|
46 ESingleHeadingPopupMenuStyleListBox, |
|
47 ESingleGraphicStyleListBox |
|
48 }; |
|
49 |
|
50 |
|
51 class CCASingleStyleListBox: public CAknSingleStyleListBox, |
|
52 public MCAListBox |
|
53 { |
|
54 |
|
55 }; |
|
56 /*class CCASingle2GraphicStyleListBox: public CAknSingle2GraphicStyleListBox, |
|
57 public MCAListBox |
|
58 { |
|
59 |
|
60 }; */ |
|
61 |
|
62 class CCADoubleStyleListBox: public CAknDoubleStyleListBox, |
|
63 public MCAListBox |
|
64 { |
|
65 |
|
66 }; |
|
67 |
|
68 class CCASingleLargeStyleListBox: public CAknSingleLargeStyleListBox, |
|
69 public MCAListBox |
|
70 { |
|
71 |
|
72 }; |
|
73 |
|
74 class CCASettingStyleListBox: public CAknSettingStyleListBox, |
|
75 public MCAListBox |
|
76 { |
|
77 |
|
78 }; |
|
79 |
|
80 class CCASingleHeadingPopupMenuStyleListBox: public CAknSingleHeadingPopupMenuStyleListBox, |
|
81 public MCAListBox |
|
82 { |
|
83 |
|
84 }; |
|
85 class CCASingleGraphicStyleListBox: public CAknSingleGraphicStyleListBox, |
|
86 public MCAListBox |
|
87 { |
|
88 |
|
89 }; |
|
90 |
|
91 #endif // MCALISTBOX_H |