videocollection/tsrc/stubs/inc/hbabstractitemview.h
changeset 20 b9e04db066d4
parent 17 69946d1824c4
--- a/videocollection/tsrc/stubs/inc/hbabstractitemview.h	Mon May 03 12:32:50 2010 +0300
+++ b/videocollection/tsrc/stubs/inc/hbabstractitemview.h	Fri May 14 15:53:50 2010 +0300
@@ -28,8 +28,21 @@
 {
     Q_OBJECT
     
+    Q_PROPERTY(ItemAnimations enabledAnimations READ enabledAnimations WRITE setEnabledAnimations)
+    
 public:
     
+    enum ItemAnimation
+    {
+        None               = 0x00000,
+        Appear             = 0x00001,
+        Disappear          = 0x00002,
+        TouchDown          = 0x00004,
+        All                = 0xFFFFF
+    };
+    
+    Q_DECLARE_FLAGS(ItemAnimations, ItemAnimation)
+    
     enum SelectionMode
     {
         InvalidSelection,
@@ -41,6 +54,16 @@
     
     HbAbstractItemView(QGraphicsWidget *parent = 0) : HbWidget(parent){}
     
+    void setEnabledAnimations(ItemAnimations flags)
+    {
+        Q_UNUSED(flags);
+    }
+    
+    ItemAnimations enabledAnimations() const
+    {
+        return None;
+    }
+    
 signals:
 
     void activated(const QModelIndex &index);