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
|
/***************************************************************************
* Copyright 2001 Bernd Gehrmann <bernd@kdevelop.org> *
* Copyright 2004-2005 Sascha Cunz <sascha@kdevelop.org> *
* Copyright 2007 Alexander Dymo <adymo@kdevelop.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _APPWIZARDPLUGIN_H_
#define _APPWIZARDPLUGIN_H_
#include <interfaces/iplugin.h>
#include <interfaces/itemplateprovider.h>
#include <QHash>
#include <QVariant>
class ProjectTemplatesModel;
class ApplicationInfo;
class KArchiveDirectory;
class AppWizardPlugin: public KDevelop::IPlugin, public KDevelop::ITemplateProvider
{
Q_OBJECT
Q_INTERFACES(KDevelop::ITemplateProvider)
public:
explicit AppWizardPlugin(QObject *parent, const QVariantList & = QVariantList());
~AppWizardPlugin() override;
KDevelop::ContextMenuExtension contextMenuExtension(KDevelop::Context* context, QWidget* parent) override;
QAbstractItemModel* templatesModel() const override;
QString knsConfigurationFile() const override;
QStringList supportedMimeTypes() const override;
QString name() const override;
QIcon icon() const override;
void loadTemplate(const QString& fileName) override;
void reload() override;
private Q_SLOTS:
void slotNewProject();
private:
ProjectTemplatesModel* model() const;
QString createProject(const ApplicationInfo& );
bool unpackArchive(const KArchiveDirectory* dir, const QString& dest, const QStringList& skipList = {});
bool copyFileAndExpandMacros(const QString &source, const QString &dest);
// created lazily
mutable ProjectTemplatesModel* m_templatesModel = nullptr;
QAction* m_newFromTemplate;
QHash<QString, QString> m_variables;
};
#endif
|