78 lines
1.9 KiB
C
Raw Normal View History

2013-08-31 17:33:09 +02:00
/*
* Copyright (C) 2013 Ivan Cukic <ivan.cukic(at)kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* or (at your option) any later version, as published by the Free
* Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef APPLICATION_H
#define APPLICATION_H
#include <QObject>
#include <QString>
#include "utils/d_ptr.h"
/**
* Class which handles an application execution.
*
* Example:
* <code>
* Application {
* application: "xterm"
* running: terminalRunningCheckbox.checked
* }
* </code>
*/
2013-08-31 17:33:09 +02:00
class Application: public QObject {
Q_OBJECT
/**
* The name or path of the applications
*/
2013-08-31 17:33:09 +02:00
Q_PROPERTY(QString application READ application WRITE setApplication NOTIFY applicationChanged);
/**
* Indicates whether the user wants the application to be running or not.
* It does not refer to the actual state of the application.
*/
2013-08-31 17:33:09 +02:00
Q_PROPERTY(bool running READ running WRITE setRunning NOTIFY runningChanged);
public:
Application(QObject * parent = Q_NULLPTR);
~Application();
QString application() const;
bool running() const;
public:
2013-08-31 17:33:09 +02:00
void setApplication(const QString & application);
void setRunning(bool run);
2013-08-31 17:33:09 +02:00
public Q_SLOTS:
2013-08-31 17:33:09 +02:00
void start();
void terminate();
Q_SIGNALS:
void applicationChanged(const QString & application);
void runningChanged(bool running);
private:
D_PTR;
};
#endif /* APPLICATION_H */