#winit #window #slint #center #back-end #running #win

slint-center-win

Center a Slint window running on a winit backend

1 unstable release

0.1.2 Feb 2, 2024

#871 in GUI

Custom license and GPL-3.0-only…

5KB

slint-center-win 0.1.2

Center a Slint window running on a winit backend.

Usage

use slint_center_win::center_window;

slint::include_modules!();

fn main() -> Result<(), slint::PlatformError> {
    // See: https://slint.dev/releases/1.3.2/docs/rust/slint/docs/generated_code/struct.SampleComponent
    let ui = AppWindow::new()?;

    // Window must be shown first so sizes get calculated properly
    // Don't know if there is a better way, slight redraw artifacting on move
    ui.show()?;

    center_window(ui.window());

    // ...

    ui.run()
}

Disclaimer

Neither do I claim this to be pretty nor working in all cases.

Please see external discussions #4376 and #3859.

-- prof79

Dependencies

~21–60MB
~1M SLoC