wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h
branchGCC_SURGE
changeset 47 b3d8f88532b7
parent 19 10810c91db26
parent 46 2fbd1d709fe7
--- a/wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h	Fri Jun 11 16:27:29 2010 +0100
+++ b/wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h	Thu Jul 22 16:44:32 2010 +0100
@@ -20,6 +20,7 @@
 
 // System includes
 #include <QObject>
+#include <HbDocumentLoader>
 
 // User includes
 #include "wpswizardpage.h"
@@ -34,52 +35,50 @@
 
 // Constants
 
+/*!
+ * @addtogroup group_wps_wizard_plugin
+ * @{
+ */
+
 // Class declaration
 class WpsPageStepThreeButton : public WpsWizardPage
     {
 Q_OBJECT
+
 public:
-    WpsPageStepThreeButton(WpsWizardPrivate* parent);
+    explicit WpsPageStepThreeButton(WpsWizardPrivate* parent);
     ~WpsPageStepThreeButton();
 
 public:
-    /*!
-     * Creates a visualization of the page.
-     */
+
     HbWidget* initializePage();
-    /*!
-     * Returns id of next page. updates settings EapWizard.
-     */
+
     int nextId(bool &removeFromStack) const;
-    /*!
-     * Returns how many steps should be gone backwards. 
-     */
-    int stepsBackwards();
-    /*!
-     * This method is called when Previous button has been pressed.
-     */
-    void previousTriggered();
-    /*!
-     * This method is called when Cancel button has been pressed.
-     */
-    void cancelTriggered();
-    /*!
-     * This method is called when a visualization is displayed to detect
-     * whether next button should be enabled or not.
-     */
-    bool validate() const;
+
+    int previousTriggered();
     
+signals:
+
 public slots:
 
+    void loadDocmlSection(Qt::Orientation orientation);
+
+protected:
+
+protected slots:
+
 private:
     Q_DISABLE_COPY(WpsPageStepThreeButton)
+
+private slots:
+
+private: //data    
+    //! Pointer to the widget object
     HbWidget *mWidget;
-    HbRadioButtonList *mRadio;
-    HbLabel *mTitle;
+    //! Pointer to the label displaying the heading
     HbLabel *mHeading;
-    bool mValid;
+    //! Document loader object.
+    HbDocumentLoader *mLoader;
     };
 
-/*! @} */
-
 #endif /* WPSWIZARDSTEPTHREEBUTTON_H_ */