summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Split `iced_futures` into different `backend` implementationsLibravatar Héctor Ramón Jiménez2022-01-281-1/+1
|
* Allow Sandbox applications to exit.Libravatar Drake Tetreault2021-12-291-0/+11
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-151-1/+1
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-7/+2
| | | | | | | | | 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!)
* Force `Application::Message` to implement `Clone`Libravatar Héctor Ramón Jiménez2021-07-131-1/+1
| | | | | | A `Message` should represent an application event (e.g. user interactions, command results, subscription results...). Therefore, it should always consist of pure, cloneable data.
* docs: update all 0.2 github links to 0.3Libravatar Yusuf Bera Ertan2021-06-141-11/+11
|
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-2/+7
|
* update example description at sandbox's documentation (#710)Libravatar GunpowderGuy2021-01-221-3/+3
| | | | | | | | | * Update sandbox.rs * Update sandbox.rs * format Co-authored-by: Diego Rosario <diegorosario2013@gmail.com>
* Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-261-11/+11
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-23/+1
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Remove `executor::Null` from the root public APILibravatar Héctor Ramón Jiménez2020-10-171-2/+1
| | | | | | | Using an `Application` with `executor::Null` does not make sense, as the whole purpose of an `Application` is to allow executing async actions. When async actions are not needed, `Sandbox` should be used instead.
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-3/+4
|
* Add `scale_factor` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-191-1/+20
|
* Add `background_color` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-121-1/+17
|
* Mention flags are not supported by `Sandbox`Libravatar Héctor Ramón Jiménez2020-04-151-3/+3
| | | | Fixes #291
* Improve docs for `Sandbox` and `Application`Libravatar Héctor Ramón Jiménez2020-04-021-50/+61
|
* Clarify return policy of `Application::run`Libravatar Héctor Ramón Jiménez2020-04-021-2/+2
|
* Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-2/+3
|
* Add `Application::Executor` associated typeLibravatar Héctor Ramón Jiménez2020-01-201-1/+2
|
* Remove `Message: Clone` bound in `Sandbox`Libravatar Héctor Ramón Jiménez2020-01-131-1/+1
|
* Write docs for subscriptions and reorganize a bitLibravatar Héctor Ramón Jiménez2019-12-141-1/+1
|
* Draft first version of event subscriptions :tada:Libravatar Héctor Ramón Jiménez2019-12-051-1/+5
|
* Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-251-5/+5
|
* Spawn `Command` futures in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-241-1/+1
|
* Write docs for `iced` and `iced_native`Libravatar Héctor Ramón Jiménez2019-11-221-2/+112
|
* Implement `iced::Sandbox` trait for simple appsLibravatar Héctor Ramón Jiménez2019-11-211-0/+45