summaryrefslogtreecommitdiffstats
path: root/native/src/window/action.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-051-147/+0
|
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-2/+2
|
* add action to get window idLibravatar Night_Hunter2023-02-171-0/+4
|
* Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop`Libravatar Héctor Ramón Jiménez2023-02-171-8/+14
|
* update docs and change to SetAlwaysOnTopLibravatar Night_Hunter2023-02-171-4/+4
|
* add always on top actionLibravatar Night_Hunter2023-02-171-0/+10
|
* Write missing `window::Action` helpers in `window`Libravatar Héctor Ramón Jiménez2023-01-311-1/+1
|
* Improve consistency of `window::Action`Libravatar Héctor Ramón Jiménez2023-01-311-8/+9
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-6/+5
|
* Rename `FocusWindow` to `GainFocus` in `window::Action`Libravatar Héctor Ramón Jiménez2023-01-021-3/+3
|
* Add `FocusWindow` to `window::Action`Libravatar Night_Hunter2023-01-021-0/+13
|
* Add `RequestUserAttention` to `window::Action`Libravatar Night_Hunter2023-01-021-5/+25
|
* Implement `window::close` action and remove `should_exit`Libravatar Héctor Ramón Jiménez2022-12-151-0/+4
|
* Remove mention of iOS and Android in `window::action`Libravatar Héctor Ramón2022-12-131-1/+1
|
* add toggle decorations actionLibravatar Night_Hunter2022-12-101-0/+7
|
* feat: Add window minimize supportLibravatar Michael Aaron Murphy2022-10-111-0/+4
|
* feat: Add window maximize supportLibravatar Michael Aaron Murphy2022-10-111-0/+8
|
* feat: Add window drag support from winitLibravatar Michael Aaron Murphy2022-10-111-0/+8
| | | | Exposes access to the winit window's window_drag method as an action.
* Document that `window::Action::Move` is unsupported on WaylandLibravatar Ian Douglas Scott2022-09-151-0/+2
| | | | | | | | | https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_outer_position notes that this isn't supported on Wayland. Wayland by design doesn't allow applications to position windows arbitrarily. GTK4 in comparison removed `gtk_window_move()` (which naturally didn't work on Wayland).
* Implement `SetMode` and `FetchMode` window actionsLibravatar Héctor Ramón Jiménez2022-08-181-2/+45
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-0/+18
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!)