ganeswidgets/inc/hgcontainer.h
changeset 20 a60f8b6b1d32
parent 17 a10844a9914d
--- a/ganeswidgets/inc/hgcontainer.h	Fri Sep 17 15:55:58 2010 +0300
+++ b/ganeswidgets/inc/hgcontainer.h	Wed Oct 06 14:53:41 2010 +0300
@@ -67,9 +67,9 @@
 
     void itemDataChanged(const QModelIndex &firstIndex, const QModelIndex &lastIndex);
 
-    void addItems(int start, int end);
-    void removeItems(int start, int end);
-    void moveItems(int start, int end, int destination);
+    virtual void addItems(int start, int end);
+    virtual void removeItems(int start, int end);
+    virtual void moveItems(int start, int end, int destination);
 
     bool getItemPoints(int index, QPolygonF& points);
 
@@ -94,6 +94,9 @@
     qreal scrollPosition() const;
 
     void setHandleLongPress(bool handleLongPress);
+    
+    // Overrides the type of HbWidget
+    virtual int type() const;
         
 signals:
 
@@ -225,6 +228,7 @@
     bool mIgnoreGestureAction;
     bool mHandleLongPress;
     bool mEmitScrollingEnded;
+    bool mReflectionsEnabled;
 };
 
 #endif