summaryrefslogtreecommitdiffstats
path: root/native/src/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Lower text::Renderer's Font bound from Copy to CloneLibravatar Olivier Pinon2021-12-106-22/+23
|
* Decouple the image Handle type from the iced_native implementationLibravatar Olivier Pinon2021-12-102-22/+28
|
* Make TextInput emit a Submit message when the key NumpadEnter is pressedLibravatar nlevy2021-12-091-1/+2
|
* 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-2916-79/+77
| | | | Widgets now can invalidate the current layout of the application on demand.
* 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
|/
* Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-0413-207/+261
|
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-0216-24/+35
| | | | 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-311-89/+4
| |
* | Introduce first-class `image` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-312-128/+5
| |
* | Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-317-50/+51
| |
* | Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-3118-35/+38
| |
* | Implement `Widget::draw` for `Svg`Libravatar Héctor Ramón Jiménez2021-10-281-3/+5
| |
* | 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
| |
* | Implement `Widget::mouse_interaction` for `Toggler`Libravatar Héctor Ramón Jiménez2021-10-281-0/+13
| |
* | Implement `Widget::draw` for `Toggler`Libravatar Héctor Ramón Jiménez2021-10-281-53/+91
| |
* | Implement `Widget::draw` for `Rule`Libravatar Héctor Ramón Jiménez2021-10-281-24/+63
| |
* | Fix scrollbar clipping in `Scrollable` draw logicLibravatar Héctor Ramón Jiménez2021-10-281-25/+32
| |
* | Implement `Widget::draw` for `ProgressBar`Libravatar Héctor Ramón Jiménez2021-10-281-40/+60
| |
* | Implement `Widget::mouse_interaction` for `image::Viewer`Libravatar Héctor Ramón Jiménez2021-10-281-0/+18
| |
* | Implement `Widget::draw` for `image::Viewer`Libravatar Héctor Ramón Jiménez2021-10-282-5/+17
| |
* | Implement `Widget::mouse_interaction` for `PickList`Libravatar Héctor Ramón Jiménez2021-10-281-0/+16
| |
* | Implement `Widget::draw` for `PickList`Libravatar Héctor Ramón Jiménez2021-10-281-1/+61
| |
* | Wire up style to `PickList` and `overlay::Menu`Libravatar Héctor Ramón Jiménez2021-10-281-31/+15
| |
* | Implement `Widget::mouse_interaction` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-255-30/+126
| | | | | | | | | | | | ... and fix rendering of drag interaction in `PaneGrid` by introducing an explicit `with_translation` method to `Renderer` and simplifying the `with_layer` and `Clip` primitive.
* | Implement `Widget::draw` for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-10-253-144/+229
| |