summaryrefslogtreecommitdiffstats
path: root/native/src/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-098-13/+25
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-0913-63/+56
|
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-081-25/+48
|\
| * Prevent pane grid title bar content and controls from overlappingLibravatar mtkennerly2022-06-071-24/+47
| |
* | Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-295-43/+69
| |
* | Remove unused code warningsLibravatar Héctor Ramón Jiménez2022-06-071-1/+1
| |
* | Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-071-20/+31
| |
* | Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-076-44/+85
| |
* | Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez2022-06-072-14/+31
| |
* | Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez2022-06-071-22/+33
| |
* | Implement theme styling for `Checkbox`Libravatar Héctor Ramón Jiménez2022-06-041-10/+20
| |
* | Implement theme styling for `ProgressBar`Libravatar Héctor Ramón Jiménez2022-06-011-13/+25
| |
* | Implement theme styling for `Rule`Libravatar Héctor Ramón Jiménez2022-06-011-13/+24
| |
* | Implement theme styling for `PaneGrid`Libravatar Héctor Ramón Jiménez2022-06-011-13/+26
| |
* | Implement theme styling for `Toggler`Libravatar Héctor Ramón Jiménez2022-06-011-11/+21
| | | | | | | | ... and wire up theming to the `styling` example.
* | Implement theme styling for `Radio`Libravatar Héctor Ramón Jiménez2022-05-271-17/+22
| |
* | Fix examples and doc-testsLibravatar Héctor Ramón Jiménez2022-05-261-1/+3
| |
* | Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez2022-05-262-29/+31
| |
* | Implement theme styling for `Slider`Libravatar Héctor Ramón Jiménez2022-05-261-16/+30
| |
* | Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-1422-18/+88
|/ | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-023-3/+3
|
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-308-11/+38
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-1/+1
|
* Restrict text width & height to prevent overflowLibravatar Cory Forsstrom2022-04-271-1/+2
|
* Manually center top aligned textLibravatar Cory Forsstrom2022-04-271-2/+4
|
* Use top alignment instead of new layerLibravatar Cory Forsstrom2022-04-271-17/+14
|
* Clip bounds to prevent text overflowLibravatar Cory Forsstrom2022-04-251-16/+18
|
* Don't wrap picklist label textLibravatar Cory Forsstrom2022-04-251-0/+1
|
* Reuse `Tooltip` draw logic in `iced_pure`Libravatar Héctor Ramón Jiménez2022-04-241-88/+131
|
* Implemented Tooltip as PureLibravatar Casper Rogild Storm2022-04-221-2/+2
|
* Fix slider's handle position calculationLibravatar MG_REX2022-03-291-4/+4
|
* Merge pull request #1294 from marienz/pure-overlayLibravatar Héctor Ramón2022-03-291-3/+3
|\ | | | | Forward overlay() calls in iced_pure::element::Map
| * Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez2022-03-291-3/+3
| |
* | Fix `KeyPressed` event being always `Captured` by `TextInput`Libravatar Héctor Ramón Jiménez2022-03-281-2/+2
|/
* Restore `TextInput::draw` helperLibravatar Héctor Ramón Jiménez2022-03-181-12/+24
| | | | This helper should be unnecessary in the future.
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-145-406/+547
|
* Implement `pure` version of `Rule` widgetLibravatar Héctor Ramón Jiménez2022-03-101-6/+6
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-092-2/+8
| | | | Instead, we can define the type aliases just once in the root crate!
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-0723-391/+180
|\
| * Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-2323-307/+39
| |
| * Hash `content_fit` in `hash_layout` of `Image` and `Svg`Libravatar Héctor Ramón Jiménez2022-02-162-0/+2
| |
| * Remove redundant `layout.bounds()` calls in `Image` and `Svg`Libravatar Héctor Ramón Jiménez2022-02-162-12/+10
| |
| * Add `ContentFit` support to `Svg` widgetLibravatar Héctor Ramón Jiménez2022-02-162-17/+67
| |
| * Center `Image` inside available bounds when possibleLibravatar Héctor Ramón Jiménez2022-02-161-9/+14
| |
| * Rename `Image::fit` to `content_fit`Libravatar Héctor Ramón Jiménez2022-02-161-6/+10
| | | | | | | | ... just for consistency!
| * Make documentation of `Image::fit` consistentLibravatar Héctor Ramón Jiménez2022-02-161-1/+1
| |
| * Use a new clipping layer only when necessary in `Image::draw`Libravatar Héctor Ramón Jiménez2022-02-161-2/+11
| |
| * Add support for `ContentFit` for `Image`Libravatar Emi Simpson2022-02-161-16/+50
| |
* | Add `overlay` support in `iced_pure` and port `PickList` :tada:Libravatar Héctor Ramón Jiménez2022-02-161-240/+364
| |
* | Implement `Radio` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-131-1/+1
| |