photosgallery/viewframework/commandhandlers/commoncommandhandlers/src/glxcommandhandlerdownload.cpp
changeset 0 4e91876724a2
child 2 7d9067c6fcb1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/photosgallery/viewframework/commandhandlers/commoncommandhandlers/src/glxcommandhandlerdownload.cpp	Thu Dec 17 08:45:44 2009 +0200
@@ -0,0 +1,119 @@
+/*
+* Copyright (c) 2008-2009 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:    Download commmand handler
+*
+*/
+
+
+
+
+
+/**
+ * @internal reviewed 26/06/2007 by Rowland Cook
+ */
+
+//  CLASS HEADER
+#include "glxcommandhandlerdownload.h"
+
+
+//  EXTERNAL INCLUDES
+#include <FavouritesLimits.h>               // for favourites context IDs
+#include <BrowserLauncher.h>
+
+//  INTERNAL INCLUDES
+#include <glxcommandhandlers.hrh>           // for EGlxCmdDownloadImages,
+                                            // and EGlxCmdDownloadVideos
+#include <glxlog.h>                         // for debug logging
+
+
+
+// LOCAL FUNCTIONS AND CONSTANTS
+
+
+
+// ----------------------------------------------------------------------------
+// Two-phased constructor.
+// ----------------------------------------------------------------------------
+EXPORT_C CGlxCommandHandlerDownload* CGlxCommandHandlerDownload::NewL()
+    {
+    CGlxCommandHandlerDownload* self = 
+                        new (ELeave) CGlxCommandHandlerDownload();
+    CleanupStack::PushL(self);
+    self->ConstructL();
+    CleanupStack::Pop(self);
+    return self;
+    }
+
+// ----------------------------------------------------------------------------
+// C++ default constructor 
+// ----------------------------------------------------------------------------
+CGlxCommandHandlerDownload::CGlxCommandHandlerDownload():CGlxCommandHandler()
+    {
+    // nothing to do
+    }           
+
+// ----------------------------------------------------------------------------
+// Symbian 2nd phase constructor can leave.
+// ----------------------------------------------------------------------------
+void CGlxCommandHandlerDownload::ConstructL()
+    {
+     // No implemenation required
+    }   
+    
+
+// ----------------------------------------------------------------------------
+// Destructor
+// ----------------------------------------------------------------------------
+EXPORT_C CGlxCommandHandlerDownload::~CGlxCommandHandlerDownload()
+    {
+     // No implemenation required
+    }
+    
+    
+
+// ----------------------------------------------------------------------------
+// ExecuteL
+// ----------------------------------------------------------------------------
+TBool CGlxCommandHandlerDownload::ExecuteL(TInt aCommandId)
+    {
+    GLX_FUNC("CGlxCommandHandlerDownload::ExecuteL");
+    TInt contextId = KFavouritesNullContextId;
+    if(aCommandId == EGlxCmdDownloadImages)
+        {
+        contextId = KFavouritesImageContextId;
+        }
+    else if(aCommandId == EGlxCmdDownloadVideos)
+        {
+        contextId = KFavouritesVideoContextId;
+        }
+        
+    if(contextId != KFavouritesNullContextId)
+        {
+        
+        // Launches the browser with specific context id
+        CBrowserLauncher* browserLauncher = CBrowserLauncher::NewLC();
+        browserLauncher->LaunchBrowserSyncEmbeddedL( contextId ) ;
+        CleanupStack::PopAndDestroy(browserLauncher); // browserLauncher;
+        
+        return ETrue;
+        }
+        
+    return EFalse;
+    }
+
+
+
+
+// End of file
+