-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqcolormap.h
51 lines (34 loc) · 998 Bytes
/
qcolormap.h
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QCOLORMAP_H
#define QCOLORMAP_H
#include <QtWidgets/qtwidgetsglobal.h>
#include <QtGui/qrgb.h>
#include <QtGui/qwindowdefs.h>
#include <QtCore/qatomic.h>
#include <QtCore/qlist.h>
QT_BEGIN_NAMESPACE
class QColor;
class QColormapPrivate;
class Q_WIDGETS_EXPORT QColormap
{
public:
enum Mode { Direct, Indexed, Gray };
static void initialize();
static void cleanup();
static QColormap instance(int screen = -1);
QColormap(const QColormap &colormap);
~QColormap();
QColormap &operator=(const QColormap &colormap);
Mode mode() const;
int depth() const;
int size() const;
uint pixel(const QColor &color) const;
const QColor colorAt(uint pixel) const;
const QList<QColor> colormap() const;
private:
QColormap();
QColormapPrivate *d;
};
QT_END_NAMESPACE
#endif // QCOLORMAP_H