~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/plugins/qmlprojectmanager/qmlapplicationwizard.h

  • Committer: Timo Jyrinki
  • Date: 2013-12-02 09:16:15 UTC
  • mfrom: (1.1.29)
  • Revision ID: timo.jyrinki@canonical.com-20131202091615-xbj1os1f604ber1m
New upstream release candidate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
class QmlApp;
44
44
class TemplateInfo;
 
45
class QmlComponentSetPage;
45
46
 
46
47
class QmlApplicationWizardDialog : public ProjectExplorer::BaseProjectWizardDialog
47
48
{
48
49
    Q_OBJECT
49
50
public:
50
 
    QmlApplicationWizardDialog(QmlApp *qmlApp, QWidget *parent,
 
51
    QmlApplicationWizardDialog(QWidget *parent,
51
52
                               const Core::WizardDialogParameters &parameters);
52
53
 
53
 
    QmlApp *qmlApp() const;
 
54
    TemplateInfo templateInfo() const;
54
55
 
55
56
private:
56
 
    QmlApp *m_qmlApp;
 
57
    QmlComponentSetPage *m_componentSetPage;
57
58
};
58
59
 
59
60
 
62
63
    Q_OBJECT
63
64
 
64
65
public:
65
 
    explicit QmlApplicationWizard(const TemplateInfo &templateInfo);
 
66
    explicit QmlApplicationWizard();
66
67
 
67
68
    static void createInstances(ExtensionSystem::IPlugin *plugin);
68
69
 
74
75
    bool postGenerateFiles(const QWizard *w, const Core::GeneratedFiles &l, QString *errorMessage);
75
76
 
76
77
private:
77
 
//    mutable QString m_id;
78
78
    QmlApp *m_qmlApp;
79
79
};
80
80