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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
/* This file is part of KDevelop
Copyright (C) 2008 Cédric Pasteur <cedric.pasteur@free.fr>
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_ISOURCEFORMATTER_H
#define KDEVPLATFORM_ISOURCEFORMATTER_H
#include <QWidget>
#include "interfacesexport.h"
class QUrl;
class QMimeType;
class QStringList;
namespace KDevelop
{
class KDEVPLATFORMINTERFACES_EXPORT SourceFormatterStyle
{
public:
struct MimeHighlightPair {
QString mimeType;
QString highlightMode;
};
using MimeList = QVector<MimeHighlightPair>;
SourceFormatterStyle();
explicit SourceFormatterStyle( const QString& name );
void setContent( const QString& content );
void setCaption( const QString& caption );
QString content() const;
QString caption() const;
QString name() const;
QString description() const;
void setDescription( const QString& desc );
bool usePreview() const;
void setUsePreview(bool use);
void setMimeTypes( const MimeList& types );
void setMimeTypes( const QStringList& types );
/// Provides the possibility to the item to return a better-suited
/// code sample. If empty, the default is used.
QString overrideSample() const;
void setOverrideSample( const QString& sample );
MimeList mimeTypes() const;
/// mime types as a QVariantList, type and mode separated by | in strings
QVariant mimeTypesVariant() const;
bool supportsLanguage(const QString& language) const;
/// get the language / highlight mode for a given @p mime
QString modeForMimetype(const QMimeType& mime) const;
/// Copy content, mime types and code sample from @p other.
void copyDataFrom(SourceFormatterStyle *other);
private:
bool m_usePreview = false;
QString m_name;
QString m_caption;
QString m_content;
QString m_description;
QString m_overrideSample;
MimeList m_mimeTypes;
};
/**
* @brief An object describing a style associated with a plugin
* which can deal with this style.
*/
struct SourceFormatterStyleItem {
QString engine;
SourceFormatterStyle style;
};
using SourceFormatterItemList = QVector<SourceFormatterStyleItem>;
/**
* @short A widget to edit a style
* A plugin should inherit this widget to create a widget to
* edit a style.
* @author Cédric Pasteur
*/
class KDEVPLATFORMINTERFACES_EXPORT SettingsWidget : public QWidget
{
Q_OBJECT
public:
explicit SettingsWidget(QWidget *parent = nullptr);
~SettingsWidget() override;
/** This function is called after the creation of the dialog.
* it should initialise the widgets with the values corresponding to
* the predefined style \arg name if it's not empty, or
* to the string \arg content.
*/
virtual void load(const SourceFormatterStyle&) = 0;
/** \return A string representing the state of the config.
*/
virtual QString save() = 0;
Q_SIGNALS:
/** Emits this signal when a setting was changed and the preview
* needs to be updated. \arg text is the text that will be shown in the
* editor. One might want to show different text
* according to the different pages shown in the widget.
* Text should already be formatted.
*/
void previewTextChanged(const QString &text);
};
/**
* @short An interface for a source beautifier
* An example of a plugin using an external executable to do
* the formatting can be found in kdevelop/plugins/formatters/indent_plugin.cpp.
* @author Cédric Pasteur
*/
class KDEVPLATFORMINTERFACES_EXPORT ISourceFormatter
{
public:
virtual ~ISourceFormatter();
/** \return The name of the plugin. This should contain only
* ASCII chars and no spaces. This will be used internally to identify
* the plugin.
*/
virtual QString name() const = 0;
/** \return A caption describing the plugin.
*/
virtual QString caption() const = 0;
/** \return A more complete description of the plugin.
* The string should be written in Rich text. It can eg contain
* a link to the project homepage.
*/
virtual QString description() const = 0;
/** Formats using the current style.
* @param text The text to format
* @param url The URL to which the text belongs (its contents must not be changed).
* @param leftContext The context at the left side of the text. If it is in another line, it must end with a newline.
* @param rightContext The context at the right side of the text. If it is in the next line, it must start with a newline.
*
* If the source-formatter cannot work correctly with the context, it will just return the input text.
*/
virtual QString formatSource(const QString &text, const QUrl& url, const QMimeType &mime, const QString& leftContext = QString(), const QString& rightContext = QString()) const = 0;
/**
* Format with the given style, this is mostly for the kcm to format the preview text
* Its a bit of a hassle that this needs to be public API, but I can't find a better way
* to do this.
*/
virtual QString formatSourceWithStyle( SourceFormatterStyle,
const QString& text,
const QUrl& url,
const QMimeType &mime,
const QString& leftContext = QString(),
const QString& rightContext = QString() ) const = 0;
/** \return A map of predefined styles (a key and a caption for each type)
*/
virtual QVector<SourceFormatterStyle> predefinedStyles() const = 0;
/** \return The widget to edit a style.
*/
virtual SettingsWidget* editStyleWidget(const QMimeType &mime) const = 0;
/** \return The text used in the config dialog to preview the current style.
*/
virtual QString previewText(const SourceFormatterStyle& style, const QMimeType &mime) const = 0;
struct Indentation {
Indentation() {
}
// If this indentation is really valid
bool isValid() const {
return indentationTabWidth != 0 || indentWidth != 0;
}
// The length of one tab used for indentation.
// Zero if unknown, -1 if tabs should not be used for indentation
int indentationTabWidth = 0;
// The number of columns that equal one indentation level.
// If this is zero, the default should be used.
int indentWidth = 0;
};
/** \return The indentation of the style applicable for the given url.
*/
virtual Indentation indentation(const QUrl& url) const = 0;
/** \return A string representing the map. Values are written in the form
* key=value and separated with ','.
*/
static QString optionMapToString(const QMap<QString, QVariant> &map);
/** \return A map corresponding to the string, that was created with
* \ref optionMapToString.
*/
static QMap<QString, QVariant> stringToOptionMap(const QString &option);
/** \return A message to display when an executable needed by a
* plugin is missing. This should be returned as description
* if a needed executable is not found.
*/
static QString missingExecutableMessage(const QString &name);
};
}
Q_DECLARE_INTERFACE(KDevelop::ISourceFormatter, "org.kdevelop.ISourceFormatter")
Q_DECLARE_TYPEINFO(KDevelop::SourceFormatterStyle::MimeHighlightPair, Q_MOVABLE_TYPE);
Q_DECLARE_TYPEINFO(KDevelop::SourceFormatterStyle, Q_MOVABLE_TYPE);
Q_DECLARE_TYPEINFO(KDevelop::SourceFormatterStyleItem, Q_MOVABLE_TYPE);
#endif // KDEVPLATFORM_ISOURCEFORMATTER_H
|