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

« back to all changes in this revision

Viewing changes to libgimpwidgets/gimpcolordisplaystack.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
/* LIBGIMP - The GIMP Library
 
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
 
3
 *
 
4
 * gimpcolordisplaystack.h
 
5
 * Copyright (C) 2003 Michael Natterer <mitch@gimp.org>
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Lesser General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Lesser General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef __GIMP_COLOR_DISPLAY_STACK_H__
 
24
#define __GIMP_COLOR_DISPLAY_STACK_H__
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
/* For information look at the html documentation */
 
29
 
 
30
 
 
31
#define GIMP_TYPE_COLOR_DISPLAY_STACK            (gimp_color_display_stack_get_type ())
 
32
#define GIMP_COLOR_DISPLAY_STACK(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_COLOR_DISPLAY_STACK, GimpColorDisplayStack))
 
33
#define GIMP_COLOR_DISPLAY_STACK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_COLOR_DISPLAY_STACK, GimpColorDisplayStackClass))
 
34
#define GIMP_IS_COLOR_DISPLAY_STACK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_COLOR_DISPLAY_STACK))
 
35
#define GIMP_IS_COLOR_DISPLAY_STACK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_COLOR_DISPLAY_STACK))
 
36
#define GIMP_COLOR_DISPLAY_STACK_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_COLOR_DISPLAY_STACK, GimpColorDisplayStackClass))
 
37
 
 
38
 
 
39
typedef struct _GimpColorDisplayStackClass GimpColorDisplayStackClass;
 
40
 
 
41
struct _GimpColorDisplayStack
 
42
{
 
43
  GObject  parent_instance;
 
44
 
 
45
  GList   *filters;
 
46
};
 
47
 
 
48
struct _GimpColorDisplayStackClass
 
49
{
 
50
  GObjectClass  parent_class;
 
51
 
 
52
  void (* changed)   (GimpColorDisplayStack *stack);
 
53
 
 
54
  void (* added)     (GimpColorDisplayStack *stack,
 
55
                      GimpColorDisplay      *display,
 
56
                      gint                   position);
 
57
  void (* removed)   (GimpColorDisplayStack *stack,
 
58
                      GimpColorDisplay      *display);
 
59
  void (* reordered) (GimpColorDisplayStack *stack,
 
60
                      GimpColorDisplay      *display,
 
61
                      gint                   position);
 
62
 
 
63
  /* Padding for future expansion */
 
64
  void (* _gimp_reserved1) (void);
 
65
  void (* _gimp_reserved2) (void);
 
66
  void (* _gimp_reserved3) (void);
 
67
  void (* _gimp_reserved4) (void);
 
68
};
 
69
 
 
70
 
 
71
GType                   gimp_color_display_stack_get_type (void) G_GNUC_CONST;
 
72
GimpColorDisplayStack * gimp_color_display_stack_new      (void);
 
73
GimpColorDisplayStack * gimp_color_display_stack_clone    (GimpColorDisplayStack *stack);
 
74
 
 
75
void   gimp_color_display_stack_changed      (GimpColorDisplayStack *stack);
 
76
 
 
77
void   gimp_color_display_stack_add          (GimpColorDisplayStack *stack,
 
78
                                              GimpColorDisplay      *display);
 
79
void   gimp_color_display_stack_remove       (GimpColorDisplayStack *stack,
 
80
                                              GimpColorDisplay      *display);
 
81
void   gimp_color_display_stack_reorder_up   (GimpColorDisplayStack *stack,
 
82
                                              GimpColorDisplay      *display);
 
83
void   gimp_color_display_stack_reorder_down (GimpColorDisplayStack *stack,
 
84
                                              GimpColorDisplay      *display);
 
85
 
 
86
void   gimp_color_display_stack_convert      (GimpColorDisplayStack *stack,
 
87
                                              guchar                *buf,
 
88
                                              gint                   width,
 
89
                                              gint                   height,
 
90
                                              gint                   bpp,
 
91
                                              gint                   bpl);
 
92
 
 
93
 
 
94
G_END_DECLS
 
95
 
 
96
#endif /* __GIMP_COLOR_DISPLAY_STACK_H__ */