2003-11-22 05:27:10 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpcolordisplaystack.h
|
|
|
|
* Copyright (C) 2003 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2003-11-23 21:28:15 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-11-22 05:27:10 +08:00
|
|
|
*
|
2003-11-23 21:28:15 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2003-11-22 05:27:10 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-11-23 21:28:15 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-11-22 05:27:10 +08:00
|
|
|
*
|
2003-11-23 21:28:15 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2003-11-22 05:27:10 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2003-11-22 05:27:10 +08:00
|
|
|
#ifndef __GIMP_COLOR_DISPLAY_STACK_H__
|
|
|
|
#define __GIMP_COLOR_DISPLAY_STACK_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/* For information look at the html documentation */
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_COLOR_DISPLAY_STACK (gimp_color_display_stack_get_type ())
|
|
|
|
#define GIMP_COLOR_DISPLAY_STACK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_COLOR_DISPLAY_STACK, GimpColorDisplayStack))
|
|
|
|
#define GIMP_COLOR_DISPLAY_STACK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_COLOR_DISPLAY_STACK, GimpColorDisplayStackClass))
|
|
|
|
#define GIMP_IS_COLOR_DISPLAY_STACK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_COLOR_DISPLAY_STACK))
|
|
|
|
#define GIMP_IS_COLOR_DISPLAY_STACK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_COLOR_DISPLAY_STACK))
|
|
|
|
#define GIMP_COLOR_DISPLAY_STACK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_COLOR_DISPLAY_STACK, GimpColorDisplayStackClass))
|
|
|
|
|
|
|
|
|
2018-05-03 18:51:36 +08:00
|
|
|
typedef struct _GimpColorDisplayStackPrivate GimpColorDisplayStackPrivate;
|
|
|
|
typedef struct _GimpColorDisplayStackClass GimpColorDisplayStackClass;
|
2003-11-22 05:27:10 +08:00
|
|
|
|
|
|
|
struct _GimpColorDisplayStack
|
|
|
|
{
|
2018-05-03 18:51:36 +08:00
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
GimpColorDisplayStackPrivate *priv;
|
2003-11-22 05:27:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpColorDisplayStackClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
2003-11-22 23:54:12 +08:00
|
|
|
void (* changed) (GimpColorDisplayStack *stack);
|
|
|
|
|
|
|
|
void (* added) (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display,
|
|
|
|
gint position);
|
|
|
|
void (* removed) (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display);
|
|
|
|
void (* reordered) (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display,
|
|
|
|
gint position);
|
2004-01-29 08:21:33 +08:00
|
|
|
|
|
|
|
/* Padding for future expansion */
|
|
|
|
void (* _gimp_reserved1) (void);
|
|
|
|
void (* _gimp_reserved2) (void);
|
|
|
|
void (* _gimp_reserved3) (void);
|
|
|
|
void (* _gimp_reserved4) (void);
|
2018-05-03 18:51:36 +08:00
|
|
|
void (* _gimp_reserved5) (void);
|
|
|
|
void (* _gimp_reserved6) (void);
|
|
|
|
void (* _gimp_reserved7) (void);
|
|
|
|
void (* _gimp_reserved8) (void);
|
2003-11-22 05:27:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_color_display_stack_get_type (void) G_GNUC_CONST;
|
|
|
|
GimpColorDisplayStack * gimp_color_display_stack_new (void);
|
2003-11-22 06:52:36 +08:00
|
|
|
GimpColorDisplayStack * gimp_color_display_stack_clone (GimpColorDisplayStack *stack);
|
2003-11-22 05:27:10 +08:00
|
|
|
|
2011-01-01 02:11:27 +08:00
|
|
|
void gimp_color_display_stack_changed (GimpColorDisplayStack *stack);
|
|
|
|
|
|
|
|
GList * gimp_color_display_stack_get_filters (GimpColorDisplayStack *stack);
|
|
|
|
|
|
|
|
void gimp_color_display_stack_add (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display);
|
|
|
|
void gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display);
|
|
|
|
void gimp_color_display_stack_reorder_up (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display);
|
|
|
|
void gimp_color_display_stack_reorder_down (GimpColorDisplayStack *stack,
|
|
|
|
GimpColorDisplay *display);
|
|
|
|
void gimp_color_display_stack_convert_buffer (GimpColorDisplayStack *stack,
|
|
|
|
GeglBuffer *buffer,
|
|
|
|
GeglRectangle *area);
|
2018-04-29 03:16:20 +08:00
|
|
|
|
2003-11-22 05:27:10 +08:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_COLOR_DISPLAY_STACK_H__ */
|