src/hbwidgets/popups/hbprogressdialog_p.h
changeset 1 f7ac710697a9
parent 0 16d8024aca5e
child 2 06ff229162e9
--- a/src/hbwidgets/popups/hbprogressdialog_p.h	Mon Apr 19 14:02:13 2010 +0300
+++ b/src/hbwidgets/popups/hbprogressdialog_p.h	Mon May 03 12:48:33 2010 +0300
@@ -44,36 +44,36 @@
     ~HbProgressDialogPrivate();
 
     void init(HbProgressDialog::ProgressDialogType noteType);
+    void createPrimitives();
     void _q_finished();
     void _q_progressValueChanged(int);
-	void _q_userCancel();
+    void _q_userCancel();
 
-	enum StateFlag {
-         Autoreset = 0x1,
-         Autoclose = 0x2,
-		 Showtimer = 0x4,
-		 Closetimer = 0x8,
-		 Closepending = 0x10
+    enum StateFlag {
+        Autoreset = 0x1,
+        Autoclose = 0x2,
+        Showtimer = 0x4,
+        Closetimer = 0x8,
+        Closepending = 0x10
      };
+
      Q_DECLARE_FLAGS(StateFlags, StateFlag)
      StateFlags flags;
 
-
     static HbProgressDialogPrivate *d_ptr(HbProgressDialog *note) {
         Q_ASSERT(note);
         return note->d_func();
     }
-	HbAction *mAction;
+    HbAction *mAction;
     QTimeLine *mTimer;
     HbIcon mIcon;
-	HbProgressDialogContentWidget* mContentWidget;
-	Qt::Alignment mIconAlignment;
-    bool mTextWrapping;
-	int mMinDuration;
-	int mDelayTime;
-	HbProgressDialog::ProgressDialogType mNoteType;
-	QString mTextString;
-	Qt::Alignment mAlign;
+    HbProgressDialogContentWidget* mContentWidget;
+    Qt::Alignment mIconAlignment;
+    int mMinDuration;
+    int mDelayTime;
+    HbProgressDialog::ProgressDialogType mNoteType;
+    QString mTextString;
+    Qt::Alignment mAlign;
 };
 
 #endif