summaryrefslogtreecommitdiffstats
path: root/native/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |/
* / Add checkbox text_color stylingLibravatar Daniel May2021-11-141-12/+12
|/
* 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
| |
* | Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-3112-82/+80
| |
* | Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-3125-54/+51
| |
* | Implement `Widget::draw` for `element::Explain`Libravatar Héctor Ramón Jiménez2021-10-281-5/+33
| |
* | Implement `Widget::draw` for `Svg`Libravatar Héctor Ramón Jiménez2021-10-281-3/+5
| |
* | Remove unused import for `toggler` in `iced_graphics`Libravatar Héctor Ramón Jiménez2021-10-281-1/+0
| |
* | Implement `Widget::draw` for `Tooltip`Libravatar Héctor Ramón Jiménez2021-10-281-31/+123
| |
* | Fix unused variables in `Widget::draw` for `Space`Libravatar Héctor Ramón Jiménez2021-10-281-3/+3
| |