Rev 5783 | Rev 5813 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
5783 | cbradney | 1 | /* |
2 | For general Scribus (>=1.3.2) copyright and licensing information please refer |
||
3 | to the COPYING file provided with the program. Following this notice may exist |
||
4 | a copyright and/or license notice that predates the release of Scribus 1.3.2 |
||
5 | for which a new license (GPL+exception) is in place. |
||
6 | */ |
||
7 | /*************************************************************************** |
||
8 | * Copyright (C) 2006 by Craig Bradney * |
||
9 | * mrb@scribus.info * |
||
10 | * * |
||
11 | * This program is free software; you can redistribute it and/or modify * |
||
12 | * it under the terms of the GNU General Public License as published by * |
||
13 | * the Free Software Foundation; either version 2 of the License, or * |
||
14 | * (at your option) any later version. * |
||
15 | * * |
||
16 | * This program is distributed in the hope that it will be useful, * |
||
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
19 | * GNU General Public License for more details. * |
||
20 | * * |
||
21 | * You should have received a copy of the GNU General Public License * |
||
22 | * along with this program; if not, write to the * |
||
23 | * Free Software Foundation, Inc., * |
||
24 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
25 | ***************************************************************************/ |
||
26 | |||
27 | #ifndef CMSETTINGS_H |
||
28 | #define CMSETTINGS_H |
||
29 | |||
5788 | jghali | 30 | #include "scconfig.h" |
5783 | cbradney | 31 | #include "scribusapi.h" |
32 | #include <qstring.h> |
||
33 | class ScribusDoc; |
||
34 | |||
5788 | jghali | 35 | #ifdef HAVE_CMS |
36 | #include "lcms.h" |
||
37 | #endif |
||
38 | |||
5783 | cbradney | 39 | class SCRIBUS_API CMSettings |
40 | { |
||
41 | public: |
||
42 | CMSettings(ScribusDoc* doc, const QString& profileName); |
||
43 | ~CMSettings(); |
||
44 | |||
45 | ScribusDoc* doc() const {return m_Doc;} |
||
46 | QString profileName() const {return m_ProfileName;} |
||
47 | |||
5788 | jghali | 48 | bool useColorManagement() const; |
49 | |||
50 | #ifdef HAVE_CMS |
||
51 | cmsHPROFILE monitorProfile() const; |
||
52 | cmsHPROFILE printerProfile() const; |
||
53 | |||
54 | cmsHTRANSFORM rgbColorDisplayTransform() const; // stdTransRGBMonG |
||
55 | cmsHTRANSFORM rgbColorProofingTransform() const; // stdProofG |
||
56 | cmsHTRANSFORM rgbImageDisplayTransform() const; // stdTransImgG |
||
57 | cmsHTRANSFORM rgbImageProofingTransform() const; // stdProofImgG |
||
58 | cmsHTRANSFORM rgbToCymkColorTransform() const; // stdTransCMYKG |
||
59 | cmsHTRANSFORM rgbGamutCheckTransform() const; // stdProofGCG |
||
60 | |||
61 | cmsHTRANSFORM cmykColorDisplayTransform() const; // stdTransCMYKMonG |
||
62 | cmsHTRANSFORM cmykColorProofingTransform() const; // stdProofCMYKG |
||
63 | cmsHTRANSFORM cmykToRgbColorTransform() const; // stdTransRGBG |
||
64 | cmsHTRANSFORM cmykGamutCheckTransform() const; //stdProofCMYKGCG |
||
65 | |||
66 | int colorRenderingIntent() const; |
||
67 | int imageRenderingIntent() const; |
||
68 | |||
69 | bool useBlackPoint() const; |
||
70 | bool doSoftProofing() const; |
||
71 | bool doGamutCheck() const; |
||
72 | #endif |
||
73 | |||
5783 | cbradney | 74 | protected: |
75 | ScribusDoc* m_Doc; |
||
76 | QString m_ProfileName; |
||
77 | |||
78 | }; |
||
79 | |||
80 | #endif |