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
|
// Programmed by Jedidiah Barber
// Released into the public domain
#include <FL/Fl_File_Input.H>
#include "c_fl_file_input.h"
// Exports from Ada
extern "C" void widget_draw_hook(void * ud);
extern "C" int widget_handle_hook(void * ud, int e);
// Attaching all relevant hooks and friends
class My_File_Input : public Fl_File_Input {
public:
using Fl_File_Input::Fl_File_Input;
friend void fl_file_input_draw(FILEINPUT i);
friend int fl_file_input_handle(FILEINPUT i, int e);
void draw();
int handle(int e);
};
void My_File_Input::draw() {
widget_draw_hook(this->user_data());
}
int My_File_Input::handle(int e) {
return widget_handle_hook(this->user_data(), e);
}
// Flattened C API
FILEINPUT new_fl_file_input(int x, int y, int w, int h, char* label) {
My_File_Input *i = new My_File_Input(x, y, w, h, label);
return i;
}
void free_fl_file_input(FILEINPUT i) {
delete reinterpret_cast<My_File_Input*>(i);
}
int fl_file_input_get_down_box(FILEINPUT i) {
return reinterpret_cast<Fl_File_Input*>(i)->down_box();
}
void fl_file_input_set_down_box(FILEINPUT i, int t) {
reinterpret_cast<Fl_File_Input*>(i)->down_box(static_cast<Fl_Boxtype>(t));
}
unsigned int fl_file_input_get_errorcolor(FILEINPUT i) {
return reinterpret_cast<Fl_File_Input*>(i)->errorcolor();
}
void fl_file_input_set_errorcolor(FILEINPUT i, unsigned int t) {
reinterpret_cast<Fl_File_Input*>(i)->errorcolor(t);
}
const char * fl_file_input_get_value(FILEINPUT i) {
return reinterpret_cast<Fl_File_Input*>(i)->value();
}
int fl_file_input_set_value(FILEINPUT i, const char * s, int len) {
return reinterpret_cast<Fl_File_Input*>(i)->value(s,len);
}
void fl_file_input_draw(FILEINPUT i) {
reinterpret_cast<My_File_Input*>(i)->Fl_File_Input::draw();
}
int fl_file_input_handle(FILEINPUT i, int e) {
return reinterpret_cast<My_File_Input*>(i)->Fl_File_Input::handle(e);
}
|