homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hslistviewitem.h
changeset 90 3ac3aaebaee5
parent 86 e4f038c420f7
--- a/homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hslistviewitem.h	Mon Sep 13 13:03:23 2010 +0300
+++ b/homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hslistviewitem.h	Mon Sep 20 10:19:07 2010 +0300
@@ -23,38 +23,45 @@
 
 #include "hsmenustates_global.h"
 
+HS_STATES_TEST_CLASS(MenuStatesTest)
+
 // TODO: this is only temporary class for show progress bar.
 // It should be remove when fix from orbit will be in official platfrom.
-class HsProgressBar: public HbProgressBar {
-public:
-    HsProgressBar(QGraphicsItem *parent=0):HbProgressBar(parent),mTargetValue(0),mTimerId(0) {}
-    void setTargetProgressValue(int value);
+class HsProgressBar: public HbProgressBar
+{
+    public:
+        HsProgressBar(QGraphicsItem *parent = 0) : HbProgressBar(parent),
+            mTargetValue(0), mTimerId(0) {}
+        void setTargetProgressValue(int value);
 
-protected:
-    void paint ( QPainter * painter, 
-            const QStyleOptionGraphicsItem * option, 
-            QWidget * widget = 0 );
-    void timerEvent(QTimerEvent *event);
-private:
-    int mTargetValue;
-    int mTimerId;
+    protected:
+        void paint(QPainter *painter,
+                const QStyleOptionGraphicsItem *option,
+                QWidget *widget = 0 );
+        void timerEvent(QTimerEvent *event);
+
+    private:
+        int mTargetValue;
+        int mTimerId;
+
+    HS_STATES_TEST_FRIEND_CLASS(MenuStatesTest)
 };
 
-HS_STATES_TEST_CLASS(MenuStatesTest)
+
 
 class HsListViewItem : public HbListViewItem
 {
     Q_OBJECT
     public:
-                
-        explicit HsListViewItem(QGraphicsItem* parent=0);
+
+        explicit HsListViewItem(QGraphicsItem *parent = 0);
         virtual ~HsListViewItem();
-   
+
         virtual HbAbstractViewItem* createItem();
         virtual void updateChildItems();
-    
-    protected:    
-	    virtual void polish(HbStyleParameters& params);
+
+    protected:
+	    virtual void polish(HbStyleParameters &params);
 
     private:
 	    HsProgressBar *progress;