Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
3377a8d
implement popup for slint
Murmele Mar 31, 2026
c714fe5
remove not needed specifier
Murmele Mar 31, 2026
90d87f0
fix wording
Murmele Mar 31, 2026
c105391
WIP native context menu
Murmele Mar 31, 2026
2959239
consider layout constraints to determine the new size of the popup
Murmele Apr 8, 2026
b84114e
WIP
Murmele Apr 9, 2026
d97382a
debug
Murmele Apr 9, 2026
93e05f0
Popup: Set correct window adapter for the component
Murmele Apr 10, 2026
bb05f92
add comment
Murmele Apr 10, 2026
f0655cd
add better comment
Murmele Apr 10, 2026
238a9f2
debug
Murmele Apr 10, 2026
2dbf8ac
fix sizing
Murmele Apr 10, 2026
3fb15a4
add show_popup() default implementation
Murmele Apr 10, 2026
3f77df3
add testcase
Murmele Apr 10, 2026
a583ef9
debug functions must be implemented
Murmele Apr 10, 2026
d99e58f
Update popupwindow_size.slint
Murmele Apr 13, 2026
7f8618e
cleanup
Murmele Apr 13, 2026
a1c07fa
WIP
Murmele Apr 13, 2026
f1ba719
use set_visible instead of adding a new trait
Murmele Apr 13, 2026
dfff7e2
Winit: Set renderer during window adapter creation
Murmele Apr 13, 2026
7600217
add TODO
Murmele Apr 13, 2026
e59993a
fix size if the size of the popup is constrained by constant numbers
Murmele Apr 14, 2026
c5728af
remove prints
Murmele Apr 14, 2026
3ce3314
add comment
Murmele Apr 14, 2026
5f092b9
update cargo lock
Murmele Apr 14, 2026
a60d86b
fix test
Murmele Apr 15, 2026
15574ea
cleanup test
Murmele Apr 15, 2026
49cc235
add comment
Murmele Apr 15, 2026
adadd96
remove prints
Murmele Apr 15, 2026
1fe19cd
add test
Murmele Apr 15, 2026
4d90d73
cleanup
Murmele Apr 15, 2026
b42eb8c
WIP
Murmele Apr 15, 2026
65929d4
add Layout constraint to popup
Murmele Apr 15, 2026
a17f09e
no need to use the layout constraints
Murmele Apr 16, 2026
b917c1b
just add a layout constraint to every popup
Murmele Apr 16, 2026
1d6a38f
add comments
Murmele Apr 16, 2026
1182245
Update window.rs, mod.rs, and popupwindow_location.rs
Murmele Apr 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 46 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/backends/qt/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ impl i_slint_core::platform::Platform for Backend {
return Err("Qt platform requested but Slint is compiled without Qt support".into());
#[cfg(not(no_qt))]
{
Ok(qt_window::QtWindow::new())
Ok(qt_window::QtWindow::new("Default"))
}
}

Expand Down
Loading