# HG changeset patch # User hgs # Date 1286369533 -10800 # Node ID 8ab66fc302e6532df11c304a1d006f76ac633003 # Parent fc3ff57d09adc51fe6609fa670bb93b6752e1a39 201039 diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxengine/conf/camerax.confml --- a/camerauis/cameraxui/cxengine/conf/camerax.confml Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxengine/conf/camerax.confml Wed Oct 06 15:52:13 2010 +0300 @@ -74,8 +74,8 @@ 200904 1 1 - 4000 - 4000 + -1 + -1 1 0 0 diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxengine/cxengine.pro --- a/camerauis/cameraxui/cxengine/cxengine.pro Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxengine/cxengine.pro Wed Oct 06 15:52:13 2010 +0300 @@ -22,7 +22,7 @@ } else { CONFIG += dll DEFINES += CAMERAX_ENGINE_LIBRARY - VERSION = 10.0.1 + VERSION = 10.0.2 } TEMPLATE = lib diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxengine/src/cxecameradevice.cpp --- a/camerauis/cameraxui/cxengine/src/cxecameradevice.cpp Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxengine/src/cxecameradevice.cpp Wed Oct 06 15:52:13 2010 +0300 @@ -28,6 +28,7 @@ #include "cxecameradeviceTraces.h" #endif +const int KCameraPriority = -1; CxeCameraDevice::CxeCameraDevice() : @@ -227,10 +228,12 @@ CCamera* camera = NULL; #if defined(CXE_USE_DUMMY_CAMERA) || defined(__WINSCW__) - TRAPD(err, camera = CxeDummyCamera::NewL(*observer, cameraIndex, 100, 2)); + TRAPD(err, camera = CxeDummyCamera::NewL(*observer, cameraIndex, + KCameraPriority, 2)); CX_DEBUG(("CxeCameraDevice::newCamera <> new CxeDummyCamera")); #else - TRAPD(err, camera = CCamera::New2L(*observer, cameraIndex, 100 /*KCameraClientPriority*/)); + TRAPD(err, camera = CCamera::New2L(*observer, + cameraIndex, KCameraPriority)); CX_DEBUG(("CxeCameraDevice::newCamera <> new CCamera")); #endif diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxengine/src/dummyengine/cxedummycamera.cpp --- a/camerauis/cameraxui/cxengine/src/dummyengine/cxedummycamera.cpp Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxengine/src/dummyengine/cxedummycamera.cpp Wed Oct 06 15:52:13 2010 +0300 @@ -47,6 +47,35 @@ _LIT( PANICDUMMYCAMERA, "DummyCamera" ); } +CxeDummyBuffer::CxeDummyBuffer() : iData(_L8("ABC")) + { + CX_DEBUG_IN_FUNCTION(); + } + +CxeDummyBuffer::~CxeDummyBuffer() + { + CX_DEBUG_ENTER_FUNCTION(); + delete iBitmap; + CX_DEBUG_EXIT_FUNCTION(); + } + + + +CxeDummySnapshot::CxeDummySnapshot() + { + CX_DEBUG(("snap this = 0x%08x", this)); + CX_DEBUG_IN_FUNCTION(); + } + +CxeDummySnapshot::~CxeDummySnapshot() + { + CX_DEBUG_ENTER_FUNCTION(); + delete iBuffer; + CX_DEBUG_EXIT_FUNCTION(); + } + + + CxeDummyCamera* CxeDummyCamera::NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority, TInt aCameraVersion) { diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxengine/src/dummyengine/cxedummycamera.h --- a/camerauis/cameraxui/cxengine/src/dummyengine/cxedummycamera.h Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxengine/src/dummyengine/cxedummycamera.h Wed Oct 06 15:52:13 2010 +0300 @@ -39,18 +39,8 @@ public MCameraBuffer { public: - CxeDummyBuffer() : iData(_L8("ABC")) - { - CX_DEBUG_IN_FUNCTION(); - } - - ~CxeDummyBuffer() - { - CX_DEBUG_ENTER_FUNCTION(); - delete iBitmap; - CX_DEBUG_EXIT_FUNCTION(); - } - + CxeDummyBuffer(); + ~CxeDummyBuffer(); void CreateBitmapL( const TSize& aSize ); public: @@ -73,17 +63,8 @@ public MCameraSnapshot { public: - CxeDummySnapshot() - { - CX_DEBUG(("snap this = 0x%08x", this)); - CX_DEBUG_IN_FUNCTION(); - } - ~CxeDummySnapshot() - { - CX_DEBUG_ENTER_FUNCTION(); - delete iBuffer; - CX_DEBUG_EXIT_FUNCTION(); - } + CxeDummySnapshot(); + ~CxeDummySnapshot(); TUint32 SupportedFormats() { return 0; } void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio); diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxengine/tsrc/unit/system_include/imagingconfigmanager.cpp --- a/camerauis/cameraxui/cxengine/tsrc/unit/system_include/imagingconfigmanager.cpp Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxengine/tsrc/unit/system_include/imagingconfigmanager.cpp Wed Oct 06 15:52:13 2010 +0300 @@ -50,6 +50,8 @@ // CImagingConfigManager::~CImagingConfigManager() { + delete iVideoQualitySets; + delete iImageQualitySets; } diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/cxui.pro --- a/camerauis/cameraxui/cxui/cxui.pro Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/cxui.pro Wed Oct 06 15:52:13 2010 +0300 @@ -29,7 +29,7 @@ # and TraceCompiler needing USERINCLUDE. MMP_RULES += "USERINCLUDE traces" MMP_RULES += SMPSAFE - VERSION = 10.0.1 + VERSION = 10.0.2 } # export sound file @@ -144,7 +144,11 @@ thumbnailmanager_qt.h \ xqappmgr.h \ xqserviceprovider.h \ - XQUtils + XQUtils \ + afactivation.h \ + afactivities_global.h \ + afactivitystorage.h \ + xqrequestinfo.h } SOURCES += main.cpp \ diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/layouts/setting.docml --- a/camerauis/cameraxui/cxui/layouts/setting.docml Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/layouts/setting.docml Wed Oct 06 15:52:13 2010 +0300 @@ -1,16 +1,17 @@ - + - - + + + - + @@ -19,18 +20,17 @@ + + - - + + - - - - + diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/layouts/setting_slider.docml --- a/camerauis/cameraxui/cxui/layouts/setting_slider.docml Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/layouts/setting_slider.docml Wed Oct 06 15:52:13 2010 +0300 @@ -18,6 +18,7 @@ + diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/layouts/view_still_precapture.docml --- a/camerauis/cameraxui/cxui/layouts/view_still_precapture.docml Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/layouts/view_still_precapture.docml Wed Oct 06 15:52:13 2010 +0300 @@ -128,6 +128,7 @@ + diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/layouts/view_video_precapture.docml --- a/camerauis/cameraxui/cxui/layouts/view_video_precapture.docml Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/layouts/view_video_precapture.docml Wed Oct 06 15:52:13 2010 +0300 @@ -131,6 +131,7 @@ + diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/src/cxuisettingradiobuttonlist.cpp --- a/camerauis/cameraxui/cxui/src/cxuisettingradiobuttonlist.cpp Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/src/cxuisettingradiobuttonlist.cpp Wed Oct 06 15:52:13 2010 +0300 @@ -60,6 +60,7 @@ mSettingValues.append(setting.mValue); // engine value for setting } + setListBoxType(data->mListboxType); // Set the setting strings to the model. setItems(settingStrings); // Set the preview mode. @@ -68,7 +69,6 @@ mPreview = data->mPreview; setSettingId(data->mSettingId); - setListBoxType(data->mListboxType); // Store the original setting value and focus matching item. QString value = mEngine->settings().get(mSettingId, ""); diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/src/cxuivideoprecaptureview.cpp --- a/camerauis/cameraxui/cxui/src/cxuivideoprecaptureview.cpp Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/src/cxuivideoprecaptureview.cpp Wed Oct 06 15:52:13 2010 +0300 @@ -68,7 +68,7 @@ { static const int CXUI_ELAPSED_TIME_TIMEOUT = 1000; // 1 second static const int CXUI_RECORD_ANIMATION_DURATION = 3000; // milliseconds - static const int CXUI_PAUSE_TIMEOUT = 60*1000; // 60 seconds + static const int CXUI_PAUSE_TIMEOUT = 5*60*1000; // 5 minutes const int POSTCAPTURE_ON = -1; } diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/src/cxuiviewmanager.cpp --- a/camerauis/cameraxui/cxui/src/cxuiviewmanager.cpp Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/src/cxuiviewmanager.cpp Wed Oct 06 15:52:13 2010 +0300 @@ -22,7 +22,6 @@ #include #include #include -#include #include "cxuiapplication.h" #include "cxuiapplicationstate.h" @@ -279,12 +278,7 @@ AfActivation activation; AfActivityStorage activityStorage; - if (activation.reason() == Hb::ActivationReasonService || - // @todo: There's a bug in orbit and we never get Hb::ActivationReasonService as - // activation reason. Use XQServiceUtil to determine if starting service as - // a workaround for now - XQServiceUtil::isService()) { - + if (activation.reason() == Af::ActivationReasonService) { // For embedded mode: don't create view yet, create when engine inits to correct mode. // Connect signals to set up the view after image/video prepare connect(&mEngine.stillCaptureControl(), SIGNAL(imagePrepareComplete(CxeError::Id)), @@ -292,7 +286,7 @@ connect(&mEngine.videoCaptureControl(), SIGNAL(videoPrepareComplete(CxeError::Id)), this, SLOT(changeToPrecaptureView())); - } else if (activation.reason() == Hb::ActivationReasonActivity) { + } else if (activation.reason() == Af::ActivationReasonActivity) { // restoring activity, read startup view from stored activity // view to start in diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/stubs_desktop/inc/afactivation.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerauis/cameraxui/cxui/stubs_desktop/inc/afactivation.h Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,46 @@ +/* +* Copyright (c) 2010 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: +* +* Stub version of epoc32\include\platform\mw\afactivation.h to be used in desktop build. +* +*/ +#ifndef AFACTIVATION_H +#define AFACTIVATION_H + + +#include +#include +#include +#include + +#include "afactivities_global.h" + +class AfActivation : public QObject +{ + Q_OBJECT + +public: + AfActivation(QObject *parent = 0) {} + +signals: + void activated(Af::ActivationReason reason, QString name, QVariantHash parameters); + +public slots: + QVariantHash parameters() const {return QVariantHash();} + Af::ActivationReason reason() const {return Af::ActivationReasonNormal;} + QString name() const {return "";} +}; + +#endif // AFACTIVATION_H diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/stubs_desktop/inc/afactivities_global.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerauis/cameraxui/cxui/stubs_desktop/inc/afactivities_global.h Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2010 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: + * + * Stub version of epoc32\include\platform\mw\afactivities_global.h to be used in desktop build. + * + */ + +#ifndef AFACTIVITIES_GLOBAL_H +#define AFACTIVITIES_GLOBAL_H + +#include + +namespace Af { + enum ActivationReason { + ActivationReasonActivity = 0, + ActivationReasonService, + ActivationReasonNormal + }; + + const char KActivityScheme[] = "appto"; + + const char KActivityUriNameKey[] = "activityname"; + const char KActivityUriBackgroundKey[] = "activityinbackground"; +} + +#endif // AFACTIVITIES_GLOBAL_H diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/stubs_desktop/inc/afactivitystorage.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerauis/cameraxui/cxui/stubs_desktop/inc/afactivitystorage.h Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,52 @@ +/* +* Copyright (c) 2010 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: +* +* Stub version of epoc32\include\platform\mw\afactivitystorage.h to be used in desktop build. +* +*/ +#ifndef AFACTIVITYSTORAGE_H +#define AFACTIVITYSTORAGE_H + + +#include +#include +#include +#include + +#include "afactivities_global.h" + +class AfActivityStorage : public QObject +{ + Q_OBJECT + +public: + AfActivityStorage(QObject *parent = 0) {} + virtual ~AfActivityStorage() {} + +public slots: + bool saveActivity(const QString &activityId, const QVariant &activityData, const QVariantHash &metadata) {return true;} + bool removeActivity(const QString &activityId) {return true;} + + QStringList allActivities() const {return QStringList();} + + QVariant activityData(const QString &activityId) const {return QVariant();} + QVariantHash activityMetaData(const QString &activityId) const {return QVariantHash();} + +private: + Q_DISABLE_COPY(AfActivityStorage) + +}; + +#endif // AFACTIVITYSTORAGE_H diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/stubs_desktop/inc/xqaiwdecl.h --- a/camerauis/cameraxui/cxui/stubs_desktop/inc/xqaiwdecl.h Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/stubs_desktop/inc/xqaiwdecl.h Wed Oct 06 15:52:13 2010 +0300 @@ -48,5 +48,13 @@ #define XQCAMERA_INDEX_SWITCH QLatin1String("AllowCameraSwitch") #define XQCAMERA_QUALITY_CHANGE QLatin1String("AllowQualityChange") +/*! + A key name for XQRequestInfo object to pass a window title + to be shown in service application instead of the default title. + Service application is responsible to handle the key value. + \see XQApplicationMgr::XQRequestInfo::setInfo() +*/ +#define XQINFO_KEY_WINDOW_TITLE QLatin1String("WindowTitle") + #endif diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/stubs_desktop/inc/xqrequestinfo.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerauis/cameraxui/cxui/stubs_desktop/inc/xqrequestinfo.h Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,57 @@ +/* +* Copyright (c) 2010 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: +* +* Stub version of epoc32\include\mw\xqrequestinfo.h to be used in desktop build. +* +*/ + +#ifndef XQREQUESTINFO_H +#define XQREQUESTINFO_H + +#include +#include +#include + + +class XQRequestInfo +{ + public: + XQRequestInfo() {} + virtual ~XQRequestInfo() {} + + public: + + bool isValid() const {return true;} + + void setEmbedded(bool on) {} + bool isEmbedded() const {return false;} + void setBackground(bool on) {} + bool isBackground() const {return false;} + bool isSynchronous() const {return false;} + void setForeground(bool on) {} + bool isForeground() const {return false;} + + quint32 clientSecureId() const {return 0;} + quint32 clientVendorId() const {return 0;} + QSet clientCapabilities() const {return QSet();} + int id() const {return 0;} + + void setInfo(const QString &key, const QVariant &value) {} + QVariant info(const QString &key) const {return QVariant();} + QStringList infoKeys() const {return QStringList();} + +}; + +#endif diff -r fc3ff57d09ad -r 8ab66fc302e6 camerauis/cameraxui/cxui/stubs_desktop/inc/xqserviceprovider.h --- a/camerauis/cameraxui/cxui/stubs_desktop/inc/xqserviceprovider.h Fri Sep 24 11:12:50 2010 +0300 +++ b/camerauis/cameraxui/cxui/stubs_desktop/inc/xqserviceprovider.h Wed Oct 06 15:52:13 2010 +0300 @@ -20,6 +20,7 @@ #include #include +#include "xqrequestinfo.h" class XQServiceProvider : public QObject { @@ -31,7 +32,7 @@ virtual void publishAll(){} bool completeRequest(int index, const QVariant &retValue) {return true;} int setCurrentRequestAsync() {return 0;} - + XQRequestInfo requestInfo() const {return XQRequestInfo();} }; #endif // XQSERVICEPROVIDER_H diff -r fc3ff57d09ad -r 8ab66fc302e6 inc/CamcorderInternalPSKeys.h --- a/inc/CamcorderInternalPSKeys.h Fri Sep 24 11:12:50 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -/* -* Copyright (c) 2004 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: Camcorder internal Publish & Subscribe keys. -* -*/ - - - -#ifndef CAMCORDERINTERNALPSKEYS_H -#define CAMCORDERINTERNALPSKEYS_H - -const TUid KPSUidCamcorderNotifier = {0x101F882E}; - -// Camcorder Notification API - -const TUint32 KCCorLatestFilePath = 0x00000001; - -#endif // CAMCORDERINTERNALPSKEYS_H - - -// End of File diff -r fc3ff57d09ad -r 8ab66fc302e6 package_definition.xml --- a/package_definition.xml Fri Sep 24 11:12:50 2010 +0300 +++ b/package_definition.xml Wed Oct 06 15:52:13 2010 +0300 @@ -1,6 +1,6 @@ - + @@ -10,5 +10,11 @@ + + + + + + diff -r fc3ff57d09ad -r 8ab66fc302e6 sis/bld.inf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sis/bld.inf Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,24 @@ +/* +* ============================================================================ +* Name : bld.inf +* Part of : camerax +* Description : Build file for exporting camerax stub sis file to the ROM +* Version : %version: 1 % << Don't touch! Updated by Synergy at check-out. +* +* Copyright © 2010 Nokia and/or its subsidiary(-ies). All rights reserved. +* This material, including documentation and any related computer +* programs, is protected by copyright controlled by Nokia. All +* rights are reserved. Copying, including reproducing, storing, +* adapting or translating, any or all of this material requires the +* prior written consent of Nokia. This material also contains +* confidential information which may not be disclosed to others +* without the prior written consent of Nokia. +* ============================================================================ +* Template version: 4.2 +*/ + +PRJ_PLATFORMS +DEFAULT + +PRJ_EXPORTS +camerax_stub.sis \epoc32\data\z\system\install\camerax_stub.sis diff -r fc3ff57d09ad -r 8ab66fc302e6 sis/camerax_depends.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sis/camerax_depends.xml Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,49 @@ + + + + + + + 1 + + Camera application + + Camera application update + + + + + + S60 + + + 6 + 1 + + + 2010 + 34 + + + + + + + + + false + diff -r fc3ff57d09ad -r 8ab66fc302e6 sis/camerax_package.pkg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sis/camerax_package.pkg Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,38 @@ +; +; Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +; All rights reserved. +; This component and the accompanying materials are made available +; under the terms of the License "Symbian Foundation License v1.0" +; which accompanies this distribution, and is available +; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". +; +; Initial Contributors: +; Nokia Corporation - initial contribution. +; +; Contributors: +; +; Description: +; + +; Language +&EN + +; SIS header: name, uid, version +#{"cxui"},(0x20031EC3),1,0,0, TYPE=SA,RU + +; Localised Vendor name +%{"Nokia"} + +; Unique Vendor name +:"Nokia" + +; Dependencies +[0x20032DE7],0,0,0,{"S60ProductID"} + +; CameraX UI +"\epoc32\release\armv5\urel\cxui.exe" - "!:\sys\bin\cxui.exe" +"\epoc32\data\z\resource\apps\cxui.rsc" - "!:\resource\apps\cxui.rsc" +"\epoc32\data\z\private\10003a3f\import\apps\cxui_reg.rsc" - "!:\private\10003a3f\import\apps\cxui_reg.rsc" + +; CameraX Engine +"\epoc32\release\armv5\urel\cxengine.dll" - "!:\sys\bin\cxengine.dll" diff -r fc3ff57d09ad -r 8ab66fc302e6 sis/camerax_stub.pkg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sis/camerax_stub.pkg Wed Oct 06 15:52:13 2010 +0300 @@ -0,0 +1,30 @@ +; +; Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +; All rights reserved. +; This component and the accompanying materials are made available +; under the terms of the License "Symbian Foundation License v1.0" +; which accompanies this distribution, and is available +; at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". +; +; Initial Contributors: +; Nokia Corporation - initial contribution. +; +; Contributors: +; +; Description: This is a PKG file for creating stub sis package of camerax +; application. This sis is exported to the ROM image and used by IAD service +; to determine the initial version of the application. +; + +; Language +&EN + +; SIS header: name, uid, version +#{"cxui"},(0x20031EC3),1,0,0, TYPE=SA + +; Localised Vendor name +%{"Nokia"} + +; Unique Vendor name +:"Nokia" + diff -r fc3ff57d09ad -r 8ab66fc302e6 sis/camerax_stub.sis Binary file sis/camerax_stub.sis has changed