summaryrefslogtreecommitdiffstats
path: root/examples/multi_window (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-02-21Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez1-1/+1
2025-02-11Replace `with` function with `Function` traitLibravatar Héctor Ramón Jiménez1-3/+5
2025-01-24Add helper functions for alignment to `widget` moduleLibravatar Héctor Ramón Jiménez1-2/+2
2024-11-05Draft `reactive-rendering` feature for `button`Libravatar Héctor Ramón Jiménez1-1/+1
2024-09-18Implement some `From` traits for `text_input::Id`Libravatar Héctor Ramón Jiménez1-4/+2
2024-07-30Return `window::Id` in `window::open`Libravatar Héctor Ramón Jiménez1-4/+7
2024-07-12Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez1-3/+3
2024-07-12Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez1-2/+2
2024-07-09Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez1-5/+11
If you need to run a `Task` during boot, use `run_with` instead!
2024-06-20Remove `window::Id::MAIN` constantLibravatar Héctor Ramón Jiménez1-1/+1
2024-06-19Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez1-23/+16
2024-06-16Rename `window::closings` to `window::close_events`Libravatar Héctor Ramón Jiménez1-1/+1
2024-06-14Use all themes in `multi_window` exampleLibravatar Héctor Ramón Jiménez1-5/+1
2024-06-14Simplify `WindowOpened` message handler in `multi_window` exampleLibravatar Héctor Ramón Jiménez1-6/+5
2024-06-14Use `Task` chaining to simplify `multi_window` exampleLibravatar Héctor Ramón Jiménez1-83/+72
2024-06-14Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez1-10/+10
2024-06-10Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez1-5/+7
And remove `window::Id` from `Event` altogether.
2024-05-13Ask for explicit `Length` in `center_*` methodsLibravatar Héctor Ramón Jiménez1-1/+1
2024-05-03Introduce `center` widget helperLibravatar Héctor Ramón Jiménez1-8/+5
... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
2023-12-02Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez1-24/+25
2023-11-30Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez1-6/+9
2023-07-24Moved `exit_on_close_request` to window settings. This now controls whether ↵Libravatar Bingus1-4/+2
each INDIVIDUAL window should close on CloseRequested events.
2023-07-21refactored window storage;Libravatar Bingus2-61/+103
new helper window events (Destroyed, Created); clippy + fmt;
2023-03-14Added simpler MW exampleLibravatar Bingus2-559/+103
2023-03-13Code cleanup, clearer comments + removed some unnecessary dupe;Libravatar Bingus1-1/+1
Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping;
2023-02-20Cargo fixLibravatar Bingus2-146/+160
2023-02-17Iced master merge (again)Libravatar Bingus1-2/+2
2023-02-17Fixed widget animations implementationLibravatar Bingus1-11/+10
2023-02-15Widget operations for multi-window.Libravatar Bingus1-5/+45
2023-01-18Added window::Id to multi_window application's scale_factorLibravatar Bingus1-0/+8
2023-01-09FormattingLibravatar bungoboingo1-5/+5
2023-01-09Implemented window title update functionality for multiwindow.Libravatar bungoboingo2-4/+8
2023-01-09Fixed issue with window ID on winitLibravatar bungoboingo2-0/+3
2023-01-09merged in iced masterLibravatar bungoboingo1-1/+1
2023-01-09remove `windows` method (use commands instead)Libravatar Richard1-9/+4
2023-01-09implement `multi_window` for `iced_glutin`Libravatar Richard1-2/+2
2023-01-09Introduce `close_requested` for `multi-window`Libravatar Richard1-0/+4
2023-01-09Allow closing the window from user codeLibravatar Richard1-2/+7
2023-01-09create multi-windowed `pane_grid` exampleLibravatar Richard1-101/+278
2023-01-09duplicate `pane_grid` example to `multi_window`Libravatar Richard2-27/+355
2023-01-09Fix `multi_window` exampleLibravatar Richard1-0/+58