videocollection/videocollectionwrapper/tsrc/testvideoproxymodelcontent/stub/src/videolistdatamodel.cpp
changeset 62 0e1e938beb1a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videocollection/videocollectionwrapper/tsrc/testvideoproxymodelcontent/stub/src/videolistdatamodel.cpp	Fri Sep 17 08:30:05 2010 +0300
@@ -0,0 +1,94 @@
+/**
+* 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 model to be used when unit testing the proxy model. 
+* 
+*/
+
+
+// INCLUDES
+#include "videolistdatamodel.h"
+
+TMPXItemId VideoListDataModel::mMediaIdAtIndexReturnValue;
+int VideoListDataModel::mMediaIdAtIndexCallCount = 0;
+int VideoListDataModel::mRowCountReturnValue = 0;
+bool VideoListDataModel::mBelongsToAlbumReturnValue = true;
+TMPXItemId VideoListDataModel::mAlbumInUseReturnValue = TMPXItemId::InvalidId();
+
+// ---------------------------------------------------------------------------
+// VideoListDataModel
+// ---------------------------------------------------------------------------
+//
+VideoListDataModel::VideoListDataModel(QObject *parent)
+{
+    Q_UNUSED(parent);
+}
+
+// ---------------------------------------------------------------------------
+// ~VideoListDataModel
+// ---------------------------------------------------------------------------
+//
+VideoListDataModel::~VideoListDataModel()
+{
+
+}
+
+// ---------------------------------------------------------------------------
+// mediaIdAtIndex
+// ---------------------------------------------------------------------------
+//
+TMPXItemId VideoListDataModel::mediaIdAtIndex(int index)
+{
+    Q_UNUSED(index);
+    mMediaIdAtIndexCallCount++;
+    return mMediaIdAtIndexReturnValue;
+}
+
+// ---------------------------------------------------------------------------
+// rowCount
+// ---------------------------------------------------------------------------
+//
+const int VideoListDataModel::rowCount() const
+{
+    return mRowCountReturnValue;
+}
+
+// ---------------------------------------------------------------------------
+// mediaIdAtIndex
+// ---------------------------------------------------------------------------
+//
+bool VideoListDataModel::belongsToAlbum(TMPXItemId &id)
+{
+    return mBelongsToAlbumReturnValue;
+}
+
+// ---------------------------------------------------------------------------
+// albumInUse
+// ---------------------------------------------------------------------------
+//
+TMPXItemId VideoListDataModel::albumInUse()
+{
+    return mAlbumInUseReturnValue;
+}
+
+
+// ---------------------------------------------------------------------------
+// emitAlbumChanged
+// ---------------------------------------------------------------------------
+//   
+void VideoListDataModel::emitAlbumChanged()
+{
+    emit albumChanged();
+}
+// End of file
+