mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00

...and to GimpProcedureDialog. As with the last few, improvements could be made to the GUI, mneumonics, and global variables used.
23 lines
600 B
C
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__ */
|