~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpcolor/gimpcmyk.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
/* For information look into the C source or the html documentation */
27
27
 
28
28
 
29
 
void      gimp_cmyk_set        (GimpCMYK       *cmyk,
30
 
                                gdouble         cyan,
31
 
                                gdouble         magenta,
32
 
                                gdouble         yellow,
33
 
                                gdouble         black);
34
 
void      gimp_cmyk_set_uchar  (GimpCMYK       *cmyk,
35
 
                                guchar          cyan,
36
 
                                guchar          magenta,
37
 
                                guchar          yellow,
38
 
                                guchar          black);
39
 
void      gimp_cmyk_get_uchar  (const GimpCMYK *cmyk,
40
 
                                guchar         *cyan,
41
 
                                guchar         *magenta,
42
 
                                guchar         *yellow,
43
 
                                guchar         *black);
44
 
 
45
 
void      gimp_cmyka_set       (GimpCMYK       *cmyka,
46
 
                                gdouble         cyan,
47
 
                                gdouble         magenta,
48
 
                                gdouble         yellow,
49
 
                                gdouble         black,
50
 
                                gdouble         alpha);
51
 
void      gimp_cmyka_set_uchar (GimpCMYK       *cmyka,
52
 
                                guchar          cyan,
53
 
                                guchar          magenta,
54
 
                                guchar          yellow,
55
 
                                guchar          black,
56
 
                                guchar          alpha);
57
 
void      gimp_cmyka_get_uchar (const GimpCMYK *cmyka,
58
 
                                guchar         *cyan,
59
 
                                guchar         *magenta,
60
 
                                guchar         *yellow,
61
 
                                guchar         *black,
62
 
                                guchar         *alpha);
 
29
/*
 
30
 * GIMP_TYPE_CMYK
 
31
 */
 
32
 
 
33
#define GIMP_TYPE_CMYK       (gimp_cmyk_get_type ())
 
34
 
 
35
GType   gimp_cmyk_get_type   (void) G_GNUC_CONST;
 
36
 
 
37
void    gimp_cmyk_set        (GimpCMYK       *cmyk,
 
38
                              gdouble         cyan,
 
39
                              gdouble         magenta,
 
40
                              gdouble         yellow,
 
41
                              gdouble         black);
 
42
void    gimp_cmyk_set_uchar  (GimpCMYK       *cmyk,
 
43
                              guchar          cyan,
 
44
                              guchar          magenta,
 
45
                              guchar          yellow,
 
46
                              guchar          black);
 
47
void    gimp_cmyk_get_uchar  (const GimpCMYK *cmyk,
 
48
                              guchar         *cyan,
 
49
                              guchar         *magenta,
 
50
                              guchar         *yellow,
 
51
                              guchar         *black);
 
52
 
 
53
void    gimp_cmyka_set       (GimpCMYK       *cmyka,
 
54
                              gdouble         cyan,
 
55
                              gdouble         magenta,
 
56
                              gdouble         yellow,
 
57
                              gdouble         black,
 
58
                              gdouble         alpha);
 
59
void    gimp_cmyka_set_uchar (GimpCMYK       *cmyka,
 
60
                              guchar          cyan,
 
61
                              guchar          magenta,
 
62
                              guchar          yellow,
 
63
                              guchar          black,
 
64
                              guchar          alpha);
 
65
void    gimp_cmyka_get_uchar (const GimpCMYK *cmyka,
 
66
                              guchar         *cyan,
 
67
                              guchar         *magenta,
 
68
                              guchar         *yellow,
 
69
                              guchar         *black,
 
70
                              guchar         *alpha);
63
71
 
64
72
 
65
73
G_END_DECLS