diff -r dec420019252 -r cf5481c2bc0b videocollection/videocollectionwrapper/tsrc/testvideocollectionclient/stub/inc/stubcollectionsignalreceiver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videocollection/videocollectionwrapper/tsrc/testvideocollectionclient/stub/inc/stubcollectionsignalreceiver.h Fri Apr 16 14:59:52 2010 +0300 @@ -0,0 +1,126 @@ +/** +* 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: stub classes for testing CVideoCollectionClient +* +*/ + +#ifndef __STUBCOLLECTIONSIGNALRECEIVER_H +#define __STUBCOLLECTIONSIGNALRECEIVER_H + +#include +// INCLUDES +#include "videodatasignalreceiver.h" + +/** + * implementation class for slots to be connected + */ +class StubSignalReceiver : public VideoDataSignalReceiver +{ + + Q_OBJECT + + Q_DISABLE_COPY(StubSignalReceiver) + +public: + + /** + * contructor + */ + StubSignalReceiver(){}; + + /** + * destructor + */ + virtual ~StubSignalReceiver(){}; + +public slots: + + /** + * No implementation needed for these tests + */ + void newVideoListSlot(CMPXMediaArray *array) + { + Q_UNUSED(array); + } + + /** + * No implementation needed for these tests + */ + void appendVideoListSlot( CMPXMediaArray* array ) + { + Q_UNUSED(array); + } + + /** + * No implementation needed for these tests + */ + void newVideoAvailableSlot(CMPXMedia *media) + { + Q_UNUSED(media); + } + + /** + * No implementation needed for these tests + */ + void itemDeletedSlot(TMPXItemId id) + { + Q_UNUSED(id); + } + + /** + * No implementation needed for these tests + */ + void albumRemoveFailureSlot(QList *items) + { + Q_UNUSED(items); + } + + /** + * No implementation needed for these tests + */ + void videoDeletedSlot(TMPXItemId id) + { + Q_UNUSED(id); + } + + /** + * No implementation needed for these tests + */ + void videoDeleteCompletedSlot(int count, QList *failedIds) + { + Q_UNUSED(count); + Q_UNUSED(failedIds); + } + + /** + * No implementation needed for these tests + */ + void videoDetailsCompletedSlot(TMPXItemId id) + { + Q_UNUSED(id); + } + + /** + * No implementation needed for these tests + */ + void albumListAvailableSlot(TMPXItemId albumId, CMPXMediaArray *albumItems) + { + Q_UNUSED(albumId); + Q_UNUSED(albumItems); + } + +}; + + +#endif