-
Notifications
You must be signed in to change notification settings - Fork 985
Expand file tree
/
Copy pathslint.h
More file actions
564 lines (511 loc) · 20.1 KB
/
Copy pathslint.h
File metadata and controls
564 lines (511 loc) · 20.1 KB
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
#pragma once
#include "slint_internal.h"
#include "slint_platform_internal.h"
#include "slint_qt_internal.h"
#include "slint_window.h"
#include "slint_models.h"
#include "slint_item_tree.h"
#include <vector>
#include <chrono>
#include <span>
#include <concepts>
#ifndef SLINT_FEATURE_FREESTANDING
# include <mutex>
# include <condition_variable>
#endif
/// \rst
/// The :code:`slint` namespace is the primary entry point into the Slint C++ API.
/// All available types are in this namespace.
///
/// See the :doc:`Overview <../overview>` documentation for the C++ integration how
/// to load :code:`.slint` designs.
/// \endrst
namespace slint {
namespace private_api {
/// Convert a slint `{height: length, width: length, x: length, y: length}` to a Rect
inline cbindgen_private::Rect convert_anonymous_rect(std::tuple<float, float, float, float> tuple)
{
// alphabetical order
auto [h, w, x, y] = tuple;
return cbindgen_private::Rect { .x = x, .y = y, .width = w, .height = h };
}
inline void dealloc(const ItemTreeVTable *vtable, uint8_t *ptr,
[[maybe_unused]] vtable::Layout layout)
{
vtable::dealloc(vtable, ptr, layout);
}
template<typename T>
inline vtable::Layout drop_in_place(ItemTreeRef item_tree)
{
return vtable::drop_in_place<ItemTreeVTable, T>(item_tree);
}
#if !defined(DOXYGEN)
# if defined(_WIN32) || defined(_WIN64)
// On Windows cross-dll data relocations are not supported:
// https://docs.microsoft.com/en-us/cpp/c-language/rules-and-limitations-for-dllimport-dllexport?view=msvc-160
// so we have a relocation to a function that returns the address we seek. That
// relocation will be resolved to the locally linked stub library, the implementation of
// which will be patched.
# define SLINT_GET_ITEM_VTABLE(VTableName) slint::private_api::slint_get_##VTableName()
# else
# define SLINT_GET_ITEM_VTABLE(VTableName) (&slint::private_api::VTableName)
# endif
#endif // !defined(DOXYGEN)
inline std::optional<cbindgen_private::ItemRc>
upgrade_item_weak(const cbindgen_private::ItemWeak &item_weak)
{
if (auto item_tree_strong = item_weak.item_tree.lock()) {
return { { *item_tree_strong, item_weak.index } };
} else {
return std::nullopt;
}
}
inline void debug(const SharedString &str)
{
cbindgen_private::slint_debug(&str);
}
} // namespace private_api
namespace cbindgen_private {
inline LayoutInfo LayoutInfo::merge(const LayoutInfo &other) const
{
// Note: This "logic" is duplicated from LayoutInfo::merge in layout.rs.
return LayoutInfo { std::min(max, other.max),
std::min(max_percent, other.max_percent),
std::max(min, other.min),
std::max(min_percent, other.min_percent),
std::max(preferred, other.preferred),
std::min(stretch, other.stretch) };
}
inline bool operator==(const EasingCurve &a, const EasingCurve &b)
{
if (a.tag != b.tag) {
return false;
} else if (a.tag == EasingCurve::Tag::CubicBezier) {
return std::equal(a.cubic_bezier._0, a.cubic_bezier._0 + 4, b.cubic_bezier._0);
}
return true;
}
inline bool operator==(const MouseCursor &a, const MouseCursor &b)
{
if (a.tag != b.tag) {
return false;
} else if (a.tag == MouseCursor::Tag::CustomCursor) {
return a.custom_cursor.image == b.custom_cursor.image
&& a.custom_cursor.hotspot_x == b.custom_cursor.hotspot_x
&& a.custom_cursor.hotspot_y == b.custom_cursor.hotspot_y;
}
return true;
}
}
namespace private_api {
inline static void register_item_tree(const vtable::VRc<ItemTreeVTable> *c,
const std::optional<slint::Window> &maybe_window)
{
const cbindgen_private::WindowAdapterRcOpaque *window_ptr =
maybe_window.has_value() ? &maybe_window->window_handle().handle() : nullptr;
cbindgen_private::slint_register_item_tree(c, window_ptr);
}
inline SharedVector<float> solve_box_layout(const cbindgen_private::BoxLayoutData &data,
cbindgen_private::Slice<int> repeater_indices)
{
SharedVector<float> result;
cbindgen_private::Slice<uint32_t> ri =
make_slice(reinterpret_cast<uint32_t *>(repeater_indices.ptr), repeater_indices.len);
cbindgen_private::slint_solve_box_layout(&data, ri, &result);
return result;
}
inline SharedVector<uint16_t>
organize_grid_layout(cbindgen_private::Slice<cbindgen_private::GridLayoutInputData> input_data,
cbindgen_private::Slice<int> repeater_indices)
{
SharedVector<uint16_t> result;
cbindgen_private::Slice<uint32_t> ri =
make_slice(reinterpret_cast<uint32_t *>(repeater_indices.ptr), repeater_indices.len);
cbindgen_private::slint_organize_grid_layout(input_data, ri, &result);
return result;
}
inline SharedVector<uint16_t> organize_dialog_button_layout(
cbindgen_private::Slice<cbindgen_private::GridLayoutInputData> input_data,
cbindgen_private::Slice<DialogButtonRole> dialog_button_roles)
{
SharedVector<uint16_t> result;
cbindgen_private::slint_organize_dialog_button_layout(input_data, dialog_button_roles, &result);
return result;
}
inline SharedVector<float>
solve_grid_layout(const cbindgen_private::GridLayoutData &data,
cbindgen_private::Slice<cbindgen_private::LayoutItemInfo> constraints,
cbindgen_private::Orientation orientation,
cbindgen_private::Slice<int> repeater_indices)
{
SharedVector<float> result;
cbindgen_private::Slice<uint32_t> ri =
make_slice(reinterpret_cast<uint32_t *>(repeater_indices.ptr), repeater_indices.len);
cbindgen_private::slint_solve_grid_layout(&data, constraints, orientation, ri, &result);
return result;
}
inline cbindgen_private::LayoutInfo
grid_layout_info(const cbindgen_private::GridLayoutOrganizedData &organized_data,
cbindgen_private::Slice<cbindgen_private::LayoutItemInfo> constraints,
cbindgen_private::Slice<int> repeater_indices, float spacing,
const cbindgen_private::Padding &padding,
cbindgen_private::Orientation orientation)
{
cbindgen_private::Slice<uint32_t> ri =
make_slice(reinterpret_cast<uint32_t *>(repeater_indices.ptr), repeater_indices.len);
return cbindgen_private::slint_grid_layout_info(&organized_data, constraints, ri, spacing,
&padding, orientation);
}
inline cbindgen_private::LayoutInfo
box_layout_info(cbindgen_private::Slice<cbindgen_private::LayoutItemInfo> cells, float spacing,
const cbindgen_private::Padding &padding,
cbindgen_private::LayoutAlignment alignment)
{
return cbindgen_private::slint_box_layout_info(cells, spacing, &padding, alignment);
}
inline cbindgen_private::LayoutInfo
box_layout_info_ortho(cbindgen_private::Slice<cbindgen_private::LayoutItemInfo> cells,
const cbindgen_private::Padding &padding)
{
return cbindgen_private::slint_box_layout_info_ortho(cells, &padding);
}
/// Access the layout cache of an item within a repeater
template<typename T>
inline T layout_cache_access(const SharedVector<T> &cache, int offset, int repeater_index,
int entries_per_item)
{
size_t idx = size_t(cache[offset]) + repeater_index * entries_per_item;
return idx < cache.size() ? cache[idx] : 0;
}
template<typename VT, typename ItemType>
inline cbindgen_private::LayoutInfo
item_layout_info(VT *itemvtable, ItemType *item_ptr, cbindgen_private::Orientation orientation,
WindowAdapterRc *window_adapter, const ItemTreeRc &component_rc,
uint32_t item_index)
{
cbindgen_private::ItemRc item_rc { component_rc, item_index };
return itemvtable->layout_info({ itemvtable, item_ptr }, orientation, window_adapter, &item_rc);
}
} // namespace private_api
namespace private_api {
template<typename T>
union MaybeUninitialized {
T value;
~MaybeUninitialized() { }
MaybeUninitialized() { }
T take()
{
T result = std::move(value);
value.~T();
return result;
}
};
inline vtable::VRc<cbindgen_private::MenuVTable>
create_menu_wrapper(const ItemTreeRc &menu_item_tree,
bool (*condition)(const ItemTreeRc *menu_tree) = nullptr)
{
MaybeUninitialized<vtable::VRc<cbindgen_private::MenuVTable>> maybe;
cbindgen_private::slint_menus_create_wrapper(&menu_item_tree, &maybe.value, condition);
return maybe.take();
}
inline void setup_popup_menu_from_menu_item_tree(
const vtable::VRc<cbindgen_private::MenuVTable> &shared,
Property<std::shared_ptr<Model<cbindgen_private::MenuEntry>>> &entries,
Callback<std::shared_ptr<Model<cbindgen_private::MenuEntry>>(cbindgen_private::MenuEntry)>
&sub_menu,
Callback<void(cbindgen_private::MenuEntry)> &activated)
{
using cbindgen_private::MenuEntry;
entries.set_binding([shared] {
SharedVector<MenuEntry> entries_sv;
shared.vtable()->sub_menu(shared.borrow(), nullptr, &entries_sv);
std::vector<MenuEntry> entries_vec(entries_sv.begin(), entries_sv.end());
return std::make_shared<VectorModel<MenuEntry>>(std::move(entries_vec));
});
sub_menu.set_handler([shared](const auto &entry) {
SharedVector<MenuEntry> entries_sv;
shared.vtable()->sub_menu(shared.borrow(), &entry, &entries_sv);
std::vector<MenuEntry> entries_vec(entries_sv.begin(), entries_sv.end());
return std::make_shared<VectorModel<MenuEntry>>(std::move(entries_vec));
});
activated.set_handler(
[shared](const auto &entry) { shared.vtable()->activate(shared.borrow(), &entry); });
}
inline SharedString translate(const SharedString &original, const SharedString &context,
const SharedString &domain,
cbindgen_private::Slice<SharedString> arguments, int n,
const SharedString &plural)
{
SharedString result = original;
cbindgen_private::slint_translate(&result, &context, &domain, arguments, n, &plural);
return result;
}
inline SharedString escape_markdown(const SharedString &text)
{
SharedString result = text;
cbindgen_private::slint_escape_markdown(&result);
return result;
}
inline StyledText parse_markdown(const SharedString &text)
{
StyledText result;
cbindgen_private::slint_parse_markdown(&text, &result);
return result;
}
inline SharedString translate_from_bundle(std::span<const char8_t *const> strs,
cbindgen_private::Slice<SharedString> arguments)
{
SharedString result;
cbindgen_private::slint_translate_from_bundle(
make_slice((reinterpret_cast<char const *const *>(strs.data())), strs.size()),
arguments, &result);
return result;
}
inline SharedString
translate_from_bundle_with_plural(std::span<const char8_t *const> strs,
std::span<const uint32_t> indices,
std::span<uintptr_t (*const)(int32_t)> plural_rules,
cbindgen_private::Slice<SharedString> arguments, int n)
{
SharedString result;
cbindgen_private::Slice<const char *> strs_slice =
make_slice(reinterpret_cast<char const *const *>(strs.data()), strs.size());
cbindgen_private::Slice<uint32_t> indices_slice =
make_slice(reinterpret_cast<const uint32_t *>(indices.data()), indices.size());
cbindgen_private::Slice<uintptr_t (*)(int32_t)> plural_rules_slice =
make_slice(reinterpret_cast<uintptr_t (*const *)(int32_t)>(plural_rules.data()),
plural_rules.size());
cbindgen_private::slint_translate_from_bundle_with_plural(
strs_slice, indices_slice, plural_rules_slice, arguments, n, &result);
return result;
}
template<typename Component>
inline float get_resolved_default_font_size(const Component &component)
{
ItemTreeRc item_tree_rc = (*component.self_weak.lock()).into_dyn();
return slint::cbindgen_private::slint_windowrc_resolved_default_font_size(&item_tree_rc);
}
} // namespace private_api
#ifdef SLINT_FEATURE_GETTEXT
/// Forces all the strings that are translated with `@tr(...)` to be re-evaluated.
/// This is useful if the language is changed at runtime.
/// The function is only available when Slint is compiled with `SLINT_FEATURE_GETTEXT`.
///
/// Example
/// ```cpp
/// my_ui->global<LanguageSettings>().on_french_selected([] {
/// setenv("LANGUAGE", langs[l], true);
/// slint::update_all_translations();
/// });
/// ```
inline void update_all_translations()
{
cbindgen_private::slint_translations_mark_dirty();
}
#endif
/// Select the current translation language when using bundled translations.
/// This function requires that the application's `.slint` file was compiled with bundled
/// translations. It must be called after creating the first component.
///
/// The language string is the locale, which matches the name of the folder that contains the
/// `LC_MESSAGES` folder. An empty string or `"en"` will select the default language.
///
/// Returns true if the language was selected; false if the language was not found in the list of
/// bundled translations.
inline bool select_bundled_translation(std::string_view language)
{
return cbindgen_private::slint_translate_select_bundled_translation(
slint::private_api::string_to_slice(language));
}
#if !defined(DOXYGEN)
cbindgen_private::Flickable::Flickable()
{
slint_flickable_data_init(&data);
}
cbindgen_private::Flickable::~Flickable()
{
slint_flickable_data_free(&data);
}
cbindgen_private::NativeStyleMetrics::NativeStyleMetrics(void *)
{
slint_native_style_metrics_init(this);
}
cbindgen_private::NativeStyleMetrics::~NativeStyleMetrics()
{
slint_native_style_metrics_deinit(this);
}
cbindgen_private::NativePalette::NativePalette(void *)
{
slint_native_palette_init(this);
}
cbindgen_private::NativePalette::~NativePalette()
{
slint_native_palette_deinit(this);
}
#endif // !defined(DOXYGEN)
namespace private_api {
// Was used in Slint <= 1.1.0 to have an error message in case of mismatch
template<int Major, int Minor, int Patch>
struct [[deprecated]] VersionCheckHelper
{
};
}
/// Enum for the event loop mode parameter of the slint::run_event_loop() function.
/// It is used to determine when the event loop quits.
enum class EventLoopMode {
/// The event loop will quit when the last window is closed
/// or when slint::quit_event_loop() is called.
QuitOnLastWindowClosed,
/// The event loop will keep running until slint::quit_event_loop() is called,
/// even when all windows are closed.
RunUntilQuit
};
/// Enters the main event loop. This is necessary in order to receive
/// events from the windowing system in order to render to the screen
/// and react to user input.
///
/// The mode parameter determines the behavior of the event loop when all windows are closed.
/// By default, it is set to QuitOnLastWindowClose, which means the event loop will
/// quit when the last window is closed.
inline void run_event_loop(EventLoopMode mode = EventLoopMode::QuitOnLastWindowClosed)
{
private_api::assert_main_thread();
cbindgen_private::slint_run_event_loop(mode == EventLoopMode::QuitOnLastWindowClosed);
}
/// Schedules the main event loop for termination. This function is meant
/// to be called from callbacks triggered by the UI. After calling the function,
/// it will return immediately and once control is passed back to the event loop,
/// the initial call to slint::run_event_loop() will return.
inline void quit_event_loop()
{
cbindgen_private::slint_quit_event_loop();
}
/// Adds the specified functor to an internal queue, notifies the event loop to wake up.
/// Once woken up, any queued up functors will be invoked.
/// This function is thread-safe and can be called from any thread, including the one
/// running the event loop. The provided functors will only be invoked from the thread
/// that started the event loop.
///
/// You can use this to set properties or use any other Slint APIs from other threads,
/// by collecting the code in a functor and queuing it up for invocation within the event loop.
///
/// The following example assumes that a status message received from a network thread is
/// shown in the UI:
///
/// ```
/// #include "my_application_ui.h"
/// #include <thread>
///
/// int main(int argc, char **argv)
/// {
/// auto ui = NetworkStatusUI::create();
/// ui->set_status_label("Pending");
///
/// slint::ComponentWeakHandle<NetworkStatusUI> weak_ui_handle(ui);
/// std::thread network_thread([=]{
/// std::string message = read_message_blocking_from_network();
/// slint::invoke_from_event_loop([&]() {
/// if (auto ui = weak_ui_handle.lock()) {
/// ui->set_status_label(message);
/// }
/// });
/// });
/// ...
/// ui->run();
/// ...
/// }
/// ```
///
/// See also blocking_invoke_from_event_loop() for a blocking version of this function
template<std::invocable Functor>
void invoke_from_event_loop(Functor f)
{
cbindgen_private::slint_post_event(
[](void *data) { (*reinterpret_cast<Functor *>(data))(); }, new Functor(std::move(f)),
[](void *data) { delete reinterpret_cast<Functor *>(data); });
}
#if !defined(SLINT_FEATURE_FREESTANDING) || defined(DOXYGEN)
/// Blocking version of invoke_from_event_loop()
///
/// Just like invoke_from_event_loop(), this will run the specified functor from the thread running
/// the slint event loop. But it will block until the execution of the functor is finished,
/// and return that value.
///
/// This function must be called from a different thread than the thread that runs the event loop
/// otherwise it will result in a deadlock. Calling this function if the event loop is not running
/// will also block forever or until the event loop is started in another thread.
///
/// The following example is reading the message property from a thread
///
/// ```
/// #include "my_application_ui.h"
/// #include <thread>
///
/// int main(int argc, char **argv)
/// {
/// auto ui = MyApplicationUI::create();
/// ui->set_status_label("Pending");
///
/// std::thread worker_thread([ui]{
/// while (...) {
/// auto message = slint::blocking_invoke_from_event_loop([ui]() {
/// return ui->get_message();
/// }
/// do_something(message);
/// ...
/// });
/// });
/// ...
/// ui->run();
/// ...
/// }
/// ```
template<std::invocable Functor>
auto blocking_invoke_from_event_loop(Functor f) -> std::invoke_result_t<Functor>
{
std::optional<std::invoke_result_t<Functor>> result;
std::mutex mtx;
std::condition_variable cv;
invoke_from_event_loop([&] {
auto r = f();
std::unique_lock lock(mtx);
result = std::move(r);
cv.notify_one();
});
std::unique_lock lock(mtx);
cv.wait(lock, [&] { return result.has_value(); });
return std::move(*result);
}
# if !defined(DOXYGEN) // Doxygen doesn't see this as an overload of the previous one
// clang-format off
template<std::invocable Functor>
requires(std::is_void_v<std::invoke_result_t<Functor>>)
void blocking_invoke_from_event_loop(Functor f)
// clang-format on
{
std::mutex mtx;
std::condition_variable cv;
bool ok = false;
invoke_from_event_loop([&] {
f();
std::unique_lock lock(mtx);
ok = true;
cv.notify_one();
});
std::unique_lock lock(mtx);
cv.wait(lock, [&] { return ok; });
}
# endif
#endif
/// Sets the application id for use on Wayland or X11 with
/// [xdg](https://specifications.freedesktop.org/desktop-entry-spec/latest/) compliant window
/// managers. This must be set before the window is shown.
inline void set_xdg_app_id(std::string_view xdg_app_id)
{
private_api::assert_main_thread();
SharedString s = xdg_app_id;
cbindgen_private::slint_set_xdg_app_id(&s);
}
} // namespace slint