diff -r 8b2d6d0384b0 -r d9aefe59d544 camerauis/cameraxui/cxengine/tsrc/fakeclasses/cxefakesettingsmodel.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerauis/cameraxui/cxengine/tsrc/fakeclasses/cxefakesettingsmodel.h Fri Apr 16 14:51:30 2010 +0300 @@ -0,0 +1,64 @@ +/* +* Copyright (c) 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: +* +*/ +#ifndef CXEFAKESETTINGSMODEL_H +#define CXEFAKESETTINGSMODEL_H + +#include +#include "cxesettingsmodel.h" + +class CxeFakeSettingsModel : public CxeSettingsModel +{ + +public: + + CxeFakeSettingsModel(); + ~CxeFakeSettingsModel(); + + void reset() {}; + CxeError::Id getSettingValue(const QString &key, QVariant &value); + void getSettingValue(long int uid, unsigned long int key, Cxe::SettingKeyType type, QVariant &value); + CxeError::Id getRuntimeValue(const QString &key, QVariant &value); + + CxeError::Id set(const QString &key,const QVariant newValue); + CxeScene& currentImageScene() {return mDummyScene;} + CxeScene& currentVideoScene() {return mDummyScene;} + void cameraModeChanged(Cxe::CameraMode newMode) {mDummyCameraMode = newMode;} + CxeError::Id setImageScene(const QString &newScene); + CxeError::Id setVideoScene(const QString &newScene); + +public: // own helper methods + void setRuntimeValues(QString &key, QList value); + void initDefaultCameraSettings(); + void testSetCurrenImageScene(); + void testSetCurrenVideoScene(); + + Cxe::CameraMode getDummyCameraMode() {return mDummyCameraMode;} + +private: + + QMap > mStore; + QHash mSettingStore; + CxeScene mDummyScene; + Cxe::CameraMode mDummyCameraMode; +}; + +#endif // CXEFAKESETTINGSMODEL_H + + + + +