photosgallery/slideshow/view/src/shwslideshowviewplugin.cpp
changeset 0 4e91876724a2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/photosgallery/slideshow/view/src/shwslideshowviewplugin.cpp	Thu Dec 17 08:45:44 2009 +0200
@@ -0,0 +1,94 @@
+/*
+* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:    Full screen view plugin
+*
+*/
+
+
+
+
+
+// INCLUDE FILES
+#include "shwslideshowviewplugin.h"
+
+#include <glxlog.h>
+#include <glxtracer.h>
+#include <glxcommandhandlerback.h>
+
+#include "shwslideshowview.h"
+
+// ======== MEMBER FUNCTIONS ========
+
+// ---------------------------------------------------------------------------
+// C++ default constructor can NOT contain any code, that
+// might leave.
+// ---------------------------------------------------------------------------
+//
+CShwSlideshowViewPlugin::CShwSlideshowViewPlugin()
+    {
+    // Do nothing
+    }
+
+// ---------------------------------------------------------------------------
+// Symbian 2nd phase constructor can leave.
+// ---------------------------------------------------------------------------
+//
+void CShwSlideshowViewPlugin::ConstructL()
+    {
+    // Do nothing
+    }
+
+// ---------------------------------------------------------------------------
+// Two-phased constructor.
+// ---------------------------------------------------------------------------
+//
+CShwSlideshowViewPlugin* CShwSlideshowViewPlugin::NewL()
+    {
+    TRACER("CShwSlideshowViewPlugin::NewL");
+    GLX_LOG_INFO("CShwSlideshowViewPlugin::NewL" );
+    CShwSlideshowViewPlugin* self = new ( ELeave ) CShwSlideshowViewPlugin();
+    CleanupStack::PushL( self );
+    self->ConstructL();
+    CleanupStack::Pop( self );
+    return self;
+    }
+
+// ---------------------------------------------------------------------------
+// Destructor
+// ---------------------------------------------------------------------------
+//
+CShwSlideshowViewPlugin::~CShwSlideshowViewPlugin()
+    {
+    // Do nothing
+    }
+
+// ---------------------------------------------------------------------------
+// From CMPXAknViewPlugin
+// Construct Avkon view.
+// ---------------------------------------------------------------------------
+//
+CAknView* CShwSlideshowViewPlugin::ConstructViewLC()
+    {
+    TRACER("CShwSlideshowViewPlugin::ConstructViewLC");
+    GLX_LOG_INFO("CShwSlideshowViewPlugin::ConstructViewLC" );
+	CShwSlideshowView* view = CShwSlideshowView::NewLC();
+
+	// add the back command handler to get us to previous view
+    view->AddCommandHandlerL( 
+    	CGlxCommandHandlerBack::NewPreviousViewCommandHandlerL( ) );
+	
+    return view;
+    }
+
+//  End of File