summaryrefslogtreecommitdiff
path: root/body/c_fl_table.cpp
blob: b7b83e2689870f6f15fdbf196353387afdfef9ee (plain)
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511


//  Programmed by Jedidiah Barber
//  Released into the public domain


#include <FL/Fl_Table.H>
#include "c_fl_table.h"




//  Enum and macro constants

const int fl_context_none       = Fl_Table::CONTEXT_NONE;
const int fl_context_startpage  = Fl_Table::CONTEXT_STARTPAGE;
const int fl_context_endpage    = Fl_Table::CONTEXT_ENDPAGE;
const int fl_context_row_header = Fl_Table::CONTEXT_ROW_HEADER;
const int fl_context_col_header = Fl_Table::CONTEXT_COL_HEADER;
const int fl_context_cell       = Fl_Table::CONTEXT_CELL;
const int fl_context_table      = Fl_Table::CONTEXT_TABLE;
const int fl_context_rc_resize  = Fl_Table::CONTEXT_RC_RESIZE;




//  Exports from Ada

extern "C" void widget_draw_hook(void * ud);
extern "C" int widget_handle_hook(void * ud, int e);

extern "C" void table_draw_cell_hook(void * ud, int e, int r, int c, int x, int y, int w, int h);




//  Non-friend protected access

class Friend_Table : Fl_Table {
public:
    using Fl_Table::hscrollbar;
    using Fl_Table::vscrollbar;
    using Fl_Table::table;

    using Fl_Table::is_fltk_container;

    using Fl_Table::scroll_cb;

    using Fl_Table::col_scroll_position;
    using Fl_Table::row_scroll_position;

    using Fl_Table::change_cursor;
    using Fl_Table::ResizeFlag;
    using Fl_Table::cursor2rowcol;

    using Fl_Table::recalc_dimensions;
    using Fl_Table::table_resized;
    using Fl_Table::table_scrolled;

    using Fl_Table::redraw_range;
    using Fl_Table::damage_zone;
    using Fl_Table::find_cell;
    using Fl_Table::get_bounds;
    using Fl_Table::row_col_clamp;
};




//  Attaching all relevant hooks and friends

class My_Table : public Fl_Table {
public:
    using Fl_Table::Fl_Table;

    friend void fl_table_draw(TABLE t);
    friend void fl_table_draw_cell(TABLE t, int e, int r, int c, int x, int y, int w, int h);
    friend int fl_table_handle(TABLE t, int e);

    void draw();
    void draw_cell(Fl_Table::TableContext e, int r=0, int c=0, int x=0, int y=0, int w=0, int h=0);
    int handle(int e);
};

void My_Table::draw() {
    widget_draw_hook(this->user_data());
}

void My_Table::draw_cell(Fl_Table::TableContext e, int r, int c, int x, int y, int w, int h) {
    table_draw_cell_hook(this->user_data(), static_cast<int>(e), r, c, x, y, w, h);
}

int My_Table::handle(int e) {
    return widget_handle_hook(this->user_data(), e);
}




//  Flattened C API

TABLE new_fl_table(int x, int y, int w, int h, char * label) {
    My_Table *t = new My_Table(x, y, w, h, label);
    return t;
}

void free_fl_table(TABLE t) {
    delete static_cast<My_Table*>(t);
}




void * fl_table_hscrollbar(TABLE t) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::hscrollbar));
}

void * fl_table_vscrollbar(TABLE t) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::vscrollbar));
}

void * fl_table_table(TABLE t) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::table));
}




void fl_table_add(TABLE t, void * w) {
    static_cast<Fl_Table*>(t)->add(static_cast<Fl_Widget*>(w));
}

void fl_table_insert(TABLE t, void * w, int p) {
    Fl_Widget &ref = *(static_cast<Fl_Widget*>(w));
    static_cast<Fl_Table*>(t)->insert(ref, p);
}

void fl_table_insert2(TABLE t, void * w, void * b) {
    Fl_Widget &ref = *(static_cast<Fl_Widget*>(w));
    static_cast<Fl_Table*>(t)->insert(ref, static_cast<Fl_Widget*>(b));
}

void fl_table_remove(TABLE t, void * w) {
    Fl_Widget &ref = *(static_cast<Fl_Widget*>(w));
    static_cast<Fl_Table*>(t)->remove(ref);
}




void * fl_table_child(TABLE t, int p) {
    return static_cast<Fl_Table*>(t)->child(p);
}

int fl_table_find(TABLE t, void * w) {
    return static_cast<Fl_Table*>(t)->find(static_cast<Fl_Widget*>(w));
}

int fl_table_children(TABLE t) {
    return static_cast<Fl_Table*>(t)->children();
}

int fl_table_is_fltk_container(TABLE t) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::is_fltk_container))();
}




void fl_table_begin(TABLE t) {
    static_cast<Fl_Table*>(t)->begin();
}

void fl_table_end(TABLE t) {
    static_cast<Fl_Table*>(t)->end();
}




void fl_table_set_callback(TABLE t, void * f) {
    static_cast<Fl_Table*>(t)->callback
        (reinterpret_cast<Fl_Callback_p>(f), static_cast<Fl_Table*>(t)->user_data());
}

int fl_table_callback_col(TABLE t) {
    return static_cast<Fl_Table*>(t)->callback_col();
}

int fl_table_callback_row(TABLE t) {
    return static_cast<Fl_Table*>(t)->callback_row();
}

int fl_table_callback_context(TABLE t) {
    return static_cast<Fl_Table*>(t)->callback_context();
}

void fl_table_do_callback(TABLE t, int x, int r, int c) {
    static_cast<Fl_Table*>(t)->do_callback(static_cast<Fl_Table::TableContext>(x), r, c);
}

void fl_table_when(TABLE t, unsigned int w) {
    static_cast<Fl_Table*>(t)->when(static_cast<Fl_When>(w));
}

void fl_table_scroll_cb(void * s, TABLE t) {
    Friend_Table::scroll_cb(static_cast<Fl_Widget*>(s), t);
}




int fl_table_get_col_header(TABLE t) {
    return static_cast<Fl_Table*>(t)->col_header();
}

void fl_table_set_col_header(TABLE t, int f) {
    static_cast<Fl_Table*>(t)->col_header(f);
}

unsigned int fl_table_get_col_header_color(TABLE t) {
    return static_cast<Fl_Table*>(t)->col_header_color();
}

void fl_table_set_col_header_color(TABLE t, unsigned int c) {
    static_cast<Fl_Table*>(t)->col_header_color(static_cast<Fl_Color>(c));
}

int fl_table_get_col_header_height(TABLE t) {
    return static_cast<Fl_Table*>(t)->col_header_height();
}

void fl_table_set_col_header_height(TABLE t, int h) {
    static_cast<Fl_Table*>(t)->col_header_height(h);
}

int fl_table_get_col_width(TABLE t, int c) {
    return static_cast<Fl_Table*>(t)->col_width(c);
}

void fl_table_set_col_width(TABLE t, int c, int w) {
    static_cast<Fl_Table*>(t)->col_width(c, w);
}

void fl_table_col_width_all(TABLE t, int w) {
    static_cast<Fl_Table*>(t)->col_width_all(w);
}

int fl_table_get_cols(TABLE t) {
    return static_cast<Fl_Table*>(t)->cols();
}

void fl_table_set_cols(TABLE t, int c) {
    static_cast<Fl_Table*>(t)->cols(c);
}

int fl_table_get_col_position(TABLE t) {
    return static_cast<Fl_Table*>(t)->col_position();
}

void fl_table_set_col_position(TABLE t, int c) {
    static_cast<Fl_Table*>(t)->col_position(c);
}

long fl_table_col_scroll_position(TABLE t, int c) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::col_scroll_position))(c);
}

int fl_table_get_col_resize(TABLE t) {
    return static_cast<Fl_Table*>(t)->col_resize();
}

void fl_table_set_col_resize(TABLE t, int f) {
    static_cast<Fl_Table*>(t)->col_resize(f);
}

int fl_table_get_col_resize_min(TABLE t) {
    return static_cast<Fl_Table*>(t)->col_resize_min();
}

void fl_table_set_col_resize_min(TABLE t, int v) {
    static_cast<Fl_Table*>(t)->col_resize_min(v);
}




int fl_table_get_row_header(TABLE t) {
    return static_cast<Fl_Table*>(t)->row_header();
}

void fl_table_set_row_header(TABLE t, int f) {
    static_cast<Fl_Table*>(t)->row_header(f);
}

unsigned int fl_table_get_row_header_color(TABLE t) {
    return static_cast<Fl_Table*>(t)->row_header_color();
}

void fl_table_set_row_header_color(TABLE t, unsigned int c) {
    static_cast<Fl_Table*>(t)->row_header_color(static_cast<Fl_Color>(c));
}

int fl_table_get_row_header_width(TABLE t) {
    return static_cast<Fl_Table*>(t)->row_header_width();
}

void fl_table_set_row_header_width(TABLE t, int w) {
    static_cast<Fl_Table*>(t)->row_header_width(w);
}

int fl_table_get_row_height(TABLE t, int r) {
    return static_cast<Fl_Table*>(t)->row_height(r);
}

void fl_table_set_row_height(TABLE t, int r, int h) {
    static_cast<Fl_Table*>(t)->row_height(r, h);
}

void fl_table_row_height_all(TABLE t, int h) {
    static_cast<Fl_Table*>(t)->row_height_all(h);
}

int fl_table_get_rows(TABLE t) {
    return static_cast<Fl_Table*>(t)->rows();
}

void fl_table_set_rows(TABLE t, int r) {
    static_cast<Fl_Table*>(t)->rows(r);
}

int fl_table_get_row_position(TABLE t) {
    return static_cast<Fl_Table*>(t)->row_position();
}

void fl_table_set_row_position(TABLE t, int r) {
    static_cast<Fl_Table*>(t)->row_position(r);
}

long fl_table_row_scroll_position(TABLE t, int r) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::row_scroll_position))(r);
}

int fl_table_get_row_resize(TABLE t) {
    return static_cast<Fl_Table*>(t)->row_resize();
}

void fl_table_set_row_resize(TABLE t, int f) {
    static_cast<Fl_Table*>(t)->row_resize(f);
}

int fl_table_get_row_resize_min(TABLE t) {
    return static_cast<Fl_Table*>(t)->row_resize_min();
}

void fl_table_set_row_resize_min(TABLE t, int v) {
    static_cast<Fl_Table*>(t)->row_resize_min(v);
}

int fl_table_get_top_row(TABLE t) {
    return static_cast<Fl_Table*>(t)->top_row();
}

void fl_table_set_top_row(TABLE t, int r) {
    static_cast<Fl_Table*>(t)->top_row(r);
}




void fl_table_change_cursor(TABLE t, int c) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::change_cursor))(static_cast<Fl_Cursor>(c));
}

int fl_table_cursor2rowcol(TABLE t, int &r, int &c, int &f) {
    Friend_Table::ResizeFlag ref;
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::cursor2rowcol))(r, c, ref);
    f = static_cast<int>(ref);
}

void fl_table_visible_cells(TABLE t, int &r1, int &r2, int &c1, int &c2) {
    static_cast<Fl_Table*>(t)->visible_cells(r1, r2, c1, c2);
}

void fl_table_get_selection(TABLE t, int &rt, int &cl, int &rb, int &cr) {
    static_cast<Fl_Table*>(t)->get_selection(rt, cl, rb, cr);
}

void fl_table_set_selection(TABLE t, int rt, int cl, int rb, int cr) {
    static_cast<Fl_Table*>(t)->set_selection(rt, cl, rb, cr);
}

int fl_table_is_selected(TABLE t, int r, int c) {
    return static_cast<Fl_Table*>(t)->is_selected(r, c);
}

int fl_table_move_cursor(TABLE t, int r, int c, int s) {
    return static_cast<Fl_Table*>(t)->move_cursor(r, c, s);
}

int fl_table_get_tab_cell_nav(TABLE t) {
#if FLTK_ABI_VERSION >= 10303
    return static_cast<Fl_Table*>(t)->tab_cell_nav();
#else
    (void)(t);
    return 0;
#endif
}

void fl_table_set_tab_cell_nav(TABLE t, int v) {
#if FLTK_ABI_VERSION >= 10303
    static_cast<Fl_Table*>(t)->tab_cell_nav(v);
#else
    (void)(t);
    (void)(v);
#endif
}

int fl_table_get_table_box(TABLE t) {
    return static_cast<Fl_Table*>(t)->table_box();
}

void fl_table_set_table_box(TABLE t, int v) {
    static_cast<Fl_Table*>(t)->table_box(static_cast<Fl_Boxtype>(v));
}




int fl_table_get_scrollbar_size(TABLE t) {
#if FLTK_ABI_VERSION >= 10301
    return static_cast<Fl_Table*>(t)->scrollbar_size();
#else
    (void)(t);
    return 0;
#endif
}

void fl_table_set_scrollbar_size(TABLE t, int v) {
#if FLTK_ABI_VERSION >= 10301
    static_cast<Fl_Table*>(t)->scrollbar_size(v);
#else
    (void)(t);
    (void)(v);
#endif
}

void fl_table_resize(TABLE t, int x, int y, int w, int h) {
    static_cast<Fl_Table*>(t)->resize(x, y, w, h);
}

int fl_table_is_interactive_resize(TABLE t) {
    return static_cast<Fl_Table*>(t)->is_interactive_resize();
}

void fl_table_init_sizes(TABLE t) {
    static_cast<Fl_Table*>(t)->init_sizes();
}

void fl_table_recalc_dimensions(TABLE t) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::recalc_dimensions))();
}

void fl_table_table_resized(TABLE t) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::table_resized))();
}

void fl_table_table_scrolled(TABLE t) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::table_scrolled))();
}




void fl_table_draw(TABLE t) {
    static_cast<My_Table*>(t)->Fl_Table::draw();
}

void fl_table_draw_cell(TABLE t, int e, int r, int c, int x, int y, int w, int h) {
    static_cast<My_Table*>(t)->Fl_Table::draw_cell
        (static_cast<Fl_Table::TableContext>(e), r, c, x, y, w, h);
}

void fl_table_redraw_range(TABLE t, int rt, int rb, int cl, int cr) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::redraw_range))(rt, rb, cl, cr);
}

void fl_table_damage_zone(TABLE t, int rt, int cl, int rb, int cr, int rr, int rc) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::damage_zone))(rt, cl, rb, cr, rr, rc);
}

int fl_table_find_cell(TABLE t, int e, int r, int c, int &x, int &y, int &w, int &h) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::find_cell))
        (static_cast<Fl_Table::TableContext>(e), r, c, x, y, w, h);
}

void fl_table_get_bounds(TABLE t, int e, int &x, int &y, int &w, int &h) {
    (static_cast<Fl_Table*>(t)->*(&Friend_Table::get_bounds))
        (static_cast<Fl_Table::TableContext>(e), x, y, w, h);
}

int fl_table_row_col_clamp(TABLE t, int e, int &r, int &c) {
    return (static_cast<Fl_Table*>(t)->*(&Friend_Table::row_col_clamp))
        (static_cast<Fl_Table::TableContext>(e), r, c);
}

int fl_table_handle(TABLE t, int e) {
    return static_cast<My_Table*>(t)->Fl_Table::handle(e);
}