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
|
/*
SPDX-FileCopyrightText: 2013 Sven Brauch <svenbrauch@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "propertypreviewwidget.h"
#include <QQuickWidget>
#include <QQuickItem>
#include <QQmlContext>
#include <QHBoxLayout>
#include <QLabel>
#include <QStandardPaths>
#include <KLocalizedString>
#include <KLocalizedContext>
#include <KTextEditor/Document>
#include <KTextEditor/View>
#include <KDeclarative/KDeclarative>
#include <language/duchain/ducontext.h>
#include <language/duchain/duchainlock.h>
// List of supported properties. The string must be the name of the property,
// which can contain dots if necessary
QMultiHash<QString, SupportedProperty> PropertyPreviewWidget::supportedProperties;
QWidget* PropertyPreviewWidget::constructIfPossible(KTextEditor::Document* doc,
const KTextEditor::Range& keyRange,
const KTextEditor::Range& valueRange,
Declaration* decl,
const QString& key,
const QString& value)
{
#define PROP(key, filename, type, class) \
supportedProperties.insert(key, SupportedProperty(QUrl(base + filename), type, class));
if ( supportedProperties.isEmpty() ) {
QString base = QStandardPaths::locate(
QStandardPaths::GenericDataLocation,
QStringLiteral("kdevqmljssupport/propertywidgets"),
QStandardPaths::LocateDirectory
) + QLatin1Char('/');
// Positioning
PROP(QStringLiteral("width"), QLatin1String("Width.qml"), QString(), QString())
PROP(QStringLiteral("height"), QLatin1String("Height.qml"), QString(), QString())
PROP(QStringLiteral("spacing"), QLatin1String("Spacing.qml"), QString(), QString())
// Margins
PROP(QStringLiteral("margins"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QQuickAnchors")); // matches anchors.margins and anchors { margins: }
PROP(QStringLiteral("margins"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QDeclarativeAnchors"));
PROP(QStringLiteral("leftMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QQuickAnchors"));
PROP(QStringLiteral("leftMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QDeclarativeAnchors"));
PROP(QStringLiteral("rightMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QQuickAnchors"));
PROP(QStringLiteral("rightMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QDeclarativeAnchors"));
PROP(QStringLiteral("topMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QQuickAnchors"));
PROP(QStringLiteral("topMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QDeclarativeAnchors"));
PROP(QStringLiteral("bottomMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QQuickAnchors"));
PROP(QStringLiteral("bottomMargin"), QLatin1String("Spacing.qml"), QString(), QStringLiteral("QDeclarativeAnchors"));
// Animations
PROP(QStringLiteral("duration"), QLatin1String("Duration.qml"), QString(), QString())
// Font QDeclarativeFontValueType, QQuickFontValueType
PROP(QStringLiteral("family"), QLatin1String("FontFamily.qml"), QString(), QStringLiteral("QDeclarativeFontValueType"))
PROP(QStringLiteral("family"), QLatin1String("FontFamily.qml"), QString(), QStringLiteral("QQuickFontValueType"))
PROP(QStringLiteral("pointSize"), QLatin1String("FontSize.qml"), QString(), QStringLiteral("QDeclarativeFontValueType"))
PROP(QStringLiteral("pointSize"), QLatin1String("FontSize.qml"), QString(), QStringLiteral("QQuickFontValueType"))
// Appearance
PROP(QStringLiteral("opacity"), QLatin1String("Opacity.qml"), QString(), QString())
// Type-dependent widgets
PROP(QString(), QLatin1String("ColorPicker.qml"), QStringLiteral("color"), QString())
}
#undef PROP
QList<SupportedProperty> properties;
properties << supportedProperties.values(key.section(QLatin1Char('.'), -1, -1));
properties << supportedProperties.values(QString());
// Explore each possible supported property and return the first supported widget
DUChainReadLocker lock;
for (const SupportedProperty& property : std::as_const(properties)) {
if (!decl || !decl->abstractType() || !decl->context() || !decl->context()->owner()) {
continue;
}
if (!decl->abstractType()->toString().contains(property.typeContains)) {
continue;
}
if (!decl->context()->owner()->toString().contains(property.classContains)) {
continue;
}
return new PropertyPreviewWidget(doc, keyRange, valueRange, property, value);
}
return nullptr;
}
void PropertyPreviewWidget::updateValue()
{
QString newValue = view->rootObject()->property("value").toString();
// set the cursor to the edited range, otherwise the view will jump if we call doc->endEditing()
//document->activeView()->setCursorPosition(KTextEditor::Cursor(valueRange.start.line, valueRange.start.column));
if (valueRange.end().column() - valueRange.start().column() == newValue.size()) {
document->replaceText(valueRange, newValue);
}
else {
// the length of the text changed so don't replace it but remove the old
// and insert the new text.
KTextEditor::Document::EditingTransaction transaction(document);
document->removeText(valueRange);
document->insertText(valueRange.start(), newValue);
valueRange.setRange(
valueRange.start(),
KTextEditor::Cursor(valueRange.start().line(), valueRange.start().column() + newValue.size())
);
}
}
PropertyPreviewWidget::~PropertyPreviewWidget()
{
}
PropertyPreviewWidget::PropertyPreviewWidget(KTextEditor::Document* doc,
const KTextEditor::Range& keyRange, const KTextEditor::Range& valueRange,
const SupportedProperty& property, const QString& value)
: QWidget()
, view(new QQuickWidget)
, document(doc)
, keyRange(keyRange)
, valueRange(valueRange)
, property(property)
{
//setup kdeclarative library
KDeclarative::KDeclarative::setupEngine(view->engine());
KLocalizedContext *localizedContextObject = new KLocalizedContext(view->engine());
localizedContextObject->setTranslationDomain(QStringLiteral("kdevqmljs"));
view->engine()->rootContext()->setContextObject(localizedContextObject);
// Configure layout
auto l = new QHBoxLayout;
l->setContentsMargins(0, 0, 0, 0);
setLayout(l);
// see docstring for ILanguageSupport::specialLanguageObjectNavigationWidget
setProperty("DoNotCloseOnCursorMove", true);
view->setSource(property.qmlfile);
if (!view->rootObject()) {
// don't crash because of a syntax error or missing QML file
l->addWidget(new QLabel(i18n("Error loading QML file: %1", property.qmlfile.path())));
delete view;
return;
}
// set the initial value read from the document
view->rootObject()->setProperty("initialValue", value);
// connect to the slot which has to be emitted from QML when the value changes
QObject::connect(view->rootObject(), SIGNAL(valueChanged()),
this, SLOT(updateValue()));
l->addWidget(view);
}
#include "moc_propertypreviewwidget.cpp"
|