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

« back to all changes in this revision

Viewing changes to src/ubuntu/ubunturuncontrolfactory.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 "ubunturuncontrolfactory.h"
 
20
 
 
21
using namespace Ubuntu::Internal;
 
22
 
 
23
bool UbuntuRunControlFactory::canRun(ProjectExplorer::RunConfiguration *runConfiguration,
 
24
                                ProjectExplorer::RunMode mode) const {
 
25
    if (!qobject_cast<UbuntuProject*>(runConfiguration->target()->project()))
 
26
        return false;
 
27
    if (mode == ProjectExplorer::NormalRunMode || mode == ProjectExplorer::DebugRunMode)
 
28
        return true;
 
29
    return false;
 
30
}
 
31
 
 
32
ProjectExplorer::RunControl *UbuntuRunControlFactory::create(ProjectExplorer::RunConfiguration *runConfiguration,
 
33
                                                        ProjectExplorer::RunMode mode, QString *) {
 
34
    QList<ProjectExplorer::RunControl *> runcontrols =
 
35
            ProjectExplorer::ProjectExplorerPlugin::instance()->runControls();
 
36
    foreach (ProjectExplorer::RunControl *rc, runcontrols) {
 
37
        if (UbuntuRunControl *qrc = qobject_cast<UbuntuRunControl *>(rc)) {
 
38
            qrc->stop();
 
39
        }
 
40
    }
 
41
 
 
42
    ProjectExplorer::RunControl *runControl = 0;
 
43
    if (mode == ProjectExplorer::NormalRunMode)
 
44
        runControl = new UbuntuRunControl(runConfiguration, mode, false);
 
45
    else if (mode == ProjectExplorer::DebugRunMode)
 
46
        runControl = new UbuntuRunControl(runConfiguration, mode, true);
 
47
    return runControl;
 
48
}
 
49
 
 
50
QString UbuntuRunControlFactory::displayName() const {
 
51
    return tr("Run on Ubuntu Touch Device");
 
52
}