File: color_utils.hpp

package info (click to toggle)
qt-color-widgets 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,088 kB
  • sloc: cpp: 7,426; sh: 236; makefile: 14
file content (69 lines) | stat: -rw-r--r-- 1,685 bytes parent folder | download
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
/*
 * SPDX-FileCopyrightText: 2013-2020 Mattia Basaglia
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */

#ifndef COLOR_UTILS_HPP
#define COLOR_UTILS_HPP

#include <QColor>
#include <QPoint>
#include <qmath.h>

#include "QtColorWidgets/colorwidgets_global.hpp"
#include "QtColorWidgets/qt_compatibility.hpp"

namespace color_widgets {

    namespace utils {


QCP_EXPORT inline qreal color_chromaF(const QColor& c)
{
    qreal max = qMax(c.redF(), qMax(c.greenF(), c.blueF()));
    qreal min = qMin(c.redF(), qMin(c.greenF(), c.blueF()));
    return max - min;
}

QCP_EXPORT inline qreal color_lumaF(const QColor& c)
{
    return 0.30 * c.redF() + 0.59 * c.greenF() + 0.11 * c.blueF();
}

QCP_EXPORT QColor color_from_lch(qt_color_type hue, qt_color_type chroma, qt_color_type luma, qt_color_type alpha = 1 );

QCP_EXPORT inline QColor rainbow_lch(qreal hue)
{
    return color_from_lch(hue,1,0.5);
}

QCP_EXPORT inline QColor rainbow_hsv(qreal hue)
{
    return QColor::fromHsvF(hue,1,1);
}

QCP_EXPORT inline qreal color_lightnessF(const QColor& c)
{
    return ( qMax(c.redF(),qMax(c.greenF(),c.blueF())) +
             qMin(c.redF(),qMin(c.greenF(),c.blueF())) ) / 2;
}

QCP_EXPORT inline qreal color_HSL_saturationF(const QColor& col)
{
    qreal c = color_chromaF(col);
    qreal l = color_lightnessF(col);
    if ( qFuzzyCompare(l+1,1) || qFuzzyCompare(l+1,2) )
        return 0;
    return c / (1-qAbs(2*l-1));
}


QCP_EXPORT QColor color_from_hsl(qt_color_type hue, qt_color_type sat, qt_color_type lig, qt_color_type alpha = 1 );

QCP_EXPORT QColor get_screen_color(const QPoint &global_pos);

} // namespace utils
} // namespace color_widgets

#endif // COLOR_UTILS_HPP