summaryrefslogtreecommitdiff
path: root/libjava/java/awt/color/ICC_ColorSpace.h
blob: 6dd2117912b030be084ce299f9ab89d5a9a33b51 (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
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __java_awt_color_ICC_ColorSpace__
#define __java_awt_color_ICC_ColorSpace__

#pragma interface

#include <java/awt/color/ColorSpace.h>
#include <gcj/array.h>

extern "Java"
{
  namespace gnu
  {
    namespace java
    {
      namespace awt
      {
        namespace color
        {
            class ColorSpaceConverter;
        }
      }
    }
  }
  namespace java
  {
    namespace awt
    {
      namespace color
      {
          class ICC_ColorSpace;
          class ICC_Profile;
      }
    }
  }
}

class java::awt::color::ICC_ColorSpace : public ::java::awt::color::ColorSpace
{

public:
  ICC_ColorSpace(::java::awt::color::ICC_Profile *);
  virtual ::java::awt::color::ICC_Profile * getProfile();
  virtual JArray< jfloat > * toRGB(JArray< jfloat > *);
  virtual JArray< jfloat > * fromRGB(JArray< jfloat > *);
  virtual JArray< jfloat > * toCIEXYZ(JArray< jfloat > *);
  virtual JArray< jfloat > * fromCIEXYZ(JArray< jfloat > *);
  virtual jboolean isCS_sRGB();
  virtual jfloat getMinValue(jint);
  virtual jfloat getMaxValue(jint);
private:
  ::gnu::java::awt::color::ColorSpaceConverter * getConverter(::java::awt::color::ICC_Profile *);
  void makeArrays();
  void readObject(::java::io::ObjectInputStream *);
  static const jlong serialVersionUID = 3455889114070431483LL;
  ::java::awt::color::ICC_Profile * __attribute__((aligned(__alignof__( ::java::awt::color::ColorSpace)))) thisProfile;
  JArray< jfloat > * minVal;
  JArray< jfloat > * maxVal;
  JArray< jfloat > * diffMinMax;
  JArray< jfloat > * invDiffMinMax;
  jboolean needScaleInit;
  jint type;
  jint nComponents;
  ::gnu::java::awt::color::ColorSpaceConverter * converter;
public:
  static ::java::lang::Class class$;
};

#endif // __java_awt_color_ICC_ColorSpace__