summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove `Sandbox` trait :tada:Libravatar Héctor Ramón Jiménez2024-03-171-199/+0
|
* Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-071-1/+3
|
* Fix broken links in documentationLibravatar Héctor Ramón Jiménez2024-03-071-3/+1
|
* Simplify theming for `Application`Libravatar Héctor Ramón Jiménez2024-03-061-6/+6
|
* Point doc links to `0.12` branchLibravatar Héctor Ramón Jiménez2024-02-151-11/+11
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-281-11/+11
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-04-131-11/+11
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-181-11/+11
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-141-11/+11
|
* Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez2023-01-121-11/+0
| | | | ... and implement `TextInput` cursor blink :tada:
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-071-11/+11
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-11/+11
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-5/+5
|
* Add `theme::Application` styling support to `Sandbox`Libravatar Héctor Ramón Jiménez2022-07-081-3/+13
|
* Let a `Theme` control the background color of an applicationLibravatar Héctor Ramón Jiménez2022-05-251-12/+1
| | | | ... and remove `Application::background_color`
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-5/+20
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-021-11/+11
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-11/+11
|
* 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