~gerboland/unity-mir/demo-stuff-manta-osk-fix

« back to all changes in this revision

Viewing changes to src/modules/Unity/Application/upstart/applicationcontroller.h

  • Committer: Gerry Boland
  • Date: 2014-02-13 23:02:39 UTC
  • mfrom: (172.1.6 unity-mir)
  • Revision ID: gerry.boland@canonical.com-20140213230239-4znuxxmv1j79odei
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * 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 UPSTART_APPLICATION_CONTROLLER_H
 
19
#define UPSTART_APPLICATION_CONTROLLER_H
 
20
 
 
21
#include "../applicationcontroller.h"
 
22
 
 
23
namespace upstart
 
24
{
 
25
class ApplicationController : public ::ApplicationController
 
26
{
 
27
public:
 
28
    ApplicationController();
 
29
    ~ApplicationController();
 
30
 
 
31
    pid_t primaryPidForAppId(const QString& appId);
 
32
    bool appIdHasProcessId(pid_t pid, const QString& appId);
 
33
 
 
34
    bool stopApplicationWithAppId(const QString& appId);
 
35
    bool startApplicationWithAppIdAndArgs(const QString& appId, const QStringList& arguments);
 
36
 
 
37
private:
 
38
    struct Private;
 
39
    QScopedPointer<Private> impl;
 
40
};
 
41
}
 
42
 
 
43
#endif // UPSTART_APPLICATION_CONTROLLER_H