rute 0.0.6

UI library implemented on top of Qt
Documentation
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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// This file is auto-generated by rute_gen. DO NOT EDIT
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

#include "../rute_base.h"
#include "../rute_manual.h"
#include <QAbstractButton>
#include "abstract_button_ffi.h"

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_text(struct RUBase* self_c, const char* text) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setText(QString::fromUtf8(text));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static const char* abstract_button_text(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->text();
    return q_string_to_const_char(ret_value);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_icon(struct RUBase* self_c, struct RUBase* icon) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setIcon(*((WRIcon*)icon));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static struct RUIcon abstract_button_icon(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->icon();
    WRIcon* new_val = new WRIcon();
    *new_val = ret_value;
    struct RUIcon ctl;
    ctl.qt_data = (struct RUBase*)new_val;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)new_val];
    ctl.all_funcs = &s_icon_all_funcs;
    return ctl;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static struct RUSize abstract_button_icon_size(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->iconSize();
    WRSize* new_val = new WRSize();
    *new_val = ret_value;
    struct RUSize ctl;
    ctl.qt_data = (struct RUBase*)new_val;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)new_val];
    ctl.all_funcs = &s_size_all_funcs;
    return ctl;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_shortcut(struct RUBase* self_c, struct RUBase* key) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setShortcut(*((WRKeySequence*)key));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static struct RUKeySequence abstract_button_shortcut(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->shortcut();
    WRKeySequence* new_val = new WRKeySequence();
    *new_val = ret_value;
    struct RUKeySequence ctl;
    ctl.qt_data = (struct RUBase*)new_val;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)new_val];
    ctl.all_funcs = &s_key_sequence_all_funcs;
    return ctl;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_checkable(struct RUBase* self_c, bool arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setCheckable(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static bool abstract_button_is_checkable(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->isCheckable();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static bool abstract_button_is_checked(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->isChecked();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_down(struct RUBase* self_c, bool arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setDown(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static bool abstract_button_is_down(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->isDown();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_auto_repeat(struct RUBase* self_c, bool arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setAutoRepeat(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static bool abstract_button_auto_repeat(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->autoRepeat();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_auto_repeat_delay(struct RUBase* self_c, int arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setAutoRepeatDelay(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static int abstract_button_auto_repeat_delay(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->autoRepeatDelay();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_auto_repeat_interval(struct RUBase* self_c, int arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setAutoRepeatInterval(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static int abstract_button_auto_repeat_interval(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->autoRepeatInterval();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_auto_exclusive(struct RUBase* self_c, bool arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setAutoExclusive(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static bool abstract_button_auto_exclusive(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->autoExclusive();
    return ret_value;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static struct RUButtonGroup abstract_button_group(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    auto ret_value = qt_value->group();
    struct RUButtonGroup ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_button_group_all_funcs;
    return ctl;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_icon_size(struct RUBase* self_c, struct RUBase* size) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setIconSize(*((WRSize*)size));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_animate_click(struct RUBase* self_c, int msec) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->animateClick(msec);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_click(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->click();
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_toggle(struct RUBase* self_c) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->toggle();
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void abstract_button_set_checked(struct RUBase* self_c, bool arg0) {
    WRAbstractButton* qt_value = (WRAbstractButton*)self_c;
    qt_value->setChecked(arg0);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_pressed_event(void* object, void* user_data, void* wrapped_func, void (*event)(void*, void* self_c)) {
    QSlotWrapperSignal_self_void* wrap = new QSlotWrapperSignal_self_void(user_data, (Signal_self_void)event, (void*)wrapped_func);
    QObject* q_obj = (QObject*)object;
    QObject::connect(q_obj, SIGNAL(pressed()), wrap, SLOT(method()));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_released_event(void* object, void* user_data, void* wrapped_func, void (*event)(void*, void* self_c)) {
    QSlotWrapperSignal_self_void* wrap = new QSlotWrapperSignal_self_void(user_data, (Signal_self_void)event, (void*)wrapped_func);
    QObject* q_obj = (QObject*)object;
    QObject::connect(q_obj, SIGNAL(released()), wrap, SLOT(method()));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_clicked_event(void* object, void* user_data, void* wrapped_func, void (*event)(void*, void* self_c, bool checked)) {
    QSlotWrapperSignal_self_bool_void* wrap = new QSlotWrapperSignal_self_bool_void(user_data, (Signal_self_bool_void)event, (void*)wrapped_func);
    QObject* q_obj = (QObject*)object;
    QObject::connect(q_obj, SIGNAL(clicked(bool)), wrap, SLOT(method(bool)));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_toggled_event(void* object, void* user_data, void* wrapped_func, void (*event)(void*, void* self_c, bool checked)) {
    QSlotWrapperSignal_self_bool_void* wrap = new QSlotWrapperSignal_self_bool_void(user_data, (Signal_self_bool_void)event, (void*)wrapped_func);
    QObject* q_obj = (QObject*)object;
    QObject::connect(q_obj, SIGNAL(toggled(bool)), wrap, SLOT(method(bool)));
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_paint_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_paint_event = trampoline_func;
    qt_object->m_paint_event_user_data = user_data;
    qt_object->m_paint_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_paint_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_paint_event = nullptr;
    qt_object->m_paint_event_user_data = nullptr;
    qt_object->m_paint_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_key_press_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_key_press_event = trampoline_func;
    qt_object->m_key_press_event_user_data = user_data;
    qt_object->m_key_press_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_key_press_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_key_press_event = nullptr;
    qt_object->m_key_press_event_user_data = nullptr;
    qt_object->m_key_press_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_key_release_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_key_release_event = trampoline_func;
    qt_object->m_key_release_event_user_data = user_data;
    qt_object->m_key_release_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_key_release_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_key_release_event = nullptr;
    qt_object->m_key_release_event_user_data = nullptr;
    qt_object->m_key_release_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_mouse_press_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_mouse_press_event = trampoline_func;
    qt_object->m_mouse_press_event_user_data = user_data;
    qt_object->m_mouse_press_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_mouse_press_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_mouse_press_event = nullptr;
    qt_object->m_mouse_press_event_user_data = nullptr;
    qt_object->m_mouse_press_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_mouse_release_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_mouse_release_event = trampoline_func;
    qt_object->m_mouse_release_event_user_data = user_data;
    qt_object->m_mouse_release_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_mouse_release_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_mouse_release_event = nullptr;
    qt_object->m_mouse_release_event_user_data = nullptr;
    qt_object->m_mouse_release_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_mouse_move_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_mouse_move_event = trampoline_func;
    qt_object->m_mouse_move_event_user_data = user_data;
    qt_object->m_mouse_move_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_mouse_move_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_mouse_move_event = nullptr;
    qt_object->m_mouse_move_event_user_data = nullptr;
    qt_object->m_mouse_move_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_focus_in_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_focus_in_event = trampoline_func;
    qt_object->m_focus_in_event_user_data = user_data;
    qt_object->m_focus_in_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_focus_in_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_focus_in_event = nullptr;
    qt_object->m_focus_in_event_user_data = nullptr;
    qt_object->m_focus_in_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_focus_out_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_focus_out_event = trampoline_func;
    qt_object->m_focus_out_event_user_data = user_data;
    qt_object->m_focus_out_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_focus_out_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_focus_out_event = nullptr;
    qt_object->m_focus_out_event_user_data = nullptr;
    qt_object->m_focus_out_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void set_abstract_button_change_event(void* object, void* user_data, void* wrapped_func, void (*trampoline_func)(void*, void* self_c, struct RUBase* e)) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_change_event = trampoline_func;
    qt_object->m_change_event_user_data = user_data;
    qt_object->m_change_event_wrapped_func = wrapped_func;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

static void remove_abstract_button_change_event(void* object) {
    WRAbstractButton* qt_object = (WRAbstractButton*)object;
    qt_object->m_change_event = nullptr;
    qt_object->m_change_event_user_data = nullptr;
    qt_object->m_change_event_wrapped_func = nullptr;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

struct RUAbstractButtonFuncs s_abstract_button_funcs = {
    abstract_button_set_text,
    abstract_button_text,
    abstract_button_set_icon,
    abstract_button_icon,
    abstract_button_icon_size,
    abstract_button_set_shortcut,
    abstract_button_shortcut,
    abstract_button_set_checkable,
    abstract_button_is_checkable,
    abstract_button_is_checked,
    abstract_button_set_down,
    abstract_button_is_down,
    abstract_button_set_auto_repeat,
    abstract_button_auto_repeat,
    abstract_button_set_auto_repeat_delay,
    abstract_button_auto_repeat_delay,
    abstract_button_set_auto_repeat_interval,
    abstract_button_auto_repeat_interval,
    abstract_button_set_auto_exclusive,
    abstract_button_auto_exclusive,
    abstract_button_group,
    abstract_button_set_icon_size,
    abstract_button_animate_click,
    abstract_button_click,
    abstract_button_toggle,
    abstract_button_set_checked,
    set_abstract_button_pressed_event,
    set_abstract_button_released_event,
    set_abstract_button_clicked_event,
    set_abstract_button_toggled_event,
    set_abstract_button_paint_event,
    remove_abstract_button_paint_event,
    set_abstract_button_key_press_event,
    remove_abstract_button_key_press_event,
    set_abstract_button_key_release_event,
    remove_abstract_button_key_release_event,
    set_abstract_button_mouse_press_event,
    remove_abstract_button_mouse_press_event,
    set_abstract_button_mouse_release_event,
    remove_abstract_button_mouse_release_event,
    set_abstract_button_mouse_move_event,
    remove_abstract_button_mouse_move_event,
    set_abstract_button_focus_in_event,
    remove_abstract_button_focus_in_event,
    set_abstract_button_focus_out_event,
    remove_abstract_button_focus_out_event,
    set_abstract_button_change_event,
    remove_abstract_button_change_event,
};

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

struct RUAbstractButtonAllFuncs s_abstract_button_all_funcs = {
    &s_object_funcs,
    &s_paint_device_funcs,
    &s_widget_funcs,
    &s_abstract_button_funcs,
};