71
|
1 |
/*
|
|
2 |
* Copyright (c) 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 the License "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: NSeries VOD UI plugin implementation*
|
|
15 |
*/
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
// INCLUDE FILES
|
|
20 |
#include "feedsettingsview.h"
|
|
21 |
#include "vcxnssettingsplugin.h"
|
|
22 |
#include <mpxviewutility.h>
|
|
23 |
|
|
24 |
// ======== MEMBER FUNCTIONS ========
|
|
25 |
|
|
26 |
// ---------------------------------------------------------------------------
|
|
27 |
// C++ default constructor
|
|
28 |
// ---------------------------------------------------------------------------
|
|
29 |
//
|
|
30 |
CVcxNsSettingsPlugin::CVcxNsSettingsPlugin()
|
|
31 |
{
|
|
32 |
// No impl
|
|
33 |
}
|
|
34 |
|
|
35 |
// ---------------------------------------------------------------------------
|
|
36 |
// Symbian 2nd phase constructor
|
|
37 |
// ---------------------------------------------------------------------------
|
|
38 |
//
|
|
39 |
void CVcxNsSettingsPlugin::ConstructL()
|
|
40 |
{
|
|
41 |
// No impl
|
|
42 |
}
|
|
43 |
|
|
44 |
// ---------------------------------------------------------------------------
|
|
45 |
// Two-phased constructor.
|
|
46 |
// ---------------------------------------------------------------------------
|
|
47 |
//
|
|
48 |
CVcxNsSettingsPlugin* CVcxNsSettingsPlugin::NewL( )
|
|
49 |
{
|
|
50 |
CVcxNsSettingsPlugin* self =
|
|
51 |
new ( ELeave ) CVcxNsSettingsPlugin();
|
|
52 |
CleanupStack::PushL( self );
|
|
53 |
self->ConstructL();
|
|
54 |
CleanupStack::Pop( self );
|
|
55 |
return self;
|
|
56 |
}
|
|
57 |
|
|
58 |
// ---------------------------------------------------------------------------
|
|
59 |
// Destructor
|
|
60 |
// ---------------------------------------------------------------------------
|
|
61 |
//
|
|
62 |
CVcxNsSettingsPlugin::~CVcxNsSettingsPlugin()
|
|
63 |
{
|
|
64 |
// No impl
|
|
65 |
}
|
|
66 |
|
|
67 |
// ---------------------------------------------------------------------------
|
|
68 |
// From CMPXAknViewPlugin
|
|
69 |
// Construct Avkon view.
|
|
70 |
// ---------------------------------------------------------------------------
|
|
71 |
//
|
|
72 |
CAknView* CVcxNsSettingsPlugin::ConstructViewLC()
|
|
73 |
{
|
|
74 |
return CVcxNsSettingsView::NewLC();
|
|
75 |
}
|