Revision: 201007 RCL_3
authorDremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 12 Mar 2010 15:45:42 +0200
branchRCL_3
changeset 9 6e36eeb89e69
parent 7 c2c0f97004fc
child 10 c377fbf92a12
Revision: 201007 Kit: 201008
mmuifw_plat/mul_widget_api/inc/mul/mulevent.h
mulwidgets/mulcoverflowwidget/src/mulcoverflowcontrol.cpp
--- a/mmuifw_plat/mul_widget_api/inc/mul/mulevent.h	Fri Feb 19 23:20:00 2010 +0200
+++ b/mmuifw_plat/mul_widget_api/inc/mul/mulevent.h	Fri Mar 12 15:45:42 2010 +0200
@@ -99,7 +99,10 @@
 		ECustomEventIconRelease,                /*!< A message regarding release on icon.
                                                 * no custom data required. */   
 		
-		ETypePinch                /*!< A message regarding a multitouch pinch gesture identified in coverflow */                                                 
+		ETypePinch,                             /*!< A message regarding a multitouch pinch gesture identified in coverflow */  
+		
+		ETypeItemRemoved                        /*!< A message regarding a remove operation completed. Requested by photos for refreshing
+                                                     the HDMI view when an item is deleted, No custom data  */ 
         };
                                                        
         
--- a/mulwidgets/mulcoverflowwidget/src/mulcoverflowcontrol.cpp	Fri Feb 19 23:20:00 2010 +0200
+++ b/mulwidgets/mulcoverflowwidget/src/mulcoverflowcontrol.cpp	Fri Mar 12 15:45:42 2010 +0200
@@ -774,9 +774,14 @@
             break;
             }
         case EItemsInserted:
+            {
+            HandleModelCountChange();
+            break;
+            }
         case EItemsRemoved:
         	{
         	HandleModelCountChange();
+        	CAlfWidgetControl::processEvent( TAlfEvent( ETypeItemRemoved ));
         	break;
         	}