summaryrefslogtreecommitdiffstats
path: root/winit/src/window.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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!)