gimp/plug-ins/lighting/lighting-ui.h
Alx Sa 5c8aa1f242 plug-ins: port lighting to gimp_image_procedure_new2()
...and to GimpProcedureDialog.
As with the last few, improvements could be made to the GUI, mneumonics,
and global variables used.
2023-10-01 21:02:34 +02:00

23 lines
600 B
C

#ifndef __LIGHTING_UI_H__
#define __LIGHTING_UI_H__
/* Externally visible variables */
/* ============================ */
extern GtkWidget *previewarea;
extern GtkWidget *spin_pos_x;
extern GtkWidget *spin_pos_y;
extern GtkWidget *spin_pos_z;
extern GtkWidget *spin_dir_x;
extern GtkWidget *spin_dir_y;
extern GtkWidget *spin_dir_z;
/* Externally visible functions */
/* ============================ */
gboolean main_dialog (GimpProcedure *procedure,
GimpProcedureConfig *config,
GimpDrawable *drawable);
#endif /* __LIGHTING_UI_H__ */