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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_COLOR_PROFILE_H
#define SEEN_COLOR_PROFILE_H
#ifdef HAVE_CONFIG_H
# include "config.h" // only include where actually required!
#endif
#include <set>
#include <vector>
#include <glibmm/ustring.h>
#include "cms-color-types.h"
#include "sp-object.h"
struct SPColor;
namespace Inkscape {
enum {
RENDERING_INTENT_UNKNOWN = 0,
RENDERING_INTENT_AUTO = 1,
RENDERING_INTENT_PERCEPTUAL = 2,
RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3,
RENDERING_INTENT_SATURATION = 4,
RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5
};
class ColorProfileImpl;
/**
* Color Profile.
*/
class ColorProfile : public SPObject {
public:
ColorProfile();
~ColorProfile() override;
bool operator<(ColorProfile const &other) const;
friend cmsHPROFILE colorprofile_get_handle( SPDocument*, unsigned int*, char const* );
friend class CMSSystem;
class FilePlusHome {
public:
FilePlusHome(Glib::ustring filename, bool isInHome);
FilePlusHome(const FilePlusHome &filePlusHome);
bool operator<(FilePlusHome const &other) const;
Glib::ustring filename;
bool isInHome;
};
class FilePlusHomeAndName: public FilePlusHome {
public:
FilePlusHomeAndName(FilePlusHome filePlusHome, Glib::ustring name);
bool operator<(FilePlusHomeAndName const &other) const;
Glib::ustring name;
};
static std::set<FilePlusHome> getBaseProfileDirs();
static std::set<FilePlusHome> getProfileFiles();
static std::set<FilePlusHomeAndName> getProfileFilesWithNames();
//icColorSpaceSignature getColorSpace() const;
ColorSpaceSig getColorSpace() const;
//icProfileClassSignature getProfileClass() const;
ColorProfileClassSig getProfileClass() const;
cmsHTRANSFORM getTransfToSRGB8();
cmsHTRANSFORM getTransfFromSRGB8();
cmsHTRANSFORM getTransfGamutCheck();
bool GamutCheck(SPColor color);
char* href;
char* local;
char* name;
char* intentStr;
unsigned int rendering_intent; // FIXME: type the enum and hold that instead
protected:
ColorProfileImpl *impl;
void build(SPDocument* doc, Inkscape::XML::Node* repr) override;
void release() override;
void set(SPAttr key, char const* value) override;
Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags) override;
};
} // namespace Inkscape
MAKE_SP_OBJECT_TYPECHECK_FUNCTIONS(IS_COLORPROFILE, Inkscape::ColorProfile)
#endif // !SEEN_COLOR_PROFILE_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|