gimp/app/gimpsetP.h
Lauri Alanko 6a02cda396 Started gimpset, a generic class for handling collections of
objects. (And to automatically manage their signals, not implemented
yet)

Moved drawable_apply_image to drawable.c

Created a global context object (image_context) to handle the
collection of images that the app manages.
1998-07-01 23:06:49 +00:00

24 lines
391 B
C

#ifndef __GIMPSETP_H__
#define __GIMPSETP_H__
#include "gimpobjectP.h"
#include "gimpset.h"
struct _GimpSet{
GimpObject gobject;
GtkType type;
GSList* list;
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