From f28f819c721fa5a317e23b3cc1eefb938115b47a Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 5 Oct 2016 15:44:17 +1100 Subject: Added logo, made find/replace/about windows attention grabbing --- c_fl_window.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'c_fl_window.cpp') diff --git a/c_fl_window.cpp b/c_fl_window.cpp index 9c8dbc6..fbce39b 100644 --- a/c_fl_window.cpp +++ b/c_fl_window.cpp @@ -1,6 +1,7 @@ #include +#include #include "c_fl_window.h" @@ -40,3 +41,18 @@ void fl_window_size_range(WINDOW n, int lw, int lh, int hw, int hh, int dw, int reinterpret_cast(n)->size_range(lw, lh, hw, hh, dw, dh, a); } + +void fl_window_set_icon(WINDOW n, void * img) { + reinterpret_cast(n)->icon(reinterpret_cast(img)); +} + + +void fl_window_set_modal(WINDOW n) { + reinterpret_cast(n)->set_modal(); +} + + +void fl_window_set_non_modal(WINDOW n) { + reinterpret_cast(n)->set_non_modal(); +} + -- cgit