wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h
changeset 39 7b3e49e4608a
parent 19 10810c91db26
child 53 bdc64aa9b954
--- a/wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h	Thu Jun 10 15:44:54 2010 +0300
+++ b/wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h	Thu Jun 24 10:49:51 2010 +0300
@@ -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_ */