mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
89 lines
3.2 KiB
C++
89 lines
3.2 KiB
C++
/* This file is part of KDevelop
|
|
Copyright 2009 Andreas Pakulat <apaku@gmx.de>
|
|
Copyright 2009 Niko Sams <niko.sams@gmail.com>
|
|
|
|
This library 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 library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KDEVPLATFORM_PLUGIN_SCRIPTAPPCONFIGTYPE_H
|
|
#define KDEVPLATFORM_PLUGIN_SCRIPTAPPCONFIGTYPE_H
|
|
|
|
#include <interfaces/launchconfigurationtype.h>
|
|
#include <interfaces/launchconfigurationpage.h>
|
|
#include <interfaces/ilauncher.h>
|
|
#include <interfaces/ilaunchmode.h>
|
|
|
|
#include "ui_scriptappconfig.h"
|
|
|
|
class ExecuteScriptPlugin;
|
|
|
|
class ScriptAppConfigPage : public KDevelop::LaunchConfigurationPage, Ui::ScriptAppPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ScriptAppConfigPage( QWidget* parent );
|
|
void loadFromConfiguration( const KConfigGroup& cfg, KDevelop::IProject* project = 0 );
|
|
void saveToConfiguration( KConfigGroup cfg, KDevelop::IProject* project = 0 ) const;
|
|
QString title() const;
|
|
KIcon icon() const;
|
|
};
|
|
|
|
class ScriptAppLauncher : public KDevelop::ILauncher
|
|
{
|
|
public:
|
|
ScriptAppLauncher( ExecuteScriptPlugin* );
|
|
virtual QList< KDevelop::LaunchConfigurationPageFactory* > configPages() const;
|
|
virtual QString description() const;
|
|
virtual QString id();
|
|
virtual QString name() const;
|
|
virtual KJob* start(const QString& launchMode, KDevelop::ILaunchConfiguration* cfg);
|
|
virtual QStringList supportedModes() const;
|
|
private:
|
|
ExecuteScriptPlugin* m_plugin;
|
|
};
|
|
|
|
class ScriptAppPageFactory : public KDevelop::LaunchConfigurationPageFactory
|
|
{
|
|
public:
|
|
ScriptAppPageFactory();
|
|
virtual KDevelop::LaunchConfigurationPage* createWidget(QWidget* parent);
|
|
};
|
|
|
|
/**
|
|
* A specific configuration to start a launchable, this could be a native
|
|
* compiled application, or some script file or byte-compiled file or something else
|
|
* Provides access to the various configured informations, as well as its type and a name
|
|
*/
|
|
class ScriptAppConfigType : public KDevelop::LaunchConfigurationType
|
|
{
|
|
public:
|
|
ScriptAppConfigType();
|
|
virtual ~ScriptAppConfigType();
|
|
|
|
QString id() const;
|
|
QString name() const;
|
|
QList<KDevelop::LaunchConfigurationPageFactory*> configPages() const;
|
|
KIcon icon() const;
|
|
virtual bool canLaunch( const KUrl& file ) const;
|
|
virtual bool canLaunch(KDevelop::ProjectBaseItem* item) const;
|
|
virtual void configureLaunchFromItem(KConfigGroup config, KDevelop::ProjectBaseItem* item) const;
|
|
virtual void configureLaunchFromCmdLineArguments(KConfigGroup config, const QStringList& args) const;
|
|
|
|
private:
|
|
QList<KDevelop::LaunchConfigurationPageFactory*> factoryList;
|
|
};
|
|
#endif
|
|
|