videocollection/hgmyvideos/inc/vcxhgmyvideoscategorymodelobserver.h
changeset 0 96612d01cf9f
child 10 ce5ada96ab30
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videocollection/hgmyvideos/inc/vcxhgmyvideoscategorymodelobserver.h	Mon Jan 18 20:21:12 2010 +0200
@@ -0,0 +1,66 @@
+/*
+* Copyright (c) 2008 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 "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:      Observer interface for category data changes.*
+*/
+
+
+
+
+#ifndef VCXHGMYVIDEOSCATEGORYMODELOBSERVER_H
+#define VCXHGMYVIDEOSCATEGORYMODELOBSERVER_H
+
+// INCLUDES
+
+#include <mpxcollectionmessagedefs.h>
+#include <mpxitemid.h>
+
+// FORWARD DECLARATIONS
+
+class CMPXMediaArray;
+
+// CLASS DECLARATION
+
+/**
+ * Observer interface for category data changes.
+ * 
+ * @lib vcxhgmyvideos.lib
+ */
+NONSHARABLE_CLASS( MVcxHgMyVideosCategoryModelObserver )
+    {
+    public:
+    
+        /**
+         * Called when a list of categories is available.
+         * Ownership of array is transferred.
+         * 
+         * @param aCategoryList List of categories
+         */
+        virtual void NewCategoryListL( CMPXMediaArray* aCategoryList ) = 0;
+
+        /**
+         * Called when the list of categories has been modified.
+         */
+        virtual void CategoryListModifiedL() = 0;
+
+        /**
+         * Called when a single category has been modified (add/remove/modify).
+         * 
+         * @param aEventType Type of modification event (add/remove/modify).
+         * @param aMpxItemId MPX Item Id of the modified item.
+         */
+        virtual void CategoryModifiedL( TMPXChangeEventType aEventType, 
+                                        TMPXItemId& aMpxItemId ) = 0;        
+    };
+
+#endif // VCXHGMYVIDEOSCATEGORYMODELOBSERVER_H