From f15e45791a0658fd5a062629f59c4815ce8b2489 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 28 May 2016 14:53:13 +1000 Subject: Text editors, single and menu windows --- c_fl_single_window.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 c_fl_single_window.cpp (limited to 'c_fl_single_window.cpp') diff --git a/c_fl_single_window.cpp b/c_fl_single_window.cpp new file mode 100644 index 0000000..ec9a315 --- /dev/null +++ b/c_fl_single_window.cpp @@ -0,0 +1,32 @@ + + +#include +#include "c_fl_single_window.h" + + +SINGLEWINDOW new_fl_single_window(int x, int y, int w, int h, char* label) { + Fl_Single_Window *sw = new Fl_Single_Window(x, y, w, h, label); + return sw; +} + + +SINGLEWINDOW new_fl_single_window2(int x, int y) { + Fl_Single_Window *sw = new Fl_Single_Window(x, y); + return sw; +} + + +void free_fl_single_window(SINGLEWINDOW w) { + delete reinterpret_cast(w); +} + + +void fl_single_window_show(SINGLEWINDOW w) { + reinterpret_cast(w)->show(); +} + + +void fl_single_window_flush(SINGLEWINDOW w) { + reinterpret_cast(w)->flush(); +} + -- cgit