photosgallery/gallery/src/glxapplication.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 08:45:44 +0200
changeset 0 4e91876724a2
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* 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:    Symbian application class
*
*/


 

#include "glxapplication.h"

#include <glxgallery.hrh>
#include <glxlog.h>

#include "glxdocument.h"
 
// UID for the application, this should correspond to the uid defined in the mmp file
static const TUid KUidGlxApp = {KGlxGalleryApplicationUid};

// -----------------------------------------------------------------------------
// CreateDocumentL
// -----------------------------------------------------------------------------
//
CApaDocument* CGlxApplication::CreateDocumentL()
    {  
    GLX_LOG_INFO("CGlxApplication::CreateDocumentL");
    // Create a Viewer document, and return a pointer to it
    CApaDocument* document = CGlxDocument::NewL(*this);
    return document;
    }

// -----------------------------------------------------------------------------
// AppDllUid
// -----------------------------------------------------------------------------
//
TUid CGlxApplication::AppDllUid() const
    {
    // Return the UID for the Viewer application
    return KUidGlxApp;
    }

#include <eikstart.h>
 
#ifdef __UI_FRAMEWORKS_V2__

// -----------------------------------------------------------------------------
// NewApplication
// -----------------------------------------------------------------------------
//
CApaApplication* NewApplication()
	{
	return new CGlxApplication;
	}

// -----------------------------------------------------------------------------
// E32Main
// -----------------------------------------------------------------------------
//
TInt E32Main()
	{
	return EikStart::RunApplication(NewApplication);
	}

///////////////////////////////////////////////////////////////////////////////
//
// The following is required for wins on EKA1 (using the exedll target)
//
#if defined(__WINS__) && !defined(EKA2)
EXPORT_C TInt WinsMain(TDesC* aCmdLine)
	{
	return EikStart::RunApplication(NewApplication, aCmdLine);
	}

TInt E32Dll(TDllReason)
	{
	return KErrNone;
	}
#endif

#else // __UI_FRAMEWORKS_V2__

// Create an application, and return a pointer to it
EXPORT_C CApaApplication* NewApplication()
  {
  return new CGlxApplication;
  }

// DLL entry point, return that everything is ok
GLDEF_C TInt E32Dll(TDllReason)
  {
  return KErrNone;
  }

#endif // __UI_FRAMEWORKS_V2__