From 0d842f0423ba0754fb3675c7468397a8da5f6e1b Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 27 Apr 2017 10:40:48 +1000 Subject: Organising source --- src/c_fl_window.cpp | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/c_fl_window.cpp (limited to 'src/c_fl_window.cpp') diff --git a/src/c_fl_window.cpp b/src/c_fl_window.cpp new file mode 100644 index 0000000..fbce39b --- /dev/null +++ b/src/c_fl_window.cpp @@ -0,0 +1,58 @@ + + +#include +#include +#include "c_fl_window.h" + + +WINDOW new_fl_window(int x, int y, int w, int h, char* label) { + Fl_Window *n = new Fl_Window(x, y, w, h, label); + return n; +} + + +WINDOW new_fl_window2(int w, int h) { + Fl_Window *n = new Fl_Window(w, h); + return n; +} + + +void free_fl_window(WINDOW n) { + delete reinterpret_cast(n); +} + + +void fl_window_show(WINDOW n) { + reinterpret_cast(n)->show(); +} + + +void fl_window_hide(WINDOW n) { + reinterpret_cast(n)->hide(); +} + + +void fl_window_set_label(WINDOW n, char* text) { + reinterpret_cast(n)->copy_label(text); +} + + +void fl_window_size_range(WINDOW n, int lw, int lh, int hw, int hh, int dw, int dh, int a) { + 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