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
|
/*
SPDX-FileCopyrightText: 2012 Miha Čančula <miha@noughmad.eu>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KDEVPLATFORM_ITEMPLATEPROVIDER_H
#define KDEVPLATFORM_ITEMPLATEPROVIDER_H
#include <QObject>
#include "interfacesexport.h"
class QIcon;
class QAbstractItemModel;
class QStringList;
namespace KDevelop
{
/**
* @brief A provider of templates
*
* A template provider loads any kind of source code templates and presents them in a model
* via the tempatesModel() function. This model will usually, but not necessarily, be connected
* to a tree view, so a tree structure is recommended.
*
* If the templates have a similar structure as those used by the AppWizard plugin,
* the TemplatesModel class may be used for convenience.
*
* The provider can also support downloading and uploading additional templates with
* Get Hot New Stuff. If this is the case, return the name of the configuration file
* (ending in .knsrc) from the knsConfigurationFile() function.
*
* If templates can be loaded from local files, the supportedMimeTypes() should return
* all file types the provider can load. If loading is not supported, return an empty list.
*
* @sa TemplatesModel
**/
class KDEVPLATFORMINTERFACES_EXPORT ITemplateProvider
{
public:
/**
* Destructor
**/
virtual ~ITemplateProvider();
/**
* @return The name of this provider.
**/
virtual QString name() const = 0;
/**
* @return An icon associated with this provider.
**/
virtual QIcon icon() const = 0;
/**
* @return A model containing all available templates.
*
* The called does not take ownership of the model.
**/
virtual QAbstractItemModel* templatesModel() const = 0;
/**
* @return The configuration file for Get Hot New Stuff.
*
* If GHNS is not used by this provider, return an empty string.
**/
virtual QString knsConfigurationFile() const = 0;
/**
* @return Types of files this provider can load.
*
* If loading is not supported, return an empty list.
**/
virtual QStringList supportedMimeTypes() const = 0;
/**
* Load a template from the file @p fileName.
*
* This function will only be called if @c supportedMimeTypes() returns
* a non-empty list.
*
* @param fileName the name of the file to load.
**/
virtual void loadTemplate(const QString& fileName) = 0;
/**
* Reloads all template data.
*
* This is usually called after loading or updating new templates.
**/
virtual void reload() = 0;
};
}
Q_DECLARE_INTERFACE( KDevelop::ITemplateProvider, "org.kdevelop.ITemplateProvider")
#endif // KDEVPLATFORM_ITEMPLATEPROVIDER_H
|