summaryrefslogtreecommitdiffstats
path: root/native (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Fix missing lifetime in doc example for `Toggler`Libravatar Héctor Ramón Jiménez2021-11-011-1/+1
|
* Merge branch 'master' into remove-renderer-traitsLibravatar Héctor Ramón Jiménez2021-10-311-22/+20
|\
| * Fix issue with text selection in text_input widgetLibravatar cmot172021-10-251-23/+21
| |
* | Introduce state lifetime for `style_sheet` in `Toggler`Libravatar Héctor Ramón Jiménez2021-10-311-7/+8
| |
* | Reintroduce `Box` for `style_sheet` in `TextInput`Libravatar Héctor Ramón Jiménez2021-10-311-2/+5
| |
* | Reintroduce `Box` for `style_sheet` in `Slider`Libravatar Héctor Ramón Jiménez2021-10-311-3/+6
| |
* | Reintroduce `Box` for `style_sheet` in `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-311-3/+6
| |
* | Introduce state lifetime for `style_sheet` in `Rule`Libravatar Héctor Ramón Jiménez2021-10-311-7/+7
| |
* | Reintroduce `Box` for `style_sheet` in `Radio`Libravatar Héctor Ramón Jiménez2021-10-311-3/+6
| |
* | Introduce state lifetime for `style_sheet` in `ProgressBar`Libravatar Héctor Ramón Jiménez2021-10-311-7/+8
| |
* | Introduce state lifetime for `style_sheet` in `PickList`Libravatar Héctor Ramón Jiménez2021-10-311-2/+2
| |
* | Reintroduce `Box` for `style_sheet` in `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez2021-10-314-12/+24
| |
* | Reintroduce `Box` for `style_sheet` in `Checkbox`Libravatar Héctor Ramón Jiménez2021-10-311-3/+6
| |
* | Reintroduce `Box` for `style_sheet` in `Button`Libravatar Héctor Ramón Jiménez2021-10-311-3/+6
| |
* | Introduce first-class `svg` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-313-89/+95
| |
* | Introduce first-class `image` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-314-128/+128
| |