wlanutilities/wpswizard/inc/wpswizardstepthreebutton.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Step 3 Button press mode
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef WPSWIZARDSTEPTHREEBUTTON_H_
       
    19 #define WPSWIZARDSTEPTHREEBUTTON_H_
       
    20 
       
    21 // System includes
       
    22 #include <QObject>
       
    23 #include <HbDocumentLoader>
       
    24 
       
    25 // User includes
       
    26 #include "wpswizardpage.h"
       
    27 
       
    28 // Forward declarations
       
    29 class HbRadioButtonList;
       
    30 class HbWidget;
       
    31 class HbLabel;
       
    32 class WpsWizardPrivate;
       
    33 
       
    34 // External data types
       
    35 
       
    36 // Constants
       
    37 
       
    38 /*!
       
    39  * @addtogroup group_wps_wizard_plugin
       
    40  * @{
       
    41  */
       
    42 
       
    43 // Class declaration
       
    44 class WpsPageStepThreeButton : public WpsWizardPage
       
    45     {
       
    46 Q_OBJECT
       
    47 
       
    48 public:
       
    49     explicit WpsPageStepThreeButton(WpsWizardPrivate* parent);
       
    50     ~WpsPageStepThreeButton();
       
    51 
       
    52 public:
       
    53 
       
    54     HbWidget* initializePage();
       
    55 
       
    56     int nextId(bool &removeFromStack) const;
       
    57 
       
    58     int previousTriggered();
       
    59     
       
    60 signals:
       
    61 
       
    62 public slots:
       
    63 
       
    64 protected:
       
    65 
       
    66 protected slots:
       
    67 
       
    68 private:
       
    69     Q_DISABLE_COPY(WpsPageStepThreeButton)
       
    70 
       
    71 private slots:
       
    72 
       
    73 private: //data    
       
    74     //! Pointer to the widget object
       
    75     HbWidget *mWidget;
       
    76     //! Pointer to the label displaying the heading
       
    77     HbLabel *mHeading;
       
    78     //! Document loader object.
       
    79     HbDocumentLoader *mLoader;
       
    80     };
       
    81 
       
    82 #endif /* WPSWIZARDSTEPTHREEBUTTON_H_ */