File: oxygenshadowcache.cpp

package info (click to toggle)
oxygen 4%3A6.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 26,896 kB
  • sloc: cpp: 23,036; python: 39; sh: 14; makefile: 5
file content (476 lines) | stat: -rw-r--r-- 15,346 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
//////////////////////////////////////////////////////////////////////////////
// oxygenshadowcache.cpp
// handles caching of TileSet objects to draw shadows
// -------------------
//
// SPDX-FileCopyrightText: 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
//
// SPDX-License-Identifier: MIT
//////////////////////////////////////////////////////////////////////////////

#include "oxygenshadowcache.h"
#include "oxygenactiveshadowconfiguration.h"
#include "oxygeninactiveshadowconfiguration.h"

#include <KColorUtils>
#include <QPainter>
#include <QTextStream>

namespace Oxygen
{
//* square utility function
static qreal square(qreal x)
{
    return x * x;
}

//* functions used to draw shadows
class Parabolic
{
public:
    //* constructor
    Parabolic(qreal amplitude, qreal width)
        : amplitude_(amplitude)
        , width_(width)
    {
    }

    //* destructor
    virtual ~Parabolic(void)
    {
    }

    //* value
    virtual qreal operator()(qreal x) const
    {
        return qMax(0.0, amplitude_ * (1.0 - square(x / width_)));
    }

private:
    qreal amplitude_;
    qreal width_;
};

//* functions used to draw shadows
class Gaussian
{
public:
    //* constructor
    Gaussian(qreal amplitude, qreal width)
        : amplitude_(amplitude)
        , width_(width)
    {
    }

    //* destructor
    virtual ~Gaussian(void)
    {
    }

    //* value
    virtual qreal operator()(qreal x) const
    {
        return qMax(0.0, amplitude_ * (std::exp(-square(x / width_) - 0.05)));
    }

private:
    qreal amplitude_;
    qreal width_;
};

//_______________________________________________________
ShadowCache::ShadowCache(Helper &helper)
    : _helper(helper)
    , _enabled(true)
    , _activeShadowSize(40)
    , _inactiveShadowSize(40)
{
    setMaxIndex(256);
}

//_______________________________________________________
void ShadowCache::readConfig(void)
{
    if (!_enabled)
        setEnabled(true);

    // shadows
    ActiveShadowConfiguration::self()->load();
    InactiveShadowConfiguration::self()->load();

    // copy sizes to local
    _activeShadowSize = ActiveShadowConfiguration::shadowSize();
    _inactiveShadowSize = InactiveShadowConfiguration::shadowSize();

    // invalidate caches
    invalidateCaches();
}

//_______________________________________________________
void ShadowCache::setAnimationsDuration(int value)
{
    setMaxIndex(qMin(256, int((120 * value) / 1000)));
    invalidateCaches();
}

//_______________________________________________________
bool ShadowCache::isEnabled(QPalette::ColorGroup group) const
{
    if (group == QPalette::Active)
        return ActiveShadowConfiguration::enabled();
    else if (group == QPalette::Inactive)
        return InactiveShadowConfiguration::enabled();
    else
        return false;
}

//_______________________________________________________
void ShadowCache::setShadowSize(QPalette::ColorGroup group, int size)
{
    if (group == QPalette::Active && _activeShadowSize != size) {
        _activeShadowSize = size;
        invalidateCaches();

    } else if (group == QPalette::Inactive && _inactiveShadowSize != size) {
        _inactiveShadowSize = size;
        invalidateCaches();
    }
}

//_______________________________________________________
int ShadowCache::shadowSize(void) const
{
    int activeSize(ActiveShadowConfiguration::enabled() ? _activeShadowSize : 0);
    int inactiveSize(InactiveShadowConfiguration::enabled() ? _inactiveShadowSize : 0);

    // even if shadows are disabled,
    return qMax(activeSize, inactiveSize);
}

//_______________________________________________________
TileSet ShadowCache::tileSet(const Key &key)
{
    // check if tileSet already in cache
    int hash(key.hash());
    if (_enabled) {
        if (TileSet *cachedTileSet = _shadowCache.object(hash)) {
            return *cachedTileSet;
        }
    }

    // create tileSet otherwise
    const qreal size(shadowSize() + overlap);
    TileSet tileSet(pixmap(key), size, size, size, size, size, size, 1, 1);
    _shadowCache.insert(hash, new TileSet(tileSet));

    return tileSet;
}

//_______________________________________________________
TileSet ShadowCache::tileSet(Key key, qreal opacity)
{
    int index(opacity * _maxIndex);
    Q_ASSERT(index <= _maxIndex);

    // construct key
    key.index = index;

    // check if tileSet already in cache
    int hash(key.hash());
    if (_enabled) {
        if (TileSet *cachedTileSet = _animatedShadowCache.object(hash)) {
            return *cachedTileSet;
        }
    }

    // create shadow and tileset otherwise
    const qreal size(shadowSize() + overlap);
    TileSet tileSet(animatedPixmap(key, opacity), size, size, 1, 1);
    _animatedShadowCache.insert(hash, new TileSet(tileSet));
    return tileSet;
}

//_______________________________________________________
QPixmap ShadowCache::animatedPixmap(const Key &key, qreal opacity)
{
    // create shadow and tileset otherwise
    const qreal size(shadowSize() + overlap);

    QPixmap shadow(_helper.highDpiPixmap(size * 2));
    shadow.fill(Qt::transparent);
    QPainter painter(&shadow);
    painter.setRenderHint(QPainter::Antialiasing);

    QPixmap inactiveShadow(pixmap(key, false));
    if (!inactiveShadow.isNull()) {
        QPainter local(&inactiveShadow);
        local.setRenderHint(QPainter::Antialiasing);
        local.setCompositionMode(QPainter::CompositionMode_DestinationIn);
        local.fillRect(inactiveShadow.rect(), QColor(0, 0, 0, 255 * (1.0 - opacity)));
    }

    QPixmap activeShadow(pixmap(key, true));
    if (!activeShadow.isNull()) {
        QPainter local(&activeShadow);
        local.setRenderHint(QPainter::Antialiasing);
        local.setCompositionMode(QPainter::CompositionMode_DestinationIn);
        local.fillRect(activeShadow.rect(), QColor(0, 0, 0, 255 * (opacity)));
    }

    painter.drawPixmap(QPointF(0, 0), inactiveShadow);
    painter.drawPixmap(QPointF(0, 0), activeShadow);
    painter.end();

    return shadow;
}

//_______________________________________________________
QPixmap ShadowCache::pixmap(const Key &key, bool active) const
{
    static const qreal fixedSize = 25.5;
    qreal size(shadowSize());
    qreal shadowSize(0);

    if (active && ActiveShadowConfiguration::enabled())
        shadowSize = _activeShadowSize;
    else if (!active && InactiveShadowConfiguration::enabled())
        shadowSize = _inactiveShadowSize;

    if (!shadowSize)
        return QPixmap();

    // add overlap
    size += overlap;
    shadowSize += overlap;

    QPixmap shadow(_helper.highDpiPixmap(size * 2));
    shadow.fill(Qt::transparent);

    QPainter painter(&shadow);
    painter.setRenderHint(QPainter::Antialiasing);
    painter.setPen(Qt::NoPen);

    // some gradients rendering are different at bottom corners if client has no border
    bool hasBorder(key.hasBorder || key.isShade);

    if (active) {
        {
            // inner (sharp) gradient
            const qreal gradientSize = qMin(shadowSize, (shadowSize + fixedSize) / 2);
            const qreal voffset = qMin(12.0 * (gradientSize * ActiveShadowConfiguration::verticalOffset()) / fixedSize, 4.0);

            QRadialGradient radialGradient = QRadialGradient(size, size + voffset, gradientSize);
            radialGradient.setColorAt(1, Qt::transparent);

            // gaussian shadow is used
            int nPoints((10 * gradientSize) / fixedSize);
            Gaussian f(0.85, 0.17);
            QColor c = ActiveShadowConfiguration::innerColor();
            for (int i = 0; i < nPoints; i++) {
                qreal x = qreal(i) / nPoints;
                c.setAlphaF(f(x));
                radialGradient.setColorAt(x, c);
            }

            painter.setBrush(radialGradient);
            renderGradient(painter, shadow.rect(), radialGradient, hasBorder);
        }

        {
            // outer (spread) gradient
            const qreal gradientSize = shadowSize;
            const qreal voffset = qMin(12.0 * (gradientSize * ActiveShadowConfiguration::verticalOffset()) / fixedSize, 4.0);

            QRadialGradient radialGradient = QRadialGradient(size, size + voffset, gradientSize);
            radialGradient.setColorAt(1, Qt::transparent);

            // gaussian shadow is used
            int nPoints((10 * gradientSize) / fixedSize);
            Gaussian f(0.46, 0.34);
            QColor c = ActiveShadowConfiguration::useOuterColor() ? ActiveShadowConfiguration::outerColor() : ActiveShadowConfiguration::innerColor();
            for (int i = 0; i < nPoints; i++) {
                qreal x = qreal(i) / nPoints;
                c.setAlphaF(f(x));
                radialGradient.setColorAt(x, c);
            }

            painter.setBrush(radialGradient);
            painter.drawRect(shadow.rect());
        }

    } else {
        {
            // inner (sharp gradient)
            const qreal gradientSize = qMin(shadowSize, fixedSize);
            const qreal voffset(0.2);

            QRadialGradient radialGradient = QRadialGradient(size, size + voffset, gradientSize);
            radialGradient.setColorAt(1, Qt::transparent);

            // parabolic shadow is used
            int nPoints((10 * gradientSize) / fixedSize);
            Parabolic f(1.0, 0.22);
            QColor c = InactiveShadowConfiguration::useOuterColor() ? InactiveShadowConfiguration::outerColor() : InactiveShadowConfiguration::innerColor();
            for (int i = 0; i < nPoints; i++) {
                qreal x = qreal(i) / nPoints;
                c.setAlphaF(f(x));
                radialGradient.setColorAt(x, c);
            }

            painter.setBrush(radialGradient);
            renderGradient(painter, shadow.rect(), radialGradient, hasBorder);
        }

        {
            // mid gradient
            const qreal gradientSize = qMin(shadowSize, (shadowSize + 2 * fixedSize) / 3);
            const qreal voffset = qMin(8.0 * (gradientSize * InactiveShadowConfiguration::verticalOffset()) / fixedSize, 4.0);

            // gaussian shadow is used
            QRadialGradient radialGradient = QRadialGradient(size, size + voffset, gradientSize);
            radialGradient.setColorAt(1, Qt::transparent);

            int nPoints((10 * gradientSize) / fixedSize);
            Gaussian f(0.54, 0.21);
            QColor c = InactiveShadowConfiguration::useOuterColor() ? InactiveShadowConfiguration::outerColor() : InactiveShadowConfiguration::innerColor();
            for (int i = 0; i < nPoints; i++) {
                qreal x = qreal(i) / nPoints;
                c.setAlphaF(f(x));
                radialGradient.setColorAt(x, c);
            }

            painter.setBrush(radialGradient);
            painter.drawRect(shadow.rect());
        }

        {
            // outer (spread) gradient
            const qreal gradientSize = shadowSize;
            const qreal voffset = qMin(20.0 * (gradientSize * InactiveShadowConfiguration::verticalOffset()) / fixedSize, 4.0);

            // gaussian shadow is used
            QRadialGradient radialGradient = QRadialGradient(size, size + voffset, gradientSize);
            radialGradient.setColorAt(1, Qt::transparent);

            int nPoints((20 * gradientSize) / fixedSize);
            Gaussian f(0.155, 0.445);
            QColor c = InactiveShadowConfiguration::useOuterColor() ? InactiveShadowConfiguration::outerColor() : InactiveShadowConfiguration::innerColor();
            for (int i = 0; i < nPoints; i++) {
                qreal x = qreal(i) / nPoints;
                c.setAlphaF(f(x));
                radialGradient.setColorAt(x, c);
            }

            painter.setBrush(radialGradient);
            painter.drawRect(shadow.rect());
        }
    }

    // mask
    painter.setCompositionMode(QPainter::CompositionMode_DestinationOut);
    painter.setBrush(Qt::black);
    painter.drawEllipse(QRectF(size - 3, size - 3, 6, 6));

    painter.end();
    return shadow;
}

//_______________________________________________________
void ShadowCache::renderGradient(QPainter &painter, const QRectF &rect, const QRadialGradient &radialGradient, bool hasBorder) const
{
    if (hasBorder) {
        painter.setBrush(radialGradient);
        painter.drawRect(rect);
        return;
    }

    const qreal size(rect.width() / 2.0);
    const qreal hoffset(radialGradient.center().x() - size);
    const qreal voffset(radialGradient.center().y() - size);
    const qreal radius(radialGradient.radius());

    // load gradient stops
    QGradientStops stops(radialGradient.stops());

    // draw ellipse for the upper rect
    {
        QRectF rect(hoffset, voffset, 2 * size - hoffset, size);
        painter.setBrush(radialGradient);
        painter.drawRect(rect);
    }

    // draw square gradients for the lower rect
    {
        // vertical lines
        const QRectF rect(hoffset, size + voffset, 2 * size - hoffset, 4);
        QLinearGradient lg(hoffset, 0.0, 2 * size + hoffset, 0.0);
        for (int i = 0; i < stops.size(); i++) {
            const QColor c(stops[i].second);
            const qreal xx(stops[i].first * radius);
            lg.setColorAt((size - xx) / (2.0 * size), c);
            lg.setColorAt((size + xx) / (2.0 * size), c);
        }

        painter.setBrush(lg);
        painter.drawRect(rect);
    }

    {
        // horizontal line
        const QRectF rect(size - 4 + hoffset, size + voffset, 8, size);
        QLinearGradient lg = QLinearGradient(0, voffset, 0, 2 * size + voffset);
        for (int i = 0; i < stops.size(); i++) {
            const QColor c(stops[i].second);
            const qreal xx(stops[i].first * radius);
            lg.setColorAt((size + xx) / (2.0 * size), c);
        }

        painter.setBrush(lg);
        painter.drawRect(rect);
    }

    {
        // bottom-left corner
        const QRectF rect(hoffset, size + voffset + 4, size - 4, size);
        QRadialGradient radialGradient = QRadialGradient(size + hoffset - 4, size + voffset + 4, radius);
        for (int i = 0; i < stops.size(); i++) {
            QColor c(stops[i].second);
            qreal xx(stops[i].first - 4.0 / radius);
            if (xx < 0) {
                if (i < stops.size() - 1) {
                    const qreal x1(stops[i + 1].first - 4.0 / radius);
                    c = KColorUtils::mix(c, stops[i + 1].second, -xx / (x1 - xx));
                }
                xx = 0;
            }

            radialGradient.setColorAt(xx, c);
        }

        painter.setBrush(radialGradient);
        painter.drawRect(rect);
    }

    {
        // bottom-right corner
        const QRectF rect(size + hoffset + 4, size + voffset + 4, size - 4, size);
        QRadialGradient radialGradient = QRadialGradient(size + hoffset + 4, size + voffset + 4, radius);
        for (int i = 0; i < stops.size(); i++) {
            QColor c(stops[i].second);
            qreal xx(stops[i].first - 4.0 / radius);
            if (xx < 0) {
                if (i < stops.size() - 1) {
                    const qreal x1(stops[i + 1].first - 4.0 / radius);
                    c = KColorUtils::mix(c, stops[i + 1].second, -xx / (x1 - xx));
                }
                xx = 0;
            }

            radialGradient.setColorAt(xx, c);
        }

        painter.setBrush(radialGradient);
        painter.drawRect(rect);
    }
}
}