summaryrefslogtreecommitdiff
path: root/src/c_fl_text_editor.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-01 17:45:13 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-01 17:45:13 +1000
commit306adba6ddaab80c6929fe955567f25d9da7915f (patch)
treec3a398f232fa36e0d7031332a014ceb83c9cdaff /src/c_fl_text_editor.cpp
parente9dc75679fcac3bf2024e47641941d0a5ef0899d (diff)
Draw method for Text Display and derivatives, concrete Menu_ derivatives
Diffstat (limited to 'src/c_fl_text_editor.cpp')
-rw-r--r--src/c_fl_text_editor.cpp56
1 files changed, 48 insertions, 8 deletions
diff --git a/src/c_fl_text_editor.cpp b/src/c_fl_text_editor.cpp
index c28f6fa..a99774f 100644
--- a/src/c_fl_text_editor.cpp
+++ b/src/c_fl_text_editor.cpp
@@ -4,45 +4,85 @@
#include "c_fl_text_editor.h"
+typedef void (hook)(void*);
+typedef hook* hook_p;
+
+
+
+
+class My_Text_Editor : public Fl_Text_Editor {
+ public:
+ using Fl_Text_Editor::Fl_Text_Editor;
+ friend void text_editor_set_draw_hook(TEXTEDITOR te, void * d);
+ friend void fl_text_editor_draw(TEXTEDITOR te);
+ protected:
+ void draw();
+ void real_draw();
+ hook_p draw_hook;
+};
+
+
+void My_Text_Editor::draw() {
+ (*draw_hook)(this->user_data());
+}
+
+
+void My_Text_Editor::real_draw() {
+ Fl_Text_Editor::draw();
+}
+
+
+void text_editor_set_draw_hook(TEXTEDITOR te, void * d) {
+ reinterpret_cast<My_Text_Editor*>(te)->draw_hook = reinterpret_cast<hook_p>(d);
+}
+
+
+void fl_text_editor_draw(TEXTEDITOR te) {
+ reinterpret_cast<My_Text_Editor*>(te)->real_draw();
+}
+
+
+
+
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);
+ My_Text_Editor *te = new My_Text_Editor(x, y, w, h, label);
return te;
}
void free_fl_text_editor(TEXTEDITOR te) {
- delete reinterpret_cast<Fl_Text_Editor*>(te);
+ delete reinterpret_cast<My_Text_Editor*>(te);
}
void fl_text_editor_undo(TEXTEDITOR te) {
- Fl_Text_Editor::kf_undo(0, reinterpret_cast<Fl_Text_Editor*>(te));
+ My_Text_Editor::kf_undo(0, reinterpret_cast<My_Text_Editor*>(te));
}
void fl_text_editor_cut(TEXTEDITOR te) {
- Fl_Text_Editor::kf_cut(0, reinterpret_cast<Fl_Text_Editor*>(te));
+ My_Text_Editor::kf_cut(0, reinterpret_cast<My_Text_Editor*>(te));
}
void fl_text_editor_copy(TEXTEDITOR te) {
- Fl_Text_Editor::kf_copy(0, reinterpret_cast<Fl_Text_Editor*>(te));
+ My_Text_Editor::kf_copy(0, reinterpret_cast<My_Text_Editor*>(te));
}
void fl_text_editor_paste(TEXTEDITOR te) {
- Fl_Text_Editor::kf_paste(0, reinterpret_cast<Fl_Text_Editor*>(te));
+ My_Text_Editor::kf_paste(0, reinterpret_cast<My_Text_Editor*>(te));
}
void fl_text_editor_delete(TEXTEDITOR te) {
- Fl_Text_Editor::kf_delete(0, reinterpret_cast<Fl_Text_Editor*>(te));
+ My_Text_Editor::kf_delete(0, reinterpret_cast<My_Text_Editor*>(te));
}
void fl_text_editor_remove_key_binding(TEXTEDITOR te, unsigned int k, unsigned long m) {
- reinterpret_cast<Fl_Text_Editor*>(te)->remove_key_binding(k, m);
+ reinterpret_cast<My_Text_Editor*>(te)->remove_key_binding(k, m);
}