diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-28 14:53:13 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-28 14:53:13 +1000 |
commit | f15e45791a0658fd5a062629f59c4815ce8b2489 (patch) | |
tree | ed455c095cba8777b8a9a0c6dfe7b994023c5cd1 /c_fl_single_window.cpp | |
parent | 32062c660307d5b34f46b1f7b75d17a184930e71 (diff) |
Text editors, single and menu windows
Diffstat (limited to 'c_fl_single_window.cpp')
-rw-r--r-- | c_fl_single_window.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
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 <FL/Fl_Single_Window.H> +#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<Fl_Single_Window*>(w); +} + + +void fl_single_window_show(SINGLEWINDOW w) { + reinterpret_cast<Fl_Single_Window*>(w)->show(); +} + + +void fl_single_window_flush(SINGLEWINDOW w) { + reinterpret_cast<Fl_Single_Window*>(w)->flush(); +} + |