summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement `Toggler` widget for iced_nativeLibravatar Kaiden422021-06-031-3/+3
|
* Merge branch 'hecrj:master' into upgrade-wgpuLibravatar Aaron Housh2021-05-191-1/+1
|\
| * Change examples to point to 0.3 examples, not 0.2Libravatar Riccardo D'Ambrosio2021-05-131-1/+1
| |
* | Run cargo fmtLibravatar Dispersia2021-04-121-8/+10
|/
* use Mode::Hidden insteadLibravatar Cory Forsstrom2021-04-092-11/+4
|
* add window visibilityLibravatar Cory Forsstrom2021-04-081-0/+11
|
* Add support for graceful exits in `Application`Libravatar Héctor Ramón Jiménez2021-03-302-4/+22
| | | | | - `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method
* Introduce `internal_backend` to `iced_wgpu::Settings`Libravatar Héctor Ramón Jiménez2021-03-251-1/+1
|
* Implement stub `Clipboard` in `iced_web`Libravatar Héctor Ramón Jiménez2021-03-111-2/+6
| | | | | We need to figure out browser permissions and use of unstable `web-sys` APIs
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-113-11/+28
|
* feat(native): add Tooltip widgetLibravatar Yusuf Bera Ertan2021-02-151-2/+3
|
* Make iced::Error Send + SyncLibravatar Taiki Endo2021-01-291-1/+12
|
* 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>
* Keep old behavior for `Executor` feature flagsLibravatar Héctor Ramón Jiménez2021-01-151-14/+7
|
* Add `smol` async runtimeLibravatar Jayce Fayne2021-01-142-7/+31
|
* Merge remote-tracking branch 'tarkah/image-pane' into image-paneLibravatar Héctor Ramón Jiménez2020-12-181-1/+2
|\
| * remove re-export on viewer::StateLibravatar Cory Forsstrom2020-05-271-1/+3
| |
| * rename to image::ViewerLibravatar Cory Forsstrom2020-05-261-12/+4
| |
| * Rename and add to iced image moduleLibravatar Cory Forsstrom2020-05-261-9/+11
| |
| * Add `ImagePane` widgetLibravatar Cory Forsstrom2020-05-261-2/+8
| |
* | Update example links to point to `0.2` branchLibravatar Héctor Ramón Jiménez2020-11-263-20/+23
| |
* | Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-267-75/+18
| | | | | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* | Rename `keyboard::ModifiersState` to `Modifiers`Libravatar Héctor Ramón Jiménez2020-11-261-1/+1
| |
* | Merge pull request #595 from valbendan/masterLibravatar Héctor Ramón2020-11-252-6/+23
|\ \ | | | | | | upgrade tokio to latest version(v0.3)
| * | Introduce `tokio_old` featureLibravatar Héctor Ramón Jiménez2020-11-252-5/+22
| | | | | | | | | | | | | | | This feature allows users to rely on the `0.2` version of `tokio` while the async ecosystem upgrades to the latest version.
| * | Update src/executor.rs Libravatar dabaichi2020-11-061-2/+1
| | | | | | | | | | | | | | | fix executor other than tokio Co-authored-by: Héctor Ramón <hector0193@gmail.com>
| * | upgrade tokio to latest version(v0.3)Libravatar valbendan2020-11-051-1/+2
| | |
* | | Implement `QRCode` widgetLibravatar Héctor Ramón Jiménez2020-11-201-0/+11
|/ /
* | Fix DimensionsMismatch error messageLibravatar sum-elier2020-11-011-1/+1
| | | | | | | | | | | | The values passed to write! were shifted 1 to the left. Fixes #591
* | Remove `executor::Null` from the root public APILibravatar Héctor Ramón Jiménez2020-10-173-4/+3
| | | | | | | | | | | | | | 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.
* | Fixes #539: Allow windows to be set always_on_topLibravatar Tom2020-09-281-1/+6
| |
* | Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-085-12/+61
| |
* | Merge branch 'feature/rule-widget' into masterLibravatar Héctor Ramón Jiménez2020-08-221-3/+3
|\ \
| * | widget Rule addedLibravatar Billy Messenger2020-08-221-3/+3
| | |
* | | Add 'transparent' in window settingLibravatar Katherine Philip2020-08-171-0/+5
|/ /
* | Rename `ComboBox` to `PickList`Libravatar Héctor Ramón Jiménez2020-07-101-5/+5
| |
* | Draft `ComboBox` and `Menu` layerLibravatar Héctor Ramón Jiménez2020-07-081-5/+5
| |
* | Export `Canvas` if `glow_canvas` feature is enabledLibravatar Héctor Ramón Jiménez2020-07-081-1/+1
| |
* | Move `Icon` to `iced` crate and introduce `Error`Libravatar Héctor Ramón Jiménez2020-07-014-5/+142
| |
* | Add support for setting window iconLibravatar Francesco Pasa2020-07-012-2/+7
| | | | | | | | | | | | This adds a new property from Settings::window::iconand a Icon struct which can be converted to winit::window::Icon. It also adds code to display this icon in Application::run. Due to the fact that the Icon struct is non copyable, I also had to remove the Copy trait from all Settings, both in `iced` and `iced_winit`.
* | Add `min_size` and `max_size` to `window::Settings`Libravatar Héctor Ramón Jiménez2020-06-252-7/+24
| |
* | Merge pull request #415 from hecrj/feature/configurable-scale-factorLibravatar Héctor Ramón2020-06-202-1/+39
|\ \ | | | | | | Add `scale_factor` to `Application` and `Sandbox`
| * | Add `scale_factor` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-192-1/+39
| | |
* | | Make default text size configurable in `Settings`Libravatar Héctor Ramón Jiménez2020-06-192-3/+25
|/ /
* | Add `background_color` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-122-2/+34
| |
* | Revert "Merge pull request #371 from myfreeweb/window-alpha"Libravatar Héctor Ramón Jiménez2020-06-012-27/+2
| | | | | | | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6.
* | Add custom window background/clear color (incl. transparency) support, fixes ↵Libravatar Greg V2020-06-012-2/+27
| | | | | | | | | | | | | | | | | | | | | | | | #272 wgpu would currently ignore the alpha: https://github.com/gfx-rs/wgpu/issues/687 glow (and naively patched wgpu) requires premultiplied alpha, so if you don't multiply the RGB by the A right now, the semi-transparent color would be wrong (too bright). winit with_transparent doesn't seem necessary.
* | Introduce feature flags to enable `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-275-29/+49
| | | | | | | | Also keep `iced_wgpu` as the default renderer for the time being.
* | Introduce `Program` and `State`Libravatar Héctor Ramón Jiménez2020-05-211-15/+22
| |
* | Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-215-35/+21
| |