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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
/*
SPDX-FileCopyrightText: 2009 Milian Wolff <mail@milianw.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "colorcache.h"
#include "configurablecolors.h"
#include "codehighlighting.h"
#include <KColorScheme>
#include "../../interfaces/icore.h"
#include "../../interfaces/ilanguagecontroller.h"
#include "../../interfaces/icompletionsettings.h"
#include "../../interfaces/idocument.h"
#include "../../interfaces/idocumentcontroller.h"
#include "../interfaces/ilanguagesupport.h"
#include "../duchain/duchain.h"
#include "../duchain/duchainlock.h"
#include <debug.h>
#include "widgetcolorizer.h"
#include <ktexteditor_version.h>
#include <KTextEditor/Document>
#include <KTextEditor/View>
#include <KTextEditor/ConfigInterface>
#include <KSyntaxHighlighting/Definition>
#include <KSyntaxHighlighting/Format>
#define ifDebug(x)
namespace KDevelop {
ColorCache* ColorCache::m_self = nullptr;
CodeHighlightingType highlightingTypeFromName(const QString& name)
{
if (name == QLatin1String("Class")) {
return CodeHighlightingType::Class;
} else if (name == QLatin1String("Local Member Variable")) {
return CodeHighlightingType::LocalClassMember;
} else if (name == QLatin1String("Local Member Function")) {
return CodeHighlightingType::LocalMemberFunction;
} else if (name == QLatin1String("Inherited Member Variable")) {
return CodeHighlightingType::InheritedClassMember;
} else if (name == QLatin1String("Inherited Member Function")) {
return CodeHighlightingType::InheritedMemberFunction;
} else if (name == QLatin1String("Function")) {
return CodeHighlightingType::Function;
} else if (name == QLatin1String("Function Argument")) {
return CodeHighlightingType::FunctionVariable;
} else if (name == QLatin1String("Type Alias")) {
return CodeHighlightingType::TypeAlias;
} else if (name == QLatin1String("Forward Declaration")) {
return CodeHighlightingType::ForwardDeclaration;
} else if (name == QLatin1String("Namespace")) {
return CodeHighlightingType::Namespace;
} else if (name == QLatin1String("Local Variable")) {
return CodeHighlightingType::LocalVariable;
} else if (name == QLatin1String("Global Variable")) {
return CodeHighlightingType::GlobalVariable;
} else if (name == QLatin1String("Member Variable")) {
return CodeHighlightingType::MemberVariable;
} else if (name == QLatin1String("Namespace Variable")) {
return CodeHighlightingType::NamespaceVariable;
} else if (name == QLatin1String("Enumeration")) {
return CodeHighlightingType::Enum;
} else if (name == QLatin1String("Enumerator")) {
return CodeHighlightingType::Enumerator;
} else if (name == QLatin1String("Macro")) {
return CodeHighlightingType::Macro;
} else if (name == QLatin1String("Macro Function")) {
return CodeHighlightingType::MacroFunctionLike;
}
return CodeHighlightingType::Error;
}
ColorCache::ColorCache(QObject* parent)
: QObject(parent)
, m_defaultColors(new ConfigurableHighlightingColors)
, m_validColorCount(0)
, m_colorOffset(0)
, m_localColorRatio(0)
, m_globalColorRatio(0)
, m_globalColorSource(ICompletionSettings::GlobalColorSource::AutoGenerated)
, m_boldDeclarations(true)
{
Q_ASSERT(m_self == nullptr);
updateColorsFromScheme(); // default / fallback
updateColorsFromSettings();
connect(ICore::self()->languageController()->completionSettings(), &ICompletionSettings::settingsChanged,
this, &ColorCache::updateColorsFromSettings, Qt::QueuedConnection);
connect(ICore::self()->documentController(), &IDocumentController::documentActivated,
this, &ColorCache::slotDocumentActivated);
bool hadDoc = tryActiveDocument();
updateInternal();
m_self = this;
if (!hadDoc) {
// try to update later on again
QMetaObject::invokeMethod(this, "tryActiveDocument", Qt::QueuedConnection);
}
}
bool ColorCache::tryActiveDocument()
{
KTextEditor::View* view = ICore::self()->documentController()->activeTextDocumentView();
if (view) {
updateColorsFromView(view);
return true;
}
return false;
}
ColorCache::~ColorCache()
{
m_self = nullptr;
delete m_defaultColors;
m_defaultColors = nullptr;
}
ColorCache* ColorCache::self()
{
if (!m_self) {
m_self = new ColorCache;
}
return m_self;
}
void ColorCache::generateColors()
{
// Primary colors taken from: http://colorbrewer2.org/?type=qualitative&scheme=Paired&n=12
const QColor colors[] = {
{"#b15928"}, {"#ff7f00"}, {"#b2df8a"}, {"#33a02c"}, {"#a6cee3"},
{"#1f78b4"}, {"#6a3d9a"}, {"#cab2d6"}, {"#e31a1c"}, {"#fb9a99"}
};
const int colorCount = std::extent<decltype(colors)>::value;
// Supplementary colors generated by: http://tools.medialab.sciences-po.fr/iwanthue/
const QColor supplementaryColors[] = {
{"#D33B67"}, {"#5EC764"}, {"#6CC82D"}, {"#995729"}, {"#FB4D84"},
{"#4B8828"}, {"#D847D0"}, {"#B56AC5"}, {"#E96F0C"}, {"#DC7161"},
{"#4D7279"}, {"#01AAF1"}, {"#D2A237"}, {"#F08CA5"}, {"#C83E93"},
{"#5D7DF7"}, {"#EFBB51"}, {"#108BBB"}, {"#5C84B8"}, {"#02F8BC"},
{"#A5A9F7"}, {"#F28E64"}, {"#A461E6"}, {"#6372D3"}
};
const int supplementaryColorCount = std::extent<decltype(supplementaryColors)>::value;
m_colors.clear();
m_colors.reserve(colorCount + supplementaryColorCount);
for (const auto& color: colors) {
m_colors.append(blendLocalColor(color));
}
m_primaryColorCount = m_colors.count();
for (const auto& color: supplementaryColors) {
m_colors.append(blendLocalColor(color));
}
m_validColorCount = m_colors.count();
}
void ColorCache::slotDocumentActivated()
{
KTextEditor::View* view = ICore::self()->documentController()->activeTextDocumentView();
ifDebug(qCDebug(LANGUAGE) << "doc activated:" << doc; )
if (view) {
updateColorsFromView(view);
}
}
void ColorCache::slotViewSettingsChanged()
{
auto* view = qobject_cast<KTextEditor::View*>(sender());
Q_ASSERT(view);
ifDebug(qCDebug(LANGUAGE) << "settings changed" << view; )
updateColorsFromView(view);
}
void ColorCache::updateColorsFromView(KTextEditor::View* view)
{
if (!view) {
// yeah, the HighlightInterface methods returning an Attribute
// require a View... kill me for that mess
return;
}
QColor foreground(QColor::Invalid);
QColor background(QColor::Invalid);
KTextEditor::Attribute::Ptr style = view->defaultStyleAttribute(KTextEditor::dsNormal);
foreground = style->foreground().color();
if (style->hasProperty(QTextFormat::BackgroundBrush)) {
background = style->background().color();
}
// FIXME: this is in kateview
// qCDebug(LANGUAGE) << "got foreground:" << foreground.name() << "old is:" << m_foregroundColor.name();
//NOTE: this slot is defined in KatePart > 4.4, see ApiDocs of the ConfigInterface
// the signal is not defined in ConfigInterface, but according to the docs it should be
// can't use new signal slot syntax here, since ConfigInterface is not a QObject
if (KTextEditor::View* view = m_view.data()) {
Q_ASSERT(qobject_cast<KTextEditor::ConfigInterface*>(view));
// we only listen to a single view, i.e. the active one
#if KTEXTEDITOR_VERSION >= QT_VERSION_CHECK(5, 79, 0)
disconnect(view, &KTextEditor::View::configChanged, this, &ColorCache::slotViewSettingsChanged);
#else
disconnect(view, SIGNAL(configChanged()), this, SLOT(slotViewSettingsChanged()));
#endif
}
Q_ASSERT(qobject_cast<KTextEditor::ConfigInterface*>(view));
#if KTEXTEDITOR_VERSION >= QT_VERSION_CHECK(5, 79, 0)
connect(view, &KTextEditor::View::configChanged, this, &ColorCache::slotViewSettingsChanged);
#else
connect(view, SIGNAL(configChanged()), this, SLOT(slotViewSettingsChanged()));
#endif
m_view = view;
bool anyAttrChanged = false;
if (!foreground.isValid()) {
// fallback to colorscheme variant
ifDebug(qCDebug(LANGUAGE) << "updating from scheme"; )
updateColorsFromScheme();
} else if (m_foregroundColor != foreground || m_backgroundColor != background) {
m_foregroundColor = foreground;
m_backgroundColor = background;
m_defaultColors->reset(this, view);
anyAttrChanged = true;
}
anyAttrChanged |= updateColorsFromTheme(view->theme());
if (anyAttrChanged) {
ifDebug(qCDebug(LANGUAGE) << "updating from document"; )
update();
}
}
bool ColorCache::updateColorsFromTheme(const KSyntaxHighlighting::Theme& theme)
{
if (m_globalColorSource != ICompletionSettings::GlobalColorSource::FromTheme)
return false;
// from ktexteditor/src/syntax/kateextendedattribute.h
static const int SelectedBackground = QTextFormat::UserProperty + 2;
const auto schemeDefinition = m_schemeRepo.definitionForName(QStringLiteral("Semantic Colors"));
const auto formats = schemeDefinition.formats();
bool anyAttrChanged = false;
for (const auto& format : formats) {
const auto type = highlightingTypeFromName(format.name());
if (type == CodeHighlightingType::Error) {
continue;
}
const auto attr = m_defaultColors->attribute(type);
Q_ASSERT(attr);
auto forwardProperty = [&](auto formatGetter, auto attrProperty, auto attrSetter) {
auto formatProperty = (format.*formatGetter)(theme);
if (attrProperty != formatProperty) {
(attr.data()->*attrSetter)(formatProperty);
anyAttrChanged = true;
}
};
using namespace KSyntaxHighlighting;
using namespace KTextEditor;
forwardProperty(&Format::isBold, attr->fontBold(), &Attribute::setFontBold);
forwardProperty(&Format::isItalic, attr->fontItalic(), &Attribute::setFontItalic);
forwardProperty(&Format::isUnderline, attr->fontUnderline(), &Attribute::setFontUnderline);
forwardProperty(&Format::isStrikeThrough, attr->fontStrikeOut(), &Attribute::setFontStrikeOut);
forwardProperty(&Format::textColor, attr->foreground().color(), &Attribute::setForeground);
forwardProperty(&Format::selectedTextColor, attr->selectedForeground().color(),
&Attribute::setSelectedForeground);
if (format.hasBackgroundColor(theme)) {
forwardProperty(&Format::backgroundColor, attr->background().color(), &Attribute::setBackground);
} else if (type == CodeHighlightingType::HighlightUses) {
auto background = QColor::fromRgb(theme.editorColor(KSyntaxHighlighting::Theme::SearchHighlight));
if (attr->background().color() != background) {
attr->setBackground(background);
anyAttrChanged = true;
}
} else if (attr->background() != QBrush()) {
attr->setBackground(QBrush());
anyAttrChanged = true;
}
// from KSyntaxHighlighting::Format::isDefaultTextStyle
if (format.selectedBackgroundColor(theme).rgba() != theme.selectedBackgroundColor(KSyntaxHighlighting::Theme::Normal)) {
forwardProperty(&Format::selectedBackgroundColor, attr->selectedBackground().color(),
&Attribute::setSelectedBackground);
} else if (attr->hasProperty(SelectedBackground)) {
attr->clearProperty(SelectedBackground);
anyAttrChanged = true;
}
}
return anyAttrChanged;
}
void ColorCache::updateColorsFromScheme()
{
KColorScheme scheme(QPalette::Normal, KColorScheme::View);
QColor foreground = scheme.foreground(KColorScheme::NormalText).color();
QColor background = scheme.background(KColorScheme::NormalBackground).color();
if (foreground != m_foregroundColor || background != m_backgroundColor) {
m_foregroundColor = foreground;
m_backgroundColor = background;
update();
}
}
void ColorCache::updateColorsFromSettings()
{
auto settings = ICore::self()->languageController()->completionSettings();
const auto globalColorSource = settings->globalColorSource();
const auto globalColorSourceChanged = globalColorSource != m_globalColorSource;
m_globalColorSource = globalColorSource;
const auto globalRatio = settings->globalColorizationLevel();
const auto globalRatioChanged = globalRatio != m_globalColorRatio;
m_globalColorRatio = globalRatio;
const auto localRatio = settings->localColorizationLevel();
const auto localRatioChanged = localRatio != m_localColorRatio;
m_localColorRatio = localRatio;
const auto boldDeclartions = settings->boldDeclarations();
const auto boldDeclarationsChanged = boldDeclartions != m_boldDeclarations;
m_boldDeclarations = boldDeclartions;
if (m_view && (globalRatioChanged || globalColorSourceChanged)) {
updateDefaultColorsFromSource();
}
if (globalColorSourceChanged || globalRatioChanged || localRatioChanged || boldDeclarationsChanged) {
update();
}
}
void ColorCache::updateDefaultColorsFromSource()
{
switch (m_globalColorSource) {
case ICompletionSettings::GlobalColorSource::AutoGenerated:
m_defaultColors->reset(this, m_view.data());
break;
case ICompletionSettings::GlobalColorSource::FromTheme:
updateColorsFromTheme(m_view->theme());
break;
}
}
void ColorCache::update()
{
if (!m_self) {
ifDebug(qCDebug(LANGUAGE) << "not updating - still initializating"; )
// don't update on startup, updateInternal is called directly there
return;
}
QMetaObject::invokeMethod(this, "updateInternal", Qt::QueuedConnection);
}
void ColorCache::updateInternal()
{
ifDebug(qCDebug(LANGUAGE) << "update internal" << m_self; )
generateColors();
if (!m_self) {
// don't do anything else fancy on startup
return;
}
emit colorsGotChanged();
// rehighlight open documents
if (!ICore::self() || ICore::self()->shuttingDown()) {
return;
}
const auto documents = ICore::self()->documentController()->openDocuments();
for (IDocument* doc : documents) {
const auto languages = ICore::self()->languageController()->languagesForUrl(doc->url());
for (const auto lang : languages) {
ReferencedTopDUContext top;
{
DUChainReadLocker lock;
top = lang->standardContext(doc->url());
}
if (top) {
if (ICodeHighlighting* highlighting = lang->codeHighlighting()) {
highlighting->highlightDUChain(top);
}
}
}
}
}
QColor ColorCache::blend(QColor color, uchar ratio) const
{
Q_ASSERT(m_backgroundColor.isValid());
Q_ASSERT(m_foregroundColor.isValid());
return WidgetColorizer::blendForeground(color, float( ratio ) / float( 0xff ), m_foregroundColor,
m_backgroundColor);
}
QColor ColorCache::blendBackground(QColor color, uchar ratio) const
{
return WidgetColorizer::blendBackground(color, float( ratio ) / float( 0xff ), m_foregroundColor,
m_backgroundColor);
}
QColor ColorCache::blendGlobalColor(QColor color) const
{
return blend(color, m_globalColorRatio);
}
QColor ColorCache::blendLocalColor(QColor color) const
{
return blend(color, m_localColorRatio);
}
ConfigurableHighlightingColors* ColorCache::defaultColors() const
{
return m_defaultColors;
}
QColor ColorCache::generatedColor(uint num) const
{
return num > ( uint )m_colors.size() ? foregroundColor() : m_colors[num];
}
uint ColorCache::validColorCount() const
{
return m_validColorCount;
}
uint ColorCache::primaryColorCount() const
{
return m_primaryColorCount;
}
QColor ColorCache::foregroundColor() const
{
return m_foregroundColor;
}
}
|