mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
/*
|
|
* This file is part of KDevelop
|
|
*
|
|
* Copyright 2007 Hamish Rodda <rodda@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* 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 KDEVPLATFORM_PLUGIN_EXECUTEPLUGIN_H
|
|
#define KDEVPLATFORM_PLUGIN_EXECUTEPLUGIN_H
|
|
|
|
#include <interfaces/iplugin.h>
|
|
#include <QtCore/QVariant>
|
|
#include <QtCore/QProcess>
|
|
#include "iexecuteplugin.h"
|
|
|
|
class KUrl;
|
|
class KJob;
|
|
|
|
class NativeAppConfigType;
|
|
|
|
class ExecutePlugin : public KDevelop::IPlugin, public IExecutePlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES( IExecutePlugin )
|
|
|
|
public:
|
|
ExecutePlugin(QObject *parent, const QVariantList & = QVariantList() );
|
|
virtual ~ExecutePlugin();
|
|
|
|
static QString _nativeAppConfigTypeId;
|
|
static QString workingDirEntry;
|
|
static QString executableEntry;
|
|
static QString argumentsEntry;
|
|
static QString isExecutableEntry;
|
|
static QString dependencyEntry;
|
|
static QString environmentGroupEntry;
|
|
static QString useTerminalEntry;
|
|
static QString terminalEntry;
|
|
static QString userIdToRunEntry;
|
|
static QString dependencyActionEntry;
|
|
static QString projectTargetEntry;
|
|
|
|
virtual void unload();
|
|
|
|
KUrl executable( KDevelop::ILaunchConfiguration*, QString& err ) const;
|
|
QStringList arguments( KDevelop::ILaunchConfiguration*, QString& err ) const;
|
|
KUrl workingDirectory( KDevelop::ILaunchConfiguration* ) const;
|
|
KJob* dependecyJob( KDevelop::ILaunchConfiguration* ) const;
|
|
QString environmentGroup( KDevelop::ILaunchConfiguration* ) const;
|
|
bool useTerminal( KDevelop::ILaunchConfiguration* ) const;
|
|
QString terminal( KDevelop::ILaunchConfiguration* ) const;
|
|
QString nativeAppConfigTypeId() const;
|
|
|
|
NativeAppConfigType* m_configType;
|
|
};
|
|
|
|
#endif // KDEVPLATFORM_PLUGIN_EXECUTEPLUGIN_H
|
|
|
|
// kate: space-indent on; indent-width 2; tab-width 4; replace-tabs on; auto-insert-doxygen on
|