From 04b80586bb52e02c0d081215d14ef7356b1f5af8 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 23 Mar 2018 02:28:25 +1100 Subject: Completed Input widgets, Dialog routines --- src/c_fl_dialog.h | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'src/c_fl_dialog.h') diff --git a/src/c_fl_dialog.h b/src/c_fl_dialog.h index 6804022..b366d2c 100644 --- a/src/c_fl_dialog.h +++ b/src/c_fl_dialog.h @@ -5,10 +5,25 @@ extern "C" void dialog_fl_alert(const char * m); +//extern "C" int dialog_fl_ask(const char * m); +extern "C" void dialog_fl_beep(int b); extern "C" int dialog_fl_choice(const char * m, const char * a, const char * b, const char * c); -extern "C" char * dialog_fl_file_chooser(const char * m, const char * p, const char * d, int r); extern "C" const char * dialog_fl_input(const char * m, const char * d); extern "C" void dialog_fl_message(const char * m); +extern "C" const char * dialog_fl_password(const char * m, const char * d); + + +extern "C" int dialog_fl_color_chooser(const char * n, double & r, double & g, double & b, int m); +extern "C" char * dialog_fl_dir_chooser(const char * m, const char * d, int r); +extern "C" char * dialog_fl_file_chooser(const char * m, const char * p, const char * d, int r); + + +extern "C" int dialog_fl_get_message_hotspot(void); +extern "C" void dialog_fl_set_message_hotspot(int v); +extern "C" void dialog_fl_message_font(int f, int s); +extern "C" void * dialog_fl_message_icon(void); +extern "C" void dialog_fl_message_title(const char * t); +extern "C" void dialog_fl_message_title_default(const char * t); #endif -- cgit