|
1 /* |
|
2 * Copyright (c) 2007-2008 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: Slideshow settings dialog implementation |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef SHWSLIDESHOWSETTINGPLGIN_H |
|
22 #define SHWSLIDESHOWSETTINGPLGIN_H |
|
23 |
|
24 |
|
25 // INCLUDES |
|
26 #include <mpxakndialogplugin.h> |
|
27 |
|
28 |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * Slideshow settings playback dialog plugin definition. |
|
34 * |
|
35 * @lib shwslideshowsettingsplugin.lib |
|
36 * @since S60 v3.2 |
|
37 * @internal reviewed 08/06/2007 by Kimmo Hoikka |
|
38 */ |
|
39 NONSHARABLE_CLASS(CShwSlideshowSettingsPlugin) : public CMPXAknDialogPlugin |
|
40 { |
|
41 |
|
42 public: |
|
43 /** |
|
44 * Two-phased constructor. |
|
45 * @return Pointer to newly created object. |
|
46 */ |
|
47 static CShwSlideshowSettingsPlugin* NewL(); |
|
48 |
|
49 /** |
|
50 * Destructor. |
|
51 */ |
|
52 ~CShwSlideshowSettingsPlugin(); |
|
53 |
|
54 private: |
|
55 /** |
|
56 * C++ default constructor. |
|
57 */ |
|
58 CShwSlideshowSettingsPlugin(); |
|
59 |
|
60 private: // from CMPXAknDialogPlugin |
|
61 /** |
|
62 * Construct Avkon dialog. |
|
63 * @return Pointer to a newly created Avkon dialog. |
|
64 */ |
|
65 CAknDialog* ConstructDialogL(); |
|
66 |
|
67 // @ref CMPXAknDialogPlugin |
|
68 TInt ResourceId(); |
|
69 }; |
|
70 |
|
71 |
|
72 #endif // SHWSLIDESHOWSETTINGPLGIN_H |
|
73 |
|
74 // End of File |