~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/configwizard.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-31 09:49:54 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071231094954-ix1amvcsj9pk61ya
Tags: 1:1.4.1.57486.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #180254), remaining changes:
  - debian/rules;
    - Added dh_icons
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *   You should have received a copy of the GNU General Public License     *
17
17
 *   along with this program; if not, write to the                         *
18
18
 *   Free Software Foundation, Inc.,                                       *
19
 
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02111-1307, USA.          *
 
19
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02110-1301, USA.          *
20
20
 ***************************************************************************/
21
21
 
22
22
#ifndef CONFIGWIZARD_H
33
33
#include "wizardprogresspage.h"
34
34
#include "wizardselectpluginpage.h"
35
35
#include "wizardbootstrappage.h"
36
 
#include "wizardconfirmpage.h"
 
36
#include "WizardBootstrapSelectorPage.h"
37
37
#include "wizardmediadeviceconfirmpage.h"
38
38
#include "updateinfogetter.h"
39
39
#include "autoupdater.h"
40
 
#include "mediadevices/mediadevice.h"
41
40
 
42
41
#include <vector>
43
42
 
106
105
    bool
107
106
    downloadPlugins();
108
107
 
109
 
    WizardInfoPage*             m_page1;
110
 
    WizardLoginPage*            m_page2;
111
 
    WizardInfoPage*             m_page3;
112
 
    WizardProgressPage*         m_page4;
113
 
    WizardSelectPluginPage*     m_page5;
114
 
    WizardProgressPage*         m_page6;
115
 
    WizardBootstrapAskPage*     m_page7;
116
 
    WizardMediaDeviceAskPage*   m_page8;
117
 
    WizardBootstrapPage*        m_page9;
118
 
    WizardInfoPage*             m_page10;
 
108
    WizardInfoPage*              m_page1;
 
109
    WizardLoginPage*             m_page2;
 
110
    WizardInfoPage*              m_page3;
 
111
    WizardProgressPage*          m_page4;
 
112
    WizardSelectPluginPage*      m_page5;
 
113
    WizardProgressPage*          m_page6;
 
114
    WizardBootstrapSelectorPage* m_page7;
 
115
    WizardMediaDeviceAskPage*    m_page8;
 
116
    WizardBootstrapPage*         m_page9;
 
117
    WizardInfoPage*              m_page10;
119
118
 
120
119
    Mode m_mode;
121
120
 
122
121
    // Set if the wizard is starting from a later page than 1
123
122
    int m_pageOffset;
124
123
 
125
 
    CUpdateInfoGetter       m_infoGetter;
126
 
    CAutoUpdater            m_updater;
127
 
    MediaDevices            m_mediaDevices;
128
 
    QString                 m_uid;
129
 
    bool                    m_bootstrapAllowed;
130
 
    bool                    m_didBootstrap;
131
 
    static bool             s_wizardRunning;
 
124
    CUpdateInfoGetter           m_infoGetter;
 
125
    CAutoUpdater                m_updater;
 
126
    class AbstractBootstrapper* m_bootstrapper;
 
127
    QString                     m_uid;
 
128
    bool                        m_bootstrapAllowed;
 
129
    bool                        m_didBootstrap;
 
130
    static bool                 s_wizardRunning;
132
131
 
133
132
    std::vector<CPluginInfo> mAvailPlugins;
134
133
 
154
153
    QString m_doneInfoPlugin;
155
154
    QString m_doneInfoMediaDeviceYes;
156
155
    QString m_doneInfoMediaDeviceNo;
157
 
    QString m_doneInfoBootstrapExtra;
 
156
    QString m_doneInfoClientBootstrapExtra;
 
157
    QString m_doneInfoPluginBootstrapExtra;
158
158
 
159
159
    int m_bootstrapStatus;
160
160