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

« back to all changes in this revision

Viewing changes to ubuntuprojectmanager.cpp

  • 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
 
#include "ubuntuprojectmanager.h"
20
 
#include <QDebug>
21
 
#include <qmlprojectmanager/qmlprojectmanager.h>
22
 
 
23
 
using namespace Ubuntu::Internal;
24
 
 
25
 
UbuntuProjectManager::UbuntuProjectManager() {
26
 
    ProjectExplorer::SessionManager* sessionManager = ProjectExplorer::ProjectExplorerPlugin::instance()->session();
27
 
 
28
 
    connect(sessionManager,SIGNAL(projectAdded(ProjectExplorer::Project*)),SLOT(onProjectAdded(ProjectExplorer::Project*)));
29
 
}
30
 
 
31
 
ProjectExplorer::Project* UbuntuProjectManager::openProject(const QString &fileName, QString *errorString) {
32
 
    QFileInfo fileInfo(fileName);
33
 
    ProjectExplorer::ProjectExplorerPlugin *projectExplorer = ProjectExplorer::ProjectExplorerPlugin::instance();
34
 
 
35
 
    foreach (ProjectExplorer::Project *pi, projectExplorer->session()->projects()) {
36
 
        if (fileName == pi->document()->fileName()) {
37
 
            if (errorString)
38
 
                *errorString = tr("Failed opening project '%1': Project already open") .arg(QDir::toNativeSeparators(fileName));
39
 
            return 0;
40
 
        }
41
 
    }
42
 
 
43
 
    if (fileInfo.isFile())
44
 
        return new UbuntuProject(this, fileName);
45
 
 
46
 
    *errorString = tr("Failed opening project '%1': Project file is not a file").arg(QDir::toNativeSeparators(fileName));
47
 
    return 0;
48
 
}
49
 
 
50
 
void UbuntuProjectManager::registerProject(UbuntuProject *project) {
51
 
    m_projects.append(project);
52
 
}
53
 
 
54
 
void UbuntuProjectManager::unregisterProject(UbuntuProject *project) {
55
 
    m_projects.removeAll(project);
56
 
}
57
 
 
58
 
QString UbuntuProjectManager::mimeType() const {
59
 
    return QLatin1String(Constants::UBUNTUPROJECT_MIMETYPE);
60
 
}
61
 
 
62
 
void UbuntuProjectManager::onProjectAdded(ProjectExplorer::Project* addedProject) {
63
 
    qDebug() << "project added" << addedProject->displayName();
64
 
    QString mimeType = addedProject->projectManager()->mimeType();
65
 
    qDebug() << mimeType;
66
 
}