summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Rename `window::Backend` to `Compositor`Libravatar Héctor Ramón Jiménez2020-05-191-1/+1
|
* Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2020-04-302-3/+2
|
* Disable `time` module on Wasm for nowLibravatar Héctor Ramón Jiménez2020-04-301-1/+4
|
* Implement `time::every` in `iced_futures`Libravatar Héctor Ramón Jiménez2020-04-302-0/+18
|
* Remove inconsistent `input` module in `iced_native`Libravatar Héctor Ramón Jiménez2020-04-302-7/+2
|
* Remove `ButtonState`Libravatar Héctor Ramón Jiménez2020-04-301-3/+0
|
* Merge branch 'master' into feature/canvas-interactionLibravatar Héctor Ramón Jiménez2020-04-291-2/+2
|\
| * Make `Font` an associated type of `text::Renderer`Libravatar Héctor Ramón Jiménez2020-04-231-2/+2
| |
* | Move `MouseCursor` to `iced_core`Libravatar Héctor Ramón Jiménez2020-04-291-1/+2
| |
* | Remove `Drawable` and rename `State` to `Program`Libravatar Héctor Ramón Jiménez2020-04-281-1/+1
| |
* | Move reusable `mouse` types to `iced_core`Libravatar Héctor Ramón Jiménez2020-04-282-0/+7
|/
* Mention flags are not supported by `Sandbox`Libravatar Héctor Ramón Jiménez2020-04-151-3/+3
| | | | Fixes #291
* add helper for settings flags initLibravatar Rob Ede2020-04-061-0/+16
|
* Document widget feature flagsLibravatar Héctor Ramón Jiménez2020-04-052-1/+11
|
* Fix a couple of links in documentationLibravatar Héctor Ramón Jiménez2020-04-021-2/+1
|
* Write documentation for the `debug` featureLibravatar Héctor Ramón Jiménez2020-04-021-0/+3
|
* Improve docs for `Sandbox` and `Application`Libravatar Héctor Ramón Jiménez2020-04-025-107/+122
|
* Fix minor documentation issuesLibravatar Héctor Ramón Jiménez2020-04-021-0/+4
|
* Clarify return policy of `Application::run`Libravatar Héctor Ramón Jiménez2020-04-022-6/+6
|
* Move `Space` to `widget` moduleLibravatar Héctor Ramón Jiménez2020-04-022-2/+2
|
* Implement `enter` for `executor::Default` in WasmLibravatar Héctor Ramón Jiménez2020-03-301-1/+9
|