~ubuntu-branches/ubuntu/hoary/gimp/hoary

« back to all changes in this revision

Viewing changes to app/core/gimppalette.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-04-04 14:51:23 UTC
  • Revision ID: james.westby@ubuntu.com-20050404145123-9py049eeelfymur8
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The GIMP -- an image manipulation program
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 */
 
18
 
 
19
#ifndef __GIMP_PALETTE_H__
 
20
#define __GIMP_PALETTE_H__
 
21
 
 
22
 
 
23
#include "gimpdata.h"
 
24
 
 
25
 
 
26
#define GIMP_PALETTE_FILE_EXTENSION ".gpl"
 
27
 
 
28
 
 
29
#define GIMP_TYPE_PALETTE            (gimp_palette_get_type ())
 
30
#define GIMP_PALETTE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_PALETTE, GimpPalette))
 
31
#define GIMP_PALETTE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_PALETTE, GimpPaletteClass))
 
32
#define GIMP_IS_PALETTE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_PALETTE))
 
33
#define GIMP_IS_PALETTE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_PALETTE))
 
34
#define GIMP_PALETTE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_PALETTE, GimpPaletteClass))
 
35
 
 
36
 
 
37
struct _GimpPaletteEntry
 
38
{
 
39
  GimpRGB  color;
 
40
  gchar   *name;
 
41
 
 
42
  /* EEK */
 
43
  gint     position;
 
44
};
 
45
 
 
46
 
 
47
typedef struct _GimpPaletteClass GimpPaletteClass;
 
48
 
 
49
struct _GimpPalette
 
50
{
 
51
  GimpData  parent_instance;
 
52
 
 
53
  GList    *colors;
 
54
  gint      n_colors;
 
55
 
 
56
  gint      n_columns;
 
57
};
 
58
 
 
59
struct _GimpPaletteClass
 
60
{
 
61
  GimpDataClass  parent_class;
 
62
};
 
63
 
 
64
 
 
65
GType              gimp_palette_get_type       (void) G_GNUC_CONST;
 
66
 
 
67
GimpData         * gimp_palette_new            (const gchar      *name,
 
68
                                                gboolean          stingy_memory_use);
 
69
GimpData         * gimp_palette_get_standard   (void);
 
70
GList            * gimp_palette_load           (const gchar      *filename,
 
71
                                                gboolean          stingy_memory_use,
 
72
                                                GError          **error);
 
73
 
 
74
GimpPaletteEntry * gimp_palette_add_entry      (GimpPalette      *palette,
 
75
                                                const gchar      *name,
 
76
                                                const GimpRGB    *color);
 
77
void               gimp_palette_delete_entry   (GimpPalette      *palette,
 
78
                                                GimpPaletteEntry *entry);
 
79
 
 
80
void               gimp_palette_set_n_columns  (GimpPalette      *palette,
 
81
                                                gint              n_columns);
 
82
gint               gimp_palette_get_n_columns  (GimpPalette      *palette);
 
83
 
 
84
 
 
85
#endif /* __GIMP_PALETTE_H__ */