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

« back to all changes in this revision

Viewing changes to src/cordovaubuntuprojectmanager/cruncontrol.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
 */
 
17
 
 
18
#ifndef CRUNCONTROL_H
 
19
#define CRUNCONTROL_H
 
20
 
 
21
#include "common.h"
 
22
 
 
23
namespace CordovaUbuntuProjectManager {
 
24
 
 
25
class CRunControl: public ProjectExplorer::RunControl {
 
26
    Q_OBJECT
 
27
public:
 
28
    CRunControl(ProjectExplorer::RunConfiguration *runConfiguration,
 
29
                ProjectExplorer::RunMode mode, bool debug = false);
 
30
    virtual ~CRunControl();
 
31
 
 
32
    void start();
 
33
    StopResult stop();
 
34
    bool isRunning() const;
 
35
    QIcon icon() const;
 
36
 
 
37
private slots:
 
38
    void processExited(int exitCode);
 
39
    void slotBringApplicationToForeground(qint64 pid);
 
40
    void slotAppendMessage(const QString &line, Utils::OutputFormat);
 
41
 
 
42
private:
 
43
    ProjectExplorer::ApplicationLauncher m_applicationLauncher;
 
44
 
 
45
    QString m_executable;
 
46
    QString m_commandLineArguments;
 
47
    QSharedPointer<QProcess> m_browser;
 
48
};
 
49
 
 
50
class CRunControlFactory : public ProjectExplorer::IRunControlFactory {
 
51
    Q_OBJECT
 
52
public:
 
53
    explicit CRunControlFactory() = default;
 
54
    virtual ~CRunControlFactory() {}
 
55
 
 
56
    bool canRun(ProjectExplorer::RunConfiguration *runConfiguration, ProjectExplorer::RunMode mode) const;
 
57
    ProjectExplorer::RunControl *create(ProjectExplorer::RunConfiguration *runConfiguration,
 
58
                                        ProjectExplorer::RunMode mode, QString *);
 
59
    QString displayName() const;
 
60
};
 
61
}
 
62
 
 
63
#endif