diff -r 8aed59de29f9 -r 4eb2df7f7cbe videocollection/tsrc/stubs/inc/hbabstractitemview.h --- a/videocollection/tsrc/stubs/inc/hbabstractitemview.h Fri Apr 16 18:13:14 2010 +0300 +++ b/videocollection/tsrc/stubs/inc/hbabstractitemview.h Fri Apr 30 09:52:11 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);