gimp/app/gimpsetP.h
Lauri Alanko a56f89b812 Added stuff to make gcg by default (for maintainers)
Redid the indexed palette dialog to not crash, to be a bit more
usable, and to be a cleaner module. A first shot at using gcg in
actual practice.. If something is screwed, let me know!
1999-01-07 19:53:05 +00:00

25 lines
410 B
C

#ifndef __GIMPSETP_H__
#define __GIMPSETP_H__
#include "gimpobjectP.h"
#include "gimpset.h"
struct _GimpSet{
GimpObject gobject;
GtkType type;
GSList* list;
GArray* handlers;
gboolean weak;
};
struct _GimpSetClass{
GimpObjectClass parent_class;
};
typedef struct _GimpSetClass GimpSetClass;
#define GIMP_SET_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gimp_set_get_type(), GimpSetClass)
#endif