gui_shadow_box_proc - Man Page
Hooks to customise the look and feel of Allegro dialogs.
Synopsis
#include <allegro.h>
extern int (*gui_shadow_box_proc)(int msg, struct DIALOG *d, int c);
extern int (*gui_ctext_proc)(int msg, struct DIALOG *d, int c);
extern int (*gui_button_proc)(int msg, struct DIALOG *d, int c);
extern int (*gui_edit_proc)(int msg, struct DIALOG *d, int c);
extern int (*gui_list_proc)(int msg, struct DIALOG *d, int c);
extern int (*gui_text_list_proc)(int msg, struct DIALOG *d, int c);
Description
If set, these functions will be used by the standard Allegro dialogs. This allows you to customise the look and feel, much like gui_fg_color and gui_bg_color, but much more flexibly.
See Also
alert(3), alert3(3), file_select_ex(3), gfx_mode_select(3), gui_fg_color(3)
Referenced By
The man pages gui_button_proc(3), gui_ctext_proc(3), gui_edit_proc(3), gui_list_proc(3) and gui_text_list_proc(3) are aliases of gui_shadow_box_proc(3).