~zeller-benjamin/qtcreator-plugin-ubuntu/qtc41-beta

« back to all changes in this revision

Viewing changes to ubuntuprojectapp.h

  • Committer: Juhapekka Piiroinen
  • Date: 2013-09-04 15:30:00 UTC
  • mto: (23.1.14 binary-plugin)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: juhapekka.piiroinen@canonical.com-20130904153000-r4lhfhrjlwmop277
Added cordova plugin from ubuntu-qtcreator-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2013 Canonical Ltd.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU Lesser General Public License as published by
6
 
 * the Free Software Foundation; version 2.1.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
17
 
 */
18
 
 
19
 
#ifndef UBUNTUPROJECTAPP_H
20
 
#define UBUNTUPROJECTAPP_H
21
 
 
22
 
#include <QObject>
23
 
#include <coreplugin/basefilewizard.h>
24
 
#include <projectexplorer/baseprojectwizarddialog.h>
25
 
#include <qt4projectmanager/qt4project.h>
26
 
#include <qmlprojectmanager/qmlproject.h>
27
 
#include <extensionsystem/pluginmanager.h>
28
 
 
29
 
#include <QJsonObject>
30
 
#include "ubuntuconstants.h"
31
 
 
32
 
namespace Ubuntu {
33
 
namespace Internal {
34
 
class UbuntuProjectApp : public QObject
35
 
{
36
 
    Q_OBJECT
37
 
 
38
 
public:
39
 
    UbuntuProjectApp(QObject *parent = 0);
40
 
    Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage);
41
 
    
42
 
    QString projectType() { return m_projectType; }
43
 
    void setProjectType(QString projectType) { m_projectType = projectType; }
44
 
 
45
 
    QString projectFileName() { return m_projectFileName; }
46
 
    void setProjectFileName(QString projectFileName) { m_projectFileName = projectFileName; }
47
 
 
48
 
    void setData(QJsonObject obj) { m_obj = obj; }
49
 
    Core::BaseFileWizardParameters parameters(QJsonObject params);
50
 
 
51
 
    QByteArray processReservedWords(QByteArray data, QString projectPath, QString projectName);
52
 
    QString processReservedWordsInFileName(QString data, QString projectName) { return QString::fromLatin1(processReservedWordsInFileName(data.toLatin1(),projectName)); }
53
 
    QByteArray processReservedWordsInFileName(QByteArray data, QString projectName);
54
 
 
55
 
    Core::Feature requiredFeature();
56
 
 
57
 
protected:
58
 
    QString m_projectType;
59
 
    QString m_projectFileName;
60
 
 
61
 
    QJsonObject m_obj;
62
 
};
63
 
 
64
 
}
65
 
}
66
 
 
67
 
#endif // UBUNTUPROJECTAPP_H