summaryrefslogtreecommitdiff
path: root/c_fl_text_editor.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-28 14:53:13 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-28 14:53:13 +1000
commitf15e45791a0658fd5a062629f59c4815ce8b2489 (patch)
treeed455c095cba8777b8a9a0c6dfe7b994023c5cd1 /c_fl_text_editor.cpp
parent32062c660307d5b34f46b1f7b75d17a184930e71 (diff)
Text editors, single and menu windows
Diffstat (limited to 'c_fl_text_editor.cpp')
-rw-r--r--c_fl_text_editor.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/c_fl_text_editor.cpp b/c_fl_text_editor.cpp
new file mode 100644
index 0000000..797035e
--- /dev/null
+++ b/c_fl_text_editor.cpp
@@ -0,0 +1,16 @@
+
+
+#include <FL/Fl_Text_Editor.H>
+#include "c_fl_text_editor.h"
+
+
+TEXTEDITOR new_fl_text_editor(int x, int y, int w, int h, char* label) {
+ Fl_Text_Editor *te = new Fl_Text_Editor(x, y, w, h, label);
+ return te;
+}
+
+
+void free_fl_text_editor(TEXTEDITOR te) {
+ delete reinterpret_cast<Fl_Text_Editor*>(te);
+}
+