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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// This file is auto-generated by rute_gen. DO NOT EDIT
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

#include "../rute_base.h"
#include "../rute_manual.h"
#include <QLayout>
#include "layout_ffi.h"

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

static int layout_margin(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->margin();
    return ret_value;
}

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

static int layout_spacing(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->spacing();
    return ret_value;
}

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

static void layout_set_margin(struct RUBase* self_c, int arg0) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setMargin(arg0);
}

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

static void layout_set_spacing(struct RUBase* self_c, int arg0) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setSpacing(arg0);
}

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

static void layout_set_contents_margins(struct RUBase* self_c, int left, int top, int right, int bottom) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setContentsMargins(left, top, right, bottom);
}

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

static void layout_set_contents_margins_2(struct RUBase* self_c, struct RUBase* margins) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setContentsMargins(*((WRMargins*)margins));
}

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

static struct RUMargins layout_contents_margins(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->contentsMargins();
    WRMargins* new_val = new WRMargins();
    *new_val = ret_value;
    struct RUMargins ctl;
    ctl.qt_data = (struct RUBase*)new_val;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)new_val];
    ctl.all_funcs = &s_margins_all_funcs;
    return ctl;
}

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

static struct RURect layout_contents_rect(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->contentsRect();
    WRRect* new_val = new WRRect();
    *new_val = ret_value;
    struct RURect ctl;
    ctl.qt_data = (struct RUBase*)new_val;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)new_val];
    ctl.all_funcs = &s_rect_all_funcs;
    return ctl;
}

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

static bool layout_set_alignment(struct RUBase* self_c, struct RUBase* w, uint32_t alignment) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->setAlignment((WRWidget*)w, (Qt::Alignment)alignment);
    return ret_value;
}

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

static bool layout_set_alignment_2(struct RUBase* self_c, struct RUBase* l, uint32_t alignment) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->setAlignment((WRLayout*)l, (Qt::Alignment)alignment);
    return ret_value;
}

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

static void layout_set_menu_bar(struct RUBase* self_c, struct RUBase* w) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setMenuBar((WRWidget*)w);
}

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

static struct RUWidget layout_menu_bar(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->menuBar();
    struct RUWidget ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_widget_all_funcs;
    return ctl;
}

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

static struct RUWidget layout_parent_widget(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->parentWidget();
    struct RUWidget ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_widget_all_funcs;
    return ctl;
}

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

static void layout_invalidate(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->invalidate();
}

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

static bool layout_activate(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->activate();
    return ret_value;
}

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

static void layout_update(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->update();
}

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

static void layout_add_widget(struct RUBase* self_c, struct RUBase* w) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->addWidget((WRWidget*)w);
}

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

static void layout_add_item(struct RUBase* self_c, struct RUBase* arg0) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->addItem((QLayoutItem*)arg0);
}

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

static void layout_remove_widget(struct RUBase* self_c, struct RUBase* w) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->removeWidget((WRWidget*)w);
}

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

static void layout_remove_item(struct RUBase* self_c, struct RUBase* arg0) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->removeItem((QLayoutItem*)arg0);
}

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

static uint32_t layout_expanding_directions(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->expandingDirections();
    return (uint32_t)ret_value;
}

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

static struct RUSize layout_minimum_size(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->minimumSize();
    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 struct RUSize layout_maximum_size(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->maximumSize();
    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 struct RULayoutItem layout_item_at(struct RUBase* self_c, int index) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->itemAt(index);
    struct RULayoutItem ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_layout_item_all_funcs;
    return ctl;
}

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

static struct RULayoutItem layout_take_at(struct RUBase* self_c, int index) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->takeAt(index);
    struct RULayoutItem ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_layout_item_all_funcs;
    return ctl;
}

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

static int layout_index_of(struct RUBase* self_c, struct RUBase* arg0) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->indexOf((WRWidget*)arg0);
    return ret_value;
}

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

static int layout_count(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->count();
    return ret_value;
}

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

static bool layout_is_empty(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->isEmpty();
    return ret_value;
}

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

static struct RULayoutItem layout_replace_widget(struct RUBase* self_c, struct RUBase* from, struct RUBase* to, uint32_t options) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->replaceWidget((WRWidget*)from, (WRWidget*)to, (Qt::FindChildOptions)options);
    struct RULayoutItem ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_layout_item_all_funcs;
    return ctl;
}

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

static int layout_total_height_for_width(struct RUBase* self_c, int w) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->totalHeightForWidth(w);
    return ret_value;
}

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

static struct RUSize layout_total_minimum_size(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->totalMinimumSize();
    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 struct RUSize layout_total_maximum_size(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->totalMaximumSize();
    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 struct RUSize layout_total_size_hint(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->totalSizeHint();
    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 struct RULayout layout_layout(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->layout();
    struct RULayout ctl;
    ctl.qt_data = (struct RUBase*)ret_value;
    ctl.host_data = (struct RUBase*)s_host_data_lookup[(void*)ret_value];
    ctl.all_funcs = &s_layout_all_funcs;
    return ctl;
}

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

static void layout_set_size_constraint(struct RUBase* self_c, uint32_t constraint) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setSizeConstraint((QLayout::SizeConstraint)constraint);
}

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

static uint32_t layout_size_constraint(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->sizeConstraint();
    return (uint32_t)ret_value;
}

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

static void layout_set_enabled(struct RUBase* self_c, bool arg0) {
    WRLayout* qt_value = (WRLayout*)self_c;
    qt_value->setEnabled(arg0);
}

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

static bool layout_is_enabled(struct RUBase* self_c) {
    WRLayout* qt_value = (WRLayout*)self_c;
    auto ret_value = qt_value->isEnabled();
    return ret_value;
}

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

struct RULayoutFuncs s_layout_funcs = {
    layout_margin,
    layout_spacing,
    layout_set_margin,
    layout_set_spacing,
    layout_set_contents_margins,
    layout_set_contents_margins_2,
    layout_contents_margins,
    layout_contents_rect,
    layout_set_alignment,
    layout_set_alignment_2,
    layout_set_menu_bar,
    layout_menu_bar,
    layout_parent_widget,
    layout_invalidate,
    layout_activate,
    layout_update,
    layout_add_widget,
    layout_add_item,
    layout_remove_widget,
    layout_remove_item,
    layout_expanding_directions,
    layout_minimum_size,
    layout_maximum_size,
    layout_item_at,
    layout_take_at,
    layout_index_of,
    layout_count,
    layout_is_empty,
    layout_replace_widget,
    layout_total_height_for_width,
    layout_total_minimum_size,
    layout_total_maximum_size,
    layout_total_size_hint,
    layout_layout,
    layout_set_size_constraint,
    layout_size_constraint,
    layout_set_enabled,
    layout_is_enabled,
};

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

struct RULayoutAllFuncs s_layout_all_funcs = {
    &s_object_funcs,
    &s_layout_item_funcs,
    &s_layout_funcs,
};