1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*
This plugin is part of KDevelop.
Copyright (C) 2010 Milian Wolff <mail@milianw.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef KDEVPLATFORM_PLUGIN_EXTERNALSCRIPTPLUGIN_H
#define KDEVPLATFORM_PLUGIN_EXTERNALSCRIPTPLUGIN_H
#include <interfaces/iplugin.h>
#include <QVariantList>
#include <KConfigGroup>
#include <QUrl>
class ExternalScriptItem;
class QStandardItem;
class QStandardItemModel;
class QModelIndex;
class ExternalScriptPlugin
: public KDevelop::IPlugin
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kdevelop.ExternalScriptPlugin")
public:
explicit ExternalScriptPlugin(QObject* parent, const QVariantList& args = QVariantList());
~ExternalScriptPlugin() override;
void unload() override;
KDevelop::ContextMenuExtension contextMenuExtension(KDevelop::Context* context, QWidget* parent) override;
static ExternalScriptPlugin* self();
/**
* @return The model storing all external scripts managed by this plugin.
* @NOTE: always append() items, never insert in the middle!
*/
QStandardItemModel* model() const;
/**
* Executes @p script.
*/
void execute(ExternalScriptItem* item, const QUrl& url) const;
/**
* Executes @p script.
*/
void execute(ExternalScriptItem* item) const;
/**
* Returns config group to store all settings for this plugin in.
*/
KConfigGroup getConfig() const;
/**
* Saves the @p script to the config and updates the key
*/
void saveItem(const ExternalScriptItem* item);
public Q_SLOTS:
void executeScriptFromActionData() const;
/**
* Executes the command (Used by the shell-integration)
* */
Q_SCRIPTABLE bool executeCommand(const QString& command, const QString& workingDirectory) const;
/**
* Executes the command synchronously and returns the output text (Used by the shell-integration)
* */
Q_SCRIPTABLE QString executeCommandSync(const QString& command, const QString& workingDirectory) const;
private Q_SLOTS:
void rowsAboutToBeRemoved(const QModelIndex& parent, int start, int end);
void rowsInserted(const QModelIndex& parent, int start, int end);
void executeScriptFromContextMenu() const;
private:
/// @param row row in the model for the item to save
void saveItemForRow(int row);
/**
* Sets up unique keys for items in the range [start, end]
* @param start start of the range
* @param end end of the range
*/
void setupKeys(int start, int end);
QStandardItemModel* m_model;
QList<QUrl> m_urls;
static ExternalScriptPlugin* m_self;
class ExternalScriptViewFactory* m_factory;
};
#endif // KDEVPLATFORM_PLUGIN_EXTERNALSCRIPTPLUGIN_H
|