summaryrefslogtreecommitdiffstats
path: root/native (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use instant instead of std::instantLibravatar Kai Mast2022-01-282-1/+2
|
* Experimental wgpu WebGL backend supportLibravatar Vladyslav Nikonov2022-01-281-2/+40
| | | | | | | | - Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef
* Fix previous `overlay` affecting `cursor_position` during `draw` in ↵Libravatar Héctor Ramón Jiménez2022-01-221-2/+4
| | | | `UserInterface`
* Remove ambiguous `text_color` attributes for `Checkbox` and `Radio`Libravatar Héctor Ramón Jiménez2022-01-202-30/+14
| | | | Instead, always use a `StyleSheet`.
* Add worker example to docs of `subscription::unfold`Libravatar Héctor Ramón Jiménez2022-01-171-0/+65
|
* Simplify `run` and `unfold` helpers to build a `Subscription`Libravatar Héctor Ramón Jiménez2022-01-171-26/+17
|
* Draft `websocket` example :tada:Libravatar Héctor Ramón Jiménez2022-01-161-73/+25
|
* Implement `subscription::worker` :tada:Libravatar Héctor Ramón Jiménez2022-01-141-0/+44
|
* Implement `subscription::unfold` :tada:Libravatar Héctor Ramón Jiménez2022-01-141-1/+22
|
* Implement `subscription::run` :tada:Libravatar Héctor Ramón Jiménez2022-01-141-0/+19
|
* Rewrite `events` and `events_with` with a new `Runner` abstractionLibravatar Héctor Ramón Jiménez2022-01-142-45/+62
|
* Write missing docs for `user_interface` moduleLibravatar Héctor Ramón Jiménez2022-01-122-1/+7
|
* Implement `Widget::overlay` for `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-122-215/+0
|
* Implement `Widget::mouse_interaction` for `Responsive`Libravatar Héctor Ramón Jiménez2022-01-111-21/+41
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-1122-54/+145
|
* Invalidate widget tree from `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-115-22/+63
| | | | ... by introducing a new `invalidate_widgets` method to `Shell`
* Draft `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-113-1/+192
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-0312-19/+19
|
* Merge pull request #1154 from nicksenger/overlay-componentsLibravatar Héctor Ramón2021-12-191-1/+9
|\ | | | | Implement `overlay` for `Component`
| * Simplify `component` implementation in `iced_lazy`Libravatar Héctor Ramón Jiménez2021-12-131-1/+9
| |
* | Lower text::Renderer's Font bound from Copy to CloneLibravatar Olivier Pinon2021-12-108-24/+25
| |
* | Decouple the image Handle type from the iced_native implementationLibravatar Olivier Pinon2021-12-103-24/+35
|/
* Make TextInput emit a Submit message when the key NumpadEnter is pressedLibravatar nlevy2021-12-091-1/+2
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Remove unused field in `scrollable::Scrollbar`Libravatar Héctor Ramón Jiménez2021-12-071-4/+0
|
* Include alignment in the container layout hashLibravatar Imbris2021-12-061-0/+2
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-2924-117/+203
| | | | Widgets now can invalidate the current layout of the application on demand.
* Create `iced_lazy` and draft `Component` traitLibravatar Héctor Ramón Jiménez2021-11-291-0/+5
|
* Merge pull request #1118 from TannerRogalsky/native-web-fixesLibravatar Héctor Ramón2021-11-292-7/+6
|\ | | | | Native web fixes.
| * Use iced_futures utilities to make native work under wasm32 target.Libravatar Tanner Rogalsky2021-11-142-7/+6
| |
* | Merge pull request #1125 from iced-rs/fix/overlay-layer-clip-boundsLibravatar Héctor Ramón2021-11-231-1/+1
|\ \ | | | | | | Fix overflow of graphics primitives in overlays
| * | Fix overflow of graphics primitives in overlaysLibravatar Héctor Ramón Jiménez2021-11-211-1/+1
| | | | | | | | | | | | ... by using `overlay_bounds` instead of `viewport` as clip bounds for overlay layer in `UserInterface::draw`
* | | Fix implementation of `Widget::mouse_interaction` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-11-211-4/+27
|/ /
* | Merge pull request #1114 from tarkah/fix/slider-optimizationLibravatar Héctor Ramón2021-11-161-6/+16
|\ \ | | | | | | Don't rebroadcast redundant slider messages
| * | Derive `Eq` for `slider::State` againLibravatar Héctor Ramón Jiménez2021-11-151-1/+1
| | |
| * | Use `value` in `Slider` to store the `previous` valueLibravatar Héctor Ramón Jiménez2021-11-151-8/+3
| | |
| * | Don't rebroadcast redundant slider messagesLibravatar Cory Forsstrom2021-11-111-7/+22
| | |
* | | Merge pull request #1116 from gonsor/checkbox_text_colorLibravatar Héctor Ramón2021-11-151-12/+12
|\ \ \ | |_|/ |/| | Add checkbox text_color styling
| * | Add checkbox text_color stylingLibravatar Daniel May2021-11-141-12/+12
| |/
* / Disable default features in twox-hash dependency.Libravatar Tanner Rogalsky2021-11-141-1/+1
|/ | | | | We don't use twox-hash's random seeding features. Removing them makes this crate leaner and also more portable (specifically for web).
* Write missing documentation in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-053-1/+10
|
* Write documentation for `iced_native::text`Libravatar Héctor Ramón Jiménez2021-11-041-1/+19
|
* Write documentation for `iced_native::svg`Libravatar Héctor Ramón Jiménez2021-11-041-6/+4
|
* Write documentation for `iced_native::image`Libravatar Héctor Ramón Jiménez2021-11-041-3/+5
|
* Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-0417-234/+304
|
* Merge `iced_core::text` with `iced_native::text`Libravatar Héctor Ramón Jiménez2021-11-041-3/+28
|
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-0222-39/+60
| | | | This keeps the order of the arguments consistent with `draw`.
* Fix `mouse_interaction` using wrong layout in `PaneGrid`Libravatar Héctor Ramón Jiménez2021-11-011-3/+2
| | | | ... when no titlebar is present.
* Reintroduce `draw` method in `TextInput`Libravatar Héctor Ramón Jiménez2021-11-011-156/+174
| | | | ... which allows overriding the rendered value.