mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 01:43:24 +00:00

...and to GimpProcedureDialog. Also resolves #25 by adding the missing PDB parameters to the GUI. Note that there are a few remaining tasks: * The config values are being copied to mapvals. Eventually the rest of the code needs to be updated to directly use the config. * The material tab uses icons from the Lighting plug-in. They didn't show up before the port; this needs to be fixed. * The drawable buttons are huge compared to the original plug-in. The styling needs to be looked at.
16 lines
422 B
C
16 lines
422 B
C
#ifndef __MAPOBJECT_UI_H__
|
|
#define __MAPOBJECT_UI_H__
|
|
|
|
/* Externally visible variables */
|
|
/* ============================ */
|
|
|
|
extern GtkWidget *previewarea;
|
|
|
|
/* Externally visible functions */
|
|
/* ============================ */
|
|
|
|
gboolean main_dialog (GimpProcedure *procedure,
|
|
GimpProcedureConfig *config,
|
|
GimpDrawable *drawable);
|
|
|
|
#endif /* __MAPOBJECT_UI_H__ */
|