summaryrefslogtreecommitdiffstats
path: root/chalk/chalkcolor/kis_profile.h
blob: e17c36f890df39cc71b13852e3793813c07b48b3 (plain)
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
/*
 *  kis_profile.h - part of Krayon
 *
 *  Copyright (c) 2000 Matthias Elter  <elter@kde.org>
 *                2004 Boudewijn Rempt <boud@valdyas.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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.
 */

#ifndef KIS_PROFILE_H
#define KIS_PROFILE_H

#include <config.h>

#include LCMS_HEADER

#include <tqvaluevector.h>
#include <tqcstring.h>

#include <tdeio/job.h>

#include <kis_annotation.h>

//XXX: Profiles should be loaded by the color strategies
//     and be available only through the color strategy
//     that matches the profile's color model
class KisProfile {

public:
    KisProfile(TQByteArray rawData);
    KisProfile(const TQString& file);
    KisProfile(const cmsHPROFILE profile);

    virtual ~KisProfile();

    virtual bool load();
    virtual bool save();

    inline icColorSpaceSignature colorSpaceSignature() const { return m_colorSpaceSignature; }
    inline icProfileClassSignature deviceClass() const { return m_deviceClass; }
    inline TQString productName() const { return m_productName; }
    inline TQString productDescription() const { return m_productDescription; }
    inline TQString productInfo() const { return m_productInfo; }
    inline TQString manufacturer() const { return m_manufacturer; }
    cmsHPROFILE profile();

    KisAnnotationSP annotation() const;

    friend inline bool operator==( const KisProfile &,  const KisProfile & );

    inline bool valid() const { return m_valid; };
    
    inline bool isSuitableForOutput() { return m_suitableForOutput; };

    inline TQString filename() const { return m_filename; }

public:

    static KisProfile *  getScreenProfile(int screen = -1);

private:
    bool init();

    cmsHPROFILE m_profile;
    icColorSpaceSignature m_colorSpaceSignature;
    icProfileClassSignature m_deviceClass;
    TQString m_productName;
    TQString m_productDescription;
    TQString m_productInfo;
    TQString m_manufacturer;

    TQByteArray m_rawData;

    TQString m_filename;
    bool m_valid;
    bool m_suitableForOutput;

};

inline bool operator==( const KisProfile & p1,  const KisProfile & p2 )
{
    return p1.m_profile == p2.m_profile;
}

#endif // KIS_PROFILE_H