1998-07-02 07:06:49 +08:00
|
|
|
#ifndef __GIMPSETP_H__
|
|
|
|
#define __GIMPSETP_H__
|
|
|
|
|
|
|
|
#include "gimpobjectP.h"
|
|
|
|
#include "gimpset.h"
|
|
|
|
|
|
|
|
struct _GimpSet{
|
|
|
|
GimpObject gobject;
|
|
|
|
GtkType type;
|
|
|
|
GSList* list;
|
1999-01-08 03:53:05 +08:00
|
|
|
GArray* handlers;
|
1998-07-02 07:06:49 +08:00
|
|
|
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
|