File: ColorScheme.cpp

package info (click to toggle)
qmlkonsole 25.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,680 kB
  • sloc: cpp: 12,794; xml: 345; makefile: 3; sh: 1
file content (597 lines) | stat: -rw-r--r-- 20,564 bytes parent folder | download | duplicates (2)
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
/*
    This source file is part of Konsole, a terminal emulator.

    SPDX-FileCopyrightText: 2007-2008 Robert Knight <robertknight@gmail.com>

    SPDX-License-Identifier: GPL-2.0-or-later

    This program 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301  USA.
*/

// Own
#include "ColorScheme.h"
#include "tools.h"

// Qt
#include <QBrush>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QRandomGenerator>
#include <QRegularExpression>
#include <QSettings>
#include <QtDebug>

// KDE
// #include <KColorScheme>
// #include <KConfig>
// #include <KLocale>
// #include <KDebug>
// #include <KConfigGroup>
// #include <KStandardDirs>

using namespace Konsole;

constexpr std::array<ColorEntry, TABLE_COLORS> DEFAULT_TABLE =
    // The following are almost IBM standard color codes, with some slight
    // gamma correction for the dim colors to compensate for bright X screens.
    // It contains the 8 ansiterm/xterm colors in 2 intensities.
    {ColorEntry(QColor(0x00, 0x00, 0x00), false),
     ColorEntry(QColor(0xFF, 0xFF, 0xFF), true), // Dfore, Dback
     ColorEntry(QColor(0x00, 0x00, 0x00), false),
     ColorEntry(QColor(0xB2, 0x18, 0x18), false), // Black, Red
     ColorEntry(QColor(0x18, 0xB2, 0x18), false),
     ColorEntry(QColor(0xB2, 0x68, 0x18), false), // Green, Yellow
     ColorEntry(QColor(0x18, 0x18, 0xB2), false),
     ColorEntry(QColor(0xB2, 0x18, 0xB2), false), // Blue, Magenta
     ColorEntry(QColor(0x18, 0xB2, 0xB2), false),
     ColorEntry(QColor(0xB2, 0xB2, 0xB2), false), // Cyan, White
     // intensive
     ColorEntry(QColor(0x00, 0x00, 0x00), false),
     ColorEntry(QColor(0xFF, 0xFF, 0xFF), true),
     ColorEntry(QColor(0x68, 0x68, 0x68), false),
     ColorEntry(QColor(0xFF, 0x54, 0x54), false),
     ColorEntry(QColor(0x54, 0xFF, 0x54), false),
     ColorEntry(QColor(0xFF, 0xFF, 0x54), false),
     ColorEntry(QColor(0x54, 0x54, 0xFF), false),
     ColorEntry(QColor(0xFF, 0x54, 0xFF), false),
     ColorEntry(QColor(0x54, 0xFF, 0xFF), false),
     ColorEntry(QColor(0xFF, 0xFF, 0xFF), false)};

std::array<ColorEntry, TABLE_COLORS> Konsole::defaultColorTable()
{
    return DEFAULT_TABLE;
}

constexpr std::array<QStringView, TABLE_COLORS> COLOR_NAMES = {u"Foreground",
                                                               u"Background",
                                                               u"Color0",
                                                               u"Color1",
                                                               u"Color2",
                                                               u"Color3",
                                                               u"Color4",
                                                               u"Color5",
                                                               u"Color6",
                                                               u"Color7",
                                                               u"ForegroundIntense",
                                                               u"BackgroundIntense",
                                                               u"Color0Intense",
                                                               u"Color1Intense",
                                                               u"Color2Intense",
                                                               u"Color3Intense",
                                                               u"Color4Intense",
                                                               u"Color5Intense",
                                                               u"Color6Intense",
                                                               u"Color7Intense"};

std::array<const char *, TABLE_COLORS> TRANSLATED_COLOR_NAMES = {QT_TR_NOOP("Foreground"),
                                                                 QT_TR_NOOP("Background"),
                                                                 QT_TR_NOOP("Color 1"),
                                                                 QT_TR_NOOP("Color 2"),
                                                                 QT_TR_NOOP("Color 3"),
                                                                 QT_TR_NOOP("Color 4"),
                                                                 QT_TR_NOOP("Color 5"),
                                                                 QT_TR_NOOP("Color 6"),
                                                                 QT_TR_NOOP("Color 7"),
                                                                 QT_TR_NOOP("Color 8"),
                                                                 QT_TR_NOOP("Foreground (Intense)"),
                                                                 QT_TR_NOOP("Background (Intense)"),
                                                                 QT_TR_NOOP("Color 1 (Intense)"),
                                                                 QT_TR_NOOP("Color 2 (Intense)"),
                                                                 QT_TR_NOOP("Color 3 (Intense)"),
                                                                 QT_TR_NOOP("Color 4 (Intense)"),
                                                                 QT_TR_NOOP("Color 5 (Intense)"),
                                                                 QT_TR_NOOP("Color 6 (Intense)"),
                                                                 QT_TR_NOOP("Color 7 (Intense)"),
                                                                 QT_TR_NOOP("Color 8 (Intense)")};

ColorScheme::ColorScheme()
{
    _table = {};
    _randomTable = {};
    _opacity = 1.0;
}

ColorScheme::ColorScheme(const ColorScheme &other)
    : _opacity(other._opacity)
{
    setName(other.name());
    setDescription(other.description());

    _table = other._table;
    _randomTable = other._randomTable;
}
ColorScheme::~ColorScheme()
{
}

void ColorScheme::setDescription(const QString &description)
{
    _description = description;
}
QString ColorScheme::description() const
{
    return _description;
}

void ColorScheme::setName(const QString &name)
{
    _name = name;
}
QString ColorScheme::name() const
{
    return _name;
}

void ColorScheme::setColorTableEntry(int index, const ColorEntry &entry)
{
    Q_ASSERT(index >= 0 && index < TABLE_COLORS);

    if (!_table) {
        _table = std::vector<ColorEntry>(DEFAULT_TABLE.begin(), DEFAULT_TABLE.end());
    }

    // we always have a value set at this point, see above
    _table.value()[index] = entry;
}
ColorEntry ColorScheme::colorEntry(int index, uint randomSeed) const
{
    Q_ASSERT(index >= 0 && index < TABLE_COLORS);

    ColorEntry entry = colorTable()[index];

    if (randomSeed != 0 && _randomTable.has_value() && !_randomTable->data()[index].isNull()) {
        const RandomizationRange &range = _randomTable->data()[index];

        int hueDifference = range.hue ? QRandomGenerator::system()->bounded(range.hue) - range.hue / 2 : 0;
        int saturationDifference = range.saturation ? (QRandomGenerator::system()->bounded(range.saturation)) - range.saturation / 2 : 0;
        int valueDifference = range.value ? (QRandomGenerator::system()->bounded(range.value)) - range.value / 2 : 0;

        QColor &color = entry.color;

        int newHue = qAbs((color.hue() + hueDifference) % MAX_HUE);
        int newValue = qMin(qAbs(color.value() + valueDifference), 255);
        int newSaturation = qMin(qAbs(color.saturation() + saturationDifference), 255);

        color.setHsv(newHue, newSaturation, newValue);
    }

    return entry;
}

std::array<ColorEntry, TABLE_COLORS> ColorScheme::getColorTable(uint randomSeed) const
{
    std::array<ColorEntry, TABLE_COLORS> table;
    for (int i = 0; i < TABLE_COLORS; i++)
        table[i] = colorEntry(i, randomSeed);

    return table;
}

bool ColorScheme::randomizedBackgroundColor() const
{
    return _randomTable.has_value() ? !_randomTable->data()[1].isNull() : false;
}

void ColorScheme::setRandomizedBackgroundColor(bool randomize)
{
    // the hue of the background colour is allowed to be randomly
    // adjusted as much as possible.
    //
    // the value and saturation are left alone to maintain read-ability
    if (randomize) {
        setRandomizationRange(1 /* background color index */, MAX_HUE, 255, 0);
    } else {
        if (_randomTable)
            setRandomizationRange(1 /* background color index */, 0, 0, 0);
    }
}

void ColorScheme::setRandomizationRange(int index, quint16 hue, quint8 saturation, quint8 value)
{
    Q_ASSERT(hue <= MAX_HUE);
    Q_ASSERT(index >= 0 && index < TABLE_COLORS);

    if (!_randomTable)
        _randomTable = std::vector<RandomizationRange>(TABLE_COLORS);

    _randomTable->data()[index].hue = hue;
    _randomTable->data()[index].value = value;
    _randomTable->data()[index].saturation = saturation;
}

const std::span<const ColorEntry> ColorScheme::colorTable() const
{
    if (_table.has_value())
        return *_table;
    else
        return std::span(DEFAULT_TABLE);
}

QColor ColorScheme::foregroundColor() const
{
    return colorTable()[0].color;
}

QColor ColorScheme::backgroundColor() const
{
    return colorTable()[1].color;
}

bool ColorScheme::hasDarkBackground() const
{
    // value can range from 0 - 255, with larger values indicating higher brightness.
    // so 127 is in the middle, anything less is deemed 'dark'
    return backgroundColor().value() < 127;
}
void ColorScheme::setOpacity(qreal opacity)
{
    _opacity = opacity;
}
qreal ColorScheme::opacity() const
{
    return _opacity;
}

void ColorScheme::read(const QString &fileName)
{
    QSettings s(fileName, QSettings::IniFormat);
    s.beginGroup(QLatin1String("General"));

    _description = s.value(QLatin1String("Description"), QObject::tr("Un-named Color Scheme")).toString();
    _opacity = s.value(QLatin1String("Opacity"), qreal(1.0)).toDouble();
    s.endGroup();

    for (int i = 0; i < TABLE_COLORS; i++) {
        readColorEntry(&s, i);
    }
}

QString ColorScheme::colorNameForIndex(int index)
{
    Q_ASSERT(index >= 0 && index < TABLE_COLORS);

    return COLOR_NAMES.at(index).toString();
}
QString ColorScheme::translatedColorNameForIndex(int index)
{
    Q_ASSERT(index >= 0 && index < TABLE_COLORS);

    return QObject::tr(TRANSLATED_COLOR_NAMES.at(index));
}

void ColorScheme::readColorEntry(QSettings *s, int index)
{
    QString colorName = colorNameForIndex(index);

    s->beginGroup(colorName);

    ColorEntry entry;

    QVariant colorValue = s->value(QLatin1String("Color"));
    QString colorStr;
    int r, g, b;
    bool ok = false;
    // XXX: Undocumented(?) QSettings behavior: values with commas are parsed
    // as QStringList and others QString
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
    if (colorValue.type() == QVariant::StringList)
#else
    if (colorValue.metaType().id() == QMetaType::QStringList)
#endif
    {
        QStringList rgbList = colorValue.toStringList();
        colorStr = rgbList.join(QLatin1Char(','));
        if (rgbList.size() == 3) {
            bool parse_ok;

            ok = true;
            r = rgbList[0].toInt(&parse_ok);
            ok = ok && parse_ok && (r >= 0 && r <= 0xff);
            g = rgbList[1].toInt(&parse_ok);
            ok = ok && parse_ok && (g >= 0 && g <= 0xff);
            b = rgbList[2].toInt(&parse_ok);
            ok = ok && parse_ok && (b >= 0 && b <= 0xff);
        }
    } else {
        colorStr = colorValue.toString();
        QRegularExpression hexColorPattern(QLatin1String("^#[0-9a-f]{6}$"), QRegularExpression::CaseInsensitiveOption);
        if (hexColorPattern.match(colorStr).hasMatch()) {
            // Parsing is always ok as already matched by the regexp
            r = QStringView(colorStr).mid(1, 2).toInt(nullptr, 16);
            g = QStringView(colorStr).mid(3, 2).toInt(nullptr, 16);
            b = QStringView(colorStr).mid(5, 2).toInt(nullptr, 16);
            ok = true;
        }
    }
    if (!ok) {
        qWarning().nospace() << "Invalid color value " << colorStr << " for " << colorName << ". Fallback to black.";
        r = g = b = 0;
    }
    entry.color = QColor(r, g, b);

    entry.transparent = s->value(QLatin1String("Transparent"), false).toBool();

    // Deprecated key from KDE 4.0 which set 'Bold' to true to force
    // a color to be bold or false to use the current format
    //
    // TODO - Add a new tri-state key which allows for bold, normal or
    // current format
    if (s->contains(QLatin1String("Bold")))
        entry.fontWeight = s->value(QLatin1String("Bold"), false).toBool() ? ColorEntry::Bold : ColorEntry::UseCurrentFormat;

    quint16 hue = s->value(QLatin1String("MaxRandomHue"), 0).toInt();
    quint8 value = s->value(QLatin1String("MaxRandomValue"), 0).toInt();
    quint8 saturation = s->value(QLatin1String("MaxRandomSaturation"), 0).toInt();

    setColorTableEntry(index, entry);

    if (hue != 0 || value != 0 || saturation != 0)
        setRandomizationRange(index, hue, saturation, value);

    s->endGroup();
}

//
// Work In Progress - A color scheme for use on KDE setups for users
// with visual disabilities which means that they may have trouble
// reading text with the supplied color schemes.
//
// This color scheme uses only the 'safe' colors defined by the
// KColorScheme class.
//
// A complication this introduces is that each color provided by
// KColorScheme is defined as a 'background' or 'foreground' color.
// Only foreground colors are allowed to be used to render text and
// only background colors are allowed to be used for backgrounds.
//
// The ColorEntry and TerminalDisplay classes do not currently
// support this restriction.
//
// Requirements:
//  - A color scheme which uses only colors from the KColorScheme class
//  - Ability to restrict which colors the TerminalDisplay widget
//    uses as foreground and background color
//  - Make use of KGlobalSettings::allowDefaultBackgroundImages() as
//    a hint to determine whether this accessible color scheme should
//    be used by default.
//
//
// -- Robert Knight <robertknight@gmail.com> 21/07/2007
//
AccessibleColorScheme::AccessibleColorScheme()
    : ColorScheme()
{
#if 0
// It's not finished in konsole and it breaks Qt4 compilation as well
    // basic attributes
    setName("accessible");
    setDescription(QObject::tr("Accessible Color Scheme"));

    // setup colors
    const int ColorRoleCount = 8;

    const KColorScheme colorScheme(QPalette::Active);

    QBrush colors[ColorRoleCount] =
    {
        colorScheme.foreground( colorScheme.NormalText ),
        colorScheme.background( colorScheme.NormalBackground ),

        colorScheme.foreground( colorScheme.InactiveText ),
        colorScheme.foreground( colorScheme.ActiveText ),
        colorScheme.foreground( colorScheme.LinkText ),
        colorScheme.foreground( colorScheme.VisitedText ),
        colorScheme.foreground( colorScheme.NegativeText ),
        colorScheme.foreground( colorScheme.NeutralText )
    };

    for ( int i = 0 ; i < TABLE_COLORS ; i++ )
    {
        ColorEntry entry;
        entry.color = colors[ i % ColorRoleCount ].color();

        setColorTableEntry( i , entry );
    }
#endif
}

ColorSchemeManager::ColorSchemeManager()
    : _haveLoadedAll(false)
{
}

ColorSchemeManager::~ColorSchemeManager() = default;

void ColorSchemeManager::loadAllColorSchemes()
{
    // qDebug() << "loadAllColorSchemes";
    int failed = 0;

    QList<QString> nativeColorSchemes = listColorSchemes();
    QListIterator<QString> nativeIter(nativeColorSchemes);
    while (nativeIter.hasNext()) {
        if (!loadColorScheme(nativeIter.next()))
            failed++;
    }

    /*if ( failed > 0 )
        qDebug() << "failed to load " << failed << " color schemes.";*/

    _haveLoadedAll = true;
}
QList<ColorScheme *> ColorSchemeManager::allColorSchemes()
{
    if (!_haveLoadedAll) {
        loadAllColorSchemes();
    }

    QList<ColorScheme *> schemes;
    for (const auto &[k, scheme] : _colorSchemes) {
        schemes.push_back(scheme.get());
    }
    return schemes;
}

#if 0
void ColorSchemeManager::addColorScheme(ColorScheme* scheme)
{
    _colorSchemes.insert(scheme->name(),scheme);

    // save changes to disk
    QString path = KGlobal::dirs()->saveLocation("data","konsole/") + scheme->name() + ".colorscheme";
    KConfig config(path , KConfig::NoGlobals);

    scheme->write(config);
}
#endif

bool ColorSchemeManager::loadCustomColorScheme(const QString &path)
{
    if (path.endsWith(QLatin1String(".colorscheme")))
        return loadColorScheme(path);

    return false;
}

void ColorSchemeManager::addCustomColorSchemeDir(const QString &custom_dir)
{
    add_custom_color_scheme_dir(custom_dir);
}

bool ColorSchemeManager::loadColorScheme(const QString &filePath)
{
    if (!filePath.endsWith(QLatin1String(".colorscheme")) || !QFile::exists(filePath))
        return false;

    QFileInfo info(filePath);

    const QString &schemeName = info.baseName();

    auto scheme = std::make_unique<ColorScheme>();
    scheme->setName(schemeName);
    scheme->read(filePath);

    if (scheme->name().isEmpty()) {
        // qDebug() << "Color scheme in" << filePath << "does not have a valid name and was not loaded.";
        scheme.reset();
        return false;
    }

    if (!_colorSchemes.contains(schemeName)) {
        _colorSchemes.insert_or_assign(schemeName, std::move(scheme));
    } else {
        /*qDebug() << "color scheme with name" << schemeName << "has already been" <<
            "found, ignoring.";*/

        scheme.reset();
    }

    return true;
}
QList<QString> ColorSchemeManager::listColorSchemes()
{
    QList<QString> ret;
    for (const QString &scheme_dir : colorSchemesDirs()) {
        const QString dname(scheme_dir);
        QDir dir(dname);
        QStringList filters;
        filters << QLatin1String("*.colorscheme");
        dir.setNameFilters(filters);
        const QStringList list = dir.entryList(filters);
        for (const QString &i : list)
            ret << dname + QLatin1Char('/') + i;
    }
    return ret;
    //    return KGlobal::dirs()->findAllResources("data",
    //                                             "konsole/*.colorscheme",
    //                                             KStandardDirs::NoDuplicates);
}
const ColorScheme ColorSchemeManager::_defaultColorScheme;
const ColorScheme *ColorSchemeManager::defaultColorScheme() const
{
    return &_defaultColorScheme;
}
bool ColorSchemeManager::deleteColorScheme(const QString &name)
{
    Q_ASSERT(_colorSchemes.contains(name));

    // lookup the path and delete
    QString path = findColorSchemePath(name);
    if (QFile::remove(path)) {
        _colorSchemes.erase(name);
        return true;
    } else {
        // qDebug() << "Failed to remove color scheme -" << path;
        return false;
    }
}
QString ColorSchemeManager::findColorSchemePath(const QString &name) const
{
    //    QString path = KStandardDirs::locate("data","konsole/"+name+".colorscheme");
    const QStringList dirs = colorSchemesDirs();
    if (dirs.isEmpty())
        return QString();

    const QString dir = dirs.first();
    QString path(dir + QLatin1Char('/') + name + QLatin1String(".colorscheme"));
    if (!path.isEmpty())
        return path;

    // path = KStandardDirs::locate("data","konsole/"+name+".schema");
    path = dir + QLatin1Char('/') + name + QLatin1String(".schema");

    return path;
}
const ColorScheme *ColorSchemeManager::findColorScheme(const QString &name)
{
    if (name.isEmpty())
        return defaultColorScheme();

    if (_colorSchemes.contains(name))
        return _colorSchemes[name].get();
    else {
        // look for this color scheme
        QString path = findColorSchemePath(name);
        if (!path.isEmpty() && loadColorScheme(path)) {
            return findColorScheme(name);
        }

        // qDebug() << "Could not find color scheme - " << name;

        return nullptr;
    }
}
Q_GLOBAL_STATIC(ColorSchemeManager, theColorSchemeManager)
ColorSchemeManager *ColorSchemeManager::instance()
{
    return theColorSchemeManager;
}