diff -r 000000000000 -r 4e91876724a2 photosgallery/gallery/src/glxapplication.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/photosgallery/gallery/src/glxapplication.cpp Thu Dec 17 08:45:44 2009 +0200 @@ -0,0 +1,106 @@ +/* +* 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 +#include + +#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 + +#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__ +