~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to plugins/appwizard/projectselectionpage.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#define _PROJECTSELECTIONPAGE_H_
12
12
 
13
13
#include "appwizardpagewidget.h"
 
14
#include "appwizarddialog.h"
14
15
#include <knewstuff3/entry.h>
 
16
#include <QRegExpValidator>
15
17
 
16
18
namespace KDevelop
17
19
{
30
32
class ProjectSelectionPage : public AppWizardPageWidget {
31
33
Q_OBJECT
32
34
public:
33
 
    explicit ProjectSelectionPage(ProjectTemplatesModel *templatesModel, QWidget *parent = 0);
 
35
    explicit ProjectSelectionPage(ProjectTemplatesModel *templatesModel, AppWizardDialog *wizardDialog);
34
36
    ~ProjectSelectionPage();
35
37
 
36
38
    bool shouldContinue();
62
64
    Ui::ProjectSelectionPage *ui;
63
65
    KDevelop::MultiLevelListView* m_listView;
64
66
    ProjectTemplatesModel *m_templatesModel;
 
67
    AppWizardDialog *m_wizardDialog;
65
68
};
66
69
 
67
70
#endif