summaryrefslogtreecommitdiffstats
path: root/runtime/src/command/action.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-06-14Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez1-100/+0
2024-02-13Introduce `Kind` in `core::clipboard`Libravatar Héctor Ramón Jiménez1-9/+0
2024-02-13Add support for primary clipboardLibravatar Mattias Eriksson1-0/+9
2024-02-03Organize imports in `runtime::command::action`Libravatar Héctor Ramón Jiménez1-2/+1
2024-02-03Rename `PlateformSpecific` variant in `Action` to `Custom`Libravatar Héctor Ramón Jiménez1-4/+4
2024-02-03feat: somewhere to place extra actions by platformLibravatar ShootingStarDragons1-0/+6
I have view iced-sckt forked iced, and add the extra actions. and there do are some extra actions, like set margin for layer-shell, set lock for ext-session-shell. I think add an any will be of help maybe
2023-12-02Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez1-4/+4
2023-11-29Implement `Command::run` for executing a `Stream` to completionLibravatar Héctor Ramón Jiménez1-1/+8
2023-03-05Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez1-0/+0
2023-03-05Converge `Command` types from `iced_futures` and `iced_native`Libravatar Héctor Ramón Jiménez1-3/+5
2023-02-24Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez1-0/+16
2023-01-27Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck1-3/+3
2023-01-09add `window::Id` to `Event` and `Action`Libravatar Richard1-3/+5
2022-08-18Implement `SetMode` and `FetchMode` window actionsLibravatar Héctor Ramón Jiménez1-2/+2
2022-08-17Use `FnOnce` in `Command::perform`Libravatar Héctor Ramón Jiménez1-1/+1
... and revert `FnMut` usage.
2022-08-12Relax `Fn` trait bounds in `Command` & `Action`Libravatar 无限UCW1-1/+1
2022-07-28Draft widget operationsLibravatar Héctor Ramón Jiménez1-0/+7
2022-04-30Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez1-0/+4
2022-04-26Introduce `QueryInformation` to `system::Action`Libravatar Richard1-2/+2
2022-04-26Add new `System` variant to `Action`Libravatar Richard1-0/+6
2022-01-28Use `MaybeSend` in `perform` and `map` for `Command`Libravatar Héctor Ramón Jiménez1-1/+6
2021-09-13Write missing docs and `Debug` implementations for `native`Libravatar Héctor Ramón Jiménez1-0/+22
2021-09-02Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez1-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!)