summaryrefslogtreecommitdiffstats
path: root/native/src/command/action.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-051-86/+0
|
* Converge `Command` types from `iced_futures` and `iced_native`Libravatar Héctor Ramón Jiménez2023-03-051-3/+5
|
* Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2023-02-241-0/+16
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-3/+3
|
* Implement `SetMode` and `FetchMode` window actionsLibravatar Héctor Ramón Jiménez2022-08-181-2/+2
|
* Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-281-0/+7
|
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-041-0/+4
|\
| * Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-0/+4
| |
* | Introduce `QueryInformation` to `system::Action`Libravatar Richard2022-04-261-2/+2
| |
* | Add new `System` variant to `Action`Libravatar Richard2022-04-261-0/+6
|/
* Use `MaybeSend` in `perform` and `map` for `Command`Libravatar Héctor Ramón Jiménez2022-01-281-1/+6
|
* Write missing docs and `Debug` implementations for `native`Libravatar Héctor Ramón Jiménez2021-09-131-0/+22
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-0/+24
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!)