summaryrefslogtreecommitdiffstats
path: root/native (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Address Clippy lintsLibravatar Poly2022-07-0917-81/+72
|
* Add `Style` variant support to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-07-082-11/+11
|
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-084-48/+103
|\
| * Prevent pane grid title bar content and controls from overlappingLibravatar mtkennerly2022-06-071-24/+47
| |
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-311-1/+1
| |
| * Don't process captured overlay statusesLibravatar Cory Forsstrom2022-05-301-0/+4
| |
| * Merge pull request #1341 from nicksenger/fix/component-overlay-rebuildLibravatar Héctor Ramón2022-05-142-22/+50
| |\ | | | | | | fix: prevent building component overlay with stale layout
| | * Relayout base layer when layout is invalidated from an overlayLibravatar Héctor Ramón Jiménez2022-05-132-22/+50
| | |
* | | 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-072-42/+72
| | |
* | | Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-077-48/+94
| | |
* | | Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez2022-06-073-16/+36
| | |
* | | 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
| | |
* | | Rename `theme::Definition` to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-05-263-6/+10
| | |
* | | Let a `Theme` control the `text_color` of an applicationLibravatar Héctor Ramón Jiménez2022-05-262-2/+11
| | |
* | | 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-1432-31/+142
|/ / | | | | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* | Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-0423-153/+208
|\|
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-4/+4
| |
| * 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-3015-42/+51
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-304-9/+9
| |
| * 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
| |
* | Run `system::information` in a different threadLibravatar Héctor Ramón Jiménez2022-05-041-2/+5
| | | | | | | | ... since it seems it can block for a couple of seconds.
* | Simplify the `QueryInformation` ActionLibravatar Richard2022-04-271-1/+1
| |
* | Add memory usage to `Information` structLibravatar Richard2022-04-261-1/+3
| |
* | Add graphics information to `system::Information`Libravatar Richard2022-04-261-0/+4
| |
* | Add `system_information` exampleLibravatar Richard2022-04-261-4/+0
| |
* | Turn `Information` fields `pub`Libravatar Richard2022-04-261-8/+16
| |
* | Introduce `QueryInformation` to `system::Action`Libravatar Richard2022-04-264-4/+52
| |
* | Add new `System` variant to `Action`Libravatar Richard2022-04-264-0/+13
|/
* 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-292-4/+4
|\ | | | | Forward overlay() calls in iced_pure::element::Map
| * Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez2022-03-292-4/+4
| |
* | Fix `KeyPressed` event being always `Captured` by `TextInput`Libravatar Héctor Ramón Jiménez2022-03-281-2/+2
|/