summaryrefslogtreecommitdiffstats
path: root/winit/src/window.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Iced master merge (again)Libravatar Bingus2023-02-171-1/+1
|
* Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-171-4/+21
|\ | | | | | | | | # Conflicts: # winit/src/window.rs
| * Expose `fetch_id` helper in `window` moduleLibravatar Héctor Ramón Jiménez2023-02-171-0/+9
| |
| * Expose `change_always_on_top` helper in `window` moduleLibravatar Héctor Ramón Jiménez2023-02-171-4/+15
| |
* | Merged in iced masterLibravatar Bingus2023-02-151-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-151-9/+40
|\| | | | | | | | | | | | | # Conflicts: # native/src/command/action.rs # native/src/window/action.rs # winit/src/window.rs
| * Write missing `window::Action` helpers in `window`Libravatar Héctor Ramón Jiménez2023-01-311-5/+34
| |
| * Improve consistency of `window::Action`Libravatar Héctor Ramón Jiménez2023-01-311-5/+5
| |
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-01-181-1/+1
|\| | | | | | | | | | | | | | | # Conflicts: # examples/events/src/main.rs # glutin/src/application.rs # native/src/window.rs # winit/src/window.rs
| * Replace `Option<Instant>` with `RedrawRequest` enumLibravatar Héctor Ramón Jiménez2023-01-121-1/+1
| |
| * Implement `window::frames` subscriptionLibravatar Héctor Ramón Jiménez2023-01-121-1/+1
| | | | | | | | ... and use it in the `solar_system` example :tada:
* | Implemented window title update functionality for multiwindow.Libravatar bungoboingo2023-01-091-18/+19
| |
* | introduce `window::spawn` and `window::close`Libravatar Richard2023-01-091-0/+16
| |
* | add `window::Id` to `Event` and `Action`Libravatar Richard2023-01-091-12/+18
| |
* | Introduce opaque `window::Id` typeLibravatar Richard2023-01-091-1/+1
|/
* Create conversion function for `user_attention` in `iced_winit`Libravatar Héctor Ramón Jiménez2023-01-021-1/+1
|
* Implement `window::close` action and remove `should_exit`Libravatar Héctor Ramón Jiménez2022-12-151-0/+5
|
* feat: Add window minimize supportLibravatar Michael Aaron Murphy2022-10-111-0/+5
|
* feat: Add window maximize supportLibravatar Michael Aaron Murphy2022-10-111-0/+10
|
* feat: Add window drag support from winitLibravatar Michael Aaron Murphy2022-10-111-0/+5
| | | | Exposes access to the winit window's window_drag method as an action.
* Implement `SetMode` and `FetchMode` window actionsLibravatar Héctor Ramón Jiménez2022-08-181-1/+15
|
* Implement `move_to` and `resize` commands for `window`Libravatar Héctor Ramón Jiménez2021-09-021-6/+17
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-0/+7
This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)