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

« back to all changes in this revision

Viewing changes to libgimp/gimppalette_pdb.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:
19
19
 * Boston, MA 02111-1307, USA.
20
20
 */
21
21
 
22
 
/* NOTE: This file is autogenerated by pdbgen.pl */
 
22
/* NOTE: This file is auto-generated by pdbgen.pl */
23
23
 
24
24
#ifndef __GIMP_PALETTE_PDB_H__
25
25
#define __GIMP_PALETTE_PDB_H__
32
32
gchar*   gimp_palette_new             (const gchar    *name);
33
33
gchar*   gimp_palette_duplicate       (const gchar    *name);
34
34
gchar*   gimp_palette_rename          (const gchar    *name,
35
 
                                       const gchar    *new_name);
 
35
                                       const gchar    *new_name);
36
36
gboolean gimp_palette_delete          (const gchar    *name);
 
37
gboolean gimp_palette_is_editable     (const gchar    *name);
37
38
gboolean gimp_palette_get_info        (const gchar    *name,
38
 
                                       gint           *num_colors);
 
39
                                       gint           *num_colors);
 
40
gint     gimp_palette_get_columns     (const gchar    *name);
 
41
gboolean gimp_palette_set_columns     (const gchar    *name,
 
42
                                       gint            columns);
39
43
gboolean gimp_palette_add_entry       (const gchar    *name,
40
 
                                       const gchar    *entry_name,
41
 
                                       const GimpRGB  *color,
42
 
                                       gint           *entry_num);
 
44
                                       const gchar    *entry_name,
 
45
                                       const GimpRGB  *color,
 
46
                                       gint           *entry_num);
43
47
gboolean gimp_palette_delete_entry    (const gchar    *name,
44
 
                                       gint            entry_num);
 
48
                                       gint            entry_num);
45
49
gboolean gimp_palette_entry_get_color (const gchar    *name,
46
 
                                       gint            entry_num,
47
 
                                       GimpRGB        *color);
 
50
                                       gint            entry_num,
 
51
                                       GimpRGB        *color);
48
52
gboolean gimp_palette_entry_set_color (const gchar    *name,
49
 
                                       gint            entry_num,
50
 
                                       const GimpRGB  *color);
 
53
                                       gint            entry_num,
 
54
                                       const GimpRGB  *color);
51
55
gboolean gimp_palette_entry_get_name  (const gchar    *name,
52
 
                                       gint            entry_num,
53
 
                                       gchar         **entry_name);
 
56
                                       gint            entry_num,
 
57
                                       gchar         **entry_name);
54
58
gboolean gimp_palette_entry_set_name  (const gchar    *name,
55
 
                                       gint            entry_num,
56
 
                                       const gchar    *entry_name);
 
59
                                       gint            entry_num,
 
60
                                       const gchar    *entry_name);
57
61
 
58
62
 
59
63
G_END_DECLS