GIMP Library Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
struct GimpParasite; #define GIMP_PARASITE_PERSISTENT #define GIMP_PARASITE_UNDOABLE #define GIMP_PARASITE_ATTACH_PARENT #define GIMP_PARASITE_PARENT_PERSISTENT #define GIMP_PARASITE_PARENT_UNDOABLE #define GIMP_PARASITE_ATTACH_GRANDPARENT #define GIMP_PARASITE_GRANDPARENT_PERSISTENT #define GIMP_PARASITE_GRANDPARENT_UNDOABLE GimpParasite* gimp_parasite_new (const |
struct GimpParasite { gchar *name; /* The name of the parasite. USE A UNIQUE PREFIX! */ guint32 flags; /* save Parasite in XCF file, etc. */ guint32 size; /* amount of data */ gpointer data; /* a pointer to the data. plugin is * * responsible for tracking byte order */ }; |
#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8) |
#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16) |
#define GIMP_PARASITE_GRANDPARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 16) |
GimpParasite* gimp_parasite_new (const |
|
|
|
GimpParasite* gimp_parasite_find ( |
Finds the named parasite.
Finds and returns the named parasite that was previously attached to the gimp.
|
Add a parasite to the gimp.
This procedure attaches a parasite to the gimp. It has no return values.
|
Removes a parasite from the gimp.
This procedure detaches a parasite from the gimp. It has no return values.
|
List all parasites.
Returns a list of all currently attached parasites.
GimpParasite* gimp_drawable_parasite_find ( |
Finds the named parasite in a drawable
Finds and returns the named parasite that was previously attached to a drawable.
|
Add a parasite to a drawable.
This procedure attaches a parasite to a drawable. It has no return values.
|
Removes a parasite from a drawable.
This procedure detaches a parasite from a drawable. It has no return values.
|
List all parasites.
Returns a list of all currently attached parasites.
GimpParasite* gimp_image_parasite_find ( |
Finds the named parasite in an image
Finds and returns the named parasite that was previously attached to an image.
|
Add a parasite to an image.
This procedure attaches a parasite to an image. It has no return values.
|
Removes a parasite from an image.
This procedure detaches a parasite from an image. It has no return values.
|
List all parasites.
Returns a list of all currently attached parasites.
void gimp_attach_new_parasite (const |
void gimp_drawable_attach_new_parasite ( |
gimp_image_parasite_attach(), gimp_drawable_parasite_attach(), gimp_parasite_attach() and their related functions.