1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// Programmed by Jedidiah Barber
// Released into the public domain
#include <FL/Fl_Double_Window.H>
#include "c_fl_double_window.h"
// Exports from Ada
extern "C" void widget_draw_hook(void * ud);
extern "C" int widget_handle_hook(void * ud, int e);
// Non-friend protected access
class Friend_Double_Window : Fl_Double_Window {
public:
// Only needed for the (int) version
using Fl_Double_Window::flush;
};
// Attaching all relevant hooks and friends
class My_Double_Window : public Fl_Double_Window {
public:
using Fl_Double_Window::Fl_Double_Window;
friend void fl_double_window_draw(DOUBLEWINDOW n);
friend int fl_double_window_handle(DOUBLEWINDOW n, int e);
void draw();
int handle(int e);
};
void My_Double_Window::draw() {
widget_draw_hook(this->user_data());
}
int My_Double_Window::handle(int e) {
return widget_handle_hook(this->user_data(), e);
}
// Flattened C API
DOUBLEWINDOW new_fl_double_window(int x, int y, int w, int h, char* label) {
My_Double_Window *d = new My_Double_Window(x, y, w, h, label);
return d;
}
DOUBLEWINDOW new_fl_double_window2(int w, int h, char* label) {
My_Double_Window *d = new My_Double_Window(w, h, label);
return d;
}
void free_fl_double_window(DOUBLEWINDOW d) {
delete reinterpret_cast<My_Double_Window*>(d);
}
void fl_double_window_show(DOUBLEWINDOW d) {
reinterpret_cast<Fl_Double_Window*>(d)->show();
}
void fl_double_window_show2(DOUBLEWINDOW d, int c, void * v) {
reinterpret_cast<Fl_Double_Window*>(d)->show(c, static_cast<char**>(v));
}
void fl_double_window_hide(DOUBLEWINDOW d) {
reinterpret_cast<Fl_Double_Window*>(d)->hide();
}
void fl_double_window_flush(DOUBLEWINDOW d) {
reinterpret_cast<Fl_Double_Window*>(d)->flush();
}
void fl_double_window_flush2(DOUBLEWINDOW d, int e) {
void (Fl_Double_Window::*myflush)(int) = &Friend_Double_Window::flush;
(reinterpret_cast<Fl_Double_Window*>(d)->*myflush)(e);
}
void fl_double_window_resize(DOUBLEWINDOW d, int x, int y, int w, int h) {
reinterpret_cast<Fl_Double_Window*>(d)->resize(x, y, w, h);
}
void fl_double_window_draw(DOUBLEWINDOW n) {
reinterpret_cast<My_Double_Window*>(n)->Fl_Double_Window::draw();
}
int fl_double_window_handle(DOUBLEWINDOW n, int e) {
return reinterpret_cast<My_Double_Window*>(n)->Fl_Double_Window::handle(e);
}
|