summaryrefslogtreecommitdiffstats
path: root/winit/src/window.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-051-92/+0
|
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-33/+19
|
* 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
|
* 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
|
* 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:
* 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!)