summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Take `Cow` in `Text::new`Libravatar Ram.Type-02022-09-211-2/+2
|
* Expose `overlay::Element`Libravatar Héctor Ramón Jiménez2022-09-211-0/+7
|
* Fix doc comments in `overlay`Libravatar Héctor Ramón Jiménez2022-09-211-3/+2
|
* Make menu style accessibleLibravatar 0x1922022-09-212-0/+11
|
* Remove `window::Mode` and introduce `Settings::visible`Libravatar Héctor Ramón Jiménez2022-08-184-35/+5
| | | | Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
* Implement `scrollable::snap_to` operationLibravatar Héctor Ramón Jiménez2022-08-041-3/+3
|
* Implement `focus_previous` operationLibravatar Héctor Ramón Jiménez2022-08-041-0/+8
|
* Implement `focus_next` operationLibravatar Héctor Ramón Jiménez2022-08-022-1/+16
| | | | ... as well as a `count_focusable` composable helper!
* Implement `Widget::operate` for `TextInput`Libravatar Héctor Ramón Jiménez2022-07-281-1/+3
|
* Use `ToString` for `Text::new` instead of `Into<String>`Libravatar Héctor Ramón Jiménez2022-07-271-1/+1
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-278-683/+49
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-0/+1
| | | | ... and check those in CI as well!
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-5/+13
| | | | ... and explicitly annotate crates as well.
* Remove redundant `crate::Theme` in alias of `Element`Libravatar Héctor Ramón Jiménez2022-07-082-2/+2
|
* Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure`Libravatar Héctor Ramón Jiménez2022-07-084-9/+15
|
* Fix missing docs in `iced` crateLibravatar Héctor Ramón Jiménez2022-07-083-1/+3
|
* Make widget aliases in `iced` compatible with `iced_native`Libravatar Héctor Ramón Jiménez2022-07-082-80/+58
|
* Add `theme::Application` styling support to `Sandbox`Libravatar Héctor Ramón Jiménez2022-07-081-3/+13
|
* Add `Style` variant support to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-07-081-1/+15
|
* Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-072-4/+2
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-072-2/+2
|
* Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez2022-06-072-2/+2
|
* Implement theme styling for `Checkbox`Libravatar Héctor Ramón Jiménez2022-06-042-2/+2
|
* Implement theme styling for `Toggler`Libravatar Héctor Ramón Jiménez2022-06-012-2/+2
| | | | ... and wire up theming to the `styling` example.
* Implement theme styling for `Radio`Libravatar Héctor Ramón Jiménez2022-05-272-6/+6
|
* Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez2022-05-262-2/+2
|
* Rename `theme::Definition` to `application::StyleSheet`Libravatar Héctor Ramón Jiménez2022-05-264-7/+9
|
* Let a `Theme` control the background color of an applicationLibravatar Héctor Ramón Jiménez2022-05-254-50/+8
| | | | ... and remove `Application::background_color`
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-149-88/+165
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-046-32/+130
|\
| * Expose `Padding` in `iced` root crateLibravatar Héctor Ramón Jiménez2022-05-031-2/+2
| |
| * Indicate feature-flagged modules in documentationLibravatar Héctor Ramón Jiménez2022-05-022-0/+9
| |
| * Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-023-28/+28
| |
| * Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-0/+78
| |
| * Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-0/+1
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-305-27/+27
| |
| * Implemented Tooltip as PureLibravatar Casper Rogild Storm2022-04-221-0/+10
| |
* | Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-301-1/+3
| |
* | Change `ContextCreationFailed` to `GraphicsCreationFailed`Libravatar Richard2022-04-271-5/+5
| |
* | Export new `system` moduleLibravatar Richard2022-04-261-0/+1
| |
* | Introduce `Error::ContextCreationFailed`Libravatar Richard2022-04-201-5/+5
|/
* Implement `pure` version of `Svg` widgetLibravatar Héctor Ramón Jiménez2022-03-221-0/+6
|
* Implement `pure` version of `QRCode` widgetLibravatar Héctor Ramón Jiménez2022-03-211-0/+6
|
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-162-31/+161
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-091-3/+3
|
* Implement `pure` version of `Canvas` widgetLibravatar Héctor Ramón Jiménez2022-03-091-0/+6
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-092-40/+180
| | | | 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-071-2/+2
|\
| * Expose `ContentFit` in rootLibravatar Héctor Ramón Jiménez2022-02-162-3/+2
| |
| * Add support for `ContentFit` for `Image`Libravatar Emi Simpson2022-02-161-0/+1
| |