equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 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: Active Palette Styler Factory* |
|
15 */ |
|
16 |
|
17 |
|
18 /** |
|
19 * @file ActivePalette2StylerFactory.h |
|
20 * Active Palette Styler Factory |
|
21 */ |
|
22 |
|
23 #ifndef _ACTIVE_PALETTE_2_STYLER_FACTORY_H |
|
24 #define _ACTIVE_PALETTE_2_STYLER_FACTORY_H |
|
25 |
|
26 |
|
27 #include <activepalette2factory.h> |
|
28 |
|
29 class CActivePalette2Styler; |
|
30 |
|
31 /** |
|
32 * Factory class to generate CActivePalette2Styler instances. |
|
33 */ |
|
34 class ActivePalette2StylerFactory |
|
35 { |
|
36 public: |
|
37 /** |
|
38 * Creates a styler based on the supplied draw mode |
|
39 * @param aDrawMode The draw mode to implement |
|
40 * @return The instantiated styler |
|
41 */ |
|
42 static CActivePalette2Styler* CreateStylerL(TActivePalette2DrawMode aDrawMode); |
|
43 }; |
|
44 |
|
45 #endif // _ACTIVE_PALETTE_2_STYLER_FACTORY_H |
|