src/hbcore/core/hbgraphicsscene_p.h
changeset 21 4633027730f5
parent 7 923ff622b8b9
child 28 b7da29130b0e
--- a/src/hbcore/core/hbgraphicsscene_p.h	Tue Jul 06 14:36:53 2010 +0300
+++ b/src/hbcore/core/hbgraphicsscene_p.h	Wed Aug 18 10:05:37 2010 +0300
@@ -32,6 +32,14 @@
 #include <QGraphicsItem>
 #include "hbgraphicsscene.h"
 
+QT_BEGIN_NAMESPACE
+#if QT_VERSION >= 0x040700
+class QElapsedTimer;
+#else
+class QTime;
+#endif
+QT_END_NAMESPACE
+
 class HbPopupManager;
 class HbToolTipLabel;
 class HbInputMethod;
@@ -51,7 +59,8 @@
 
     void showPopup(HbPopup *popup);
     void hidePopup(HbPopup *popup);
-
+    void polishItems();
+    void _q_processDirtyItems();
     HbPopupManager *popupManager();
 
 public:
@@ -61,12 +70,17 @@
     bool mInputFocusSet;
     bool mPolishWidgets;
     bool mRepolishWidgets;
-    int mPolishItemsIndex;
+    int mPolishItemsSlotIndex;
+    int mProcessItemsSlotIndex;
     // fps counter
     static bool fpsCounterEnabled;
     int mDrawCount;
     qreal mFPS;
+#if QT_VERSION >= 0x040700
+    QElapsedTimer *mFPSTime;
+#else
     QTime *mFPSTime;
+#endif
     qreal mMaxFPS;
 
 private: