summaryrefslogtreecommitdiffstats
path: root/native/src/widget/toggler.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-324/+0
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-241-2/+1
|
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-241-6/+7
|
* Use `Pixels` for `spacing`Libravatar Héctor Ramón Jiménez2023-02-171-4/+4
|
* Use `Pixels` for `size` methodsLibravatar Héctor Ramón Jiménez2023-02-171-2/+2
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-171-5/+5
|
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-10/+6
|
* Rename `is_checked` to `is_toggled` in `Toggler`Libravatar Héctor Ramón Jiménez2023-01-021-9/+9
|
* Use same name & order for toggler::new and helperLibravatar 13r0ck2022-12-221-9/+9
| | | | | | | The helper function for the toggler widget switched the order and name of the arguments passed when creating the toggler widget. This just standardizes the order whether the dev is using the helper or the associated function.
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-201-2/+2
|
* Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-021-2/+2
|\
| * Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-091-2/+2
| |
* | non uniform border radius for quadsLibravatar Robert Krahn2022-11-031-2/+2
|/
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-1/+4
|
* Address Clippy lintsLibravatar Poly2022-07-091-2/+5
|
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-5/+5
|
* Implement theme styling for `Toggler`Libravatar Héctor Ramón Jiménez2022-06-011-11/+21
| | | | ... and wire up theming to the `styling` example.
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-0/+1
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-0/+2
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-091-2/+1
| | | | 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-10/+2
|\
| * Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-10/+2
| |
* | Introduce lifetime to `on_change` handler for `Toggler`Libravatar Héctor Ramón Jiménez2022-02-131-2/+2
|/
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-0/+1
|
* Lower text::Renderer's Font bound from Copy to CloneLibravatar Olivier Pinon2021-12-101-2/+2
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-3/+3
| | | | Widgets now can invalidate the current layout of the application on demand.
* Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-041-14/+22
|
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-021-1/+1
| | | | This keeps the order of the arguments consistent with `draw`.
* Fix missing lifetime in doc example for `Toggler`Libravatar Héctor Ramón Jiménez2021-11-011-1/+1
|
* Introduce state lifetime for `style_sheet` in `Toggler`Libravatar Héctor Ramón Jiménez2021-10-311-7/+8
|
* Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-6/+6
|
* Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-2/+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 `TextInput`Libravatar Héctor Ramón Jiménez2021-10-201-5/+4
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-1/+2
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-57/+31
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-8/+13
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-3/+3
|
* Use intra-doc links in `Toggler` docsLibravatar Héctor Ramón2021-06-031-23/+0
|
* Rename `text_align` to `text_alignment` in `Toggler`Libravatar Héctor Ramón2021-06-031-8/+6
|
* Update documentation of `Toggler`Libravatar Kaiden422021-06-031-1/+1
|
* Change label of `Toggler` to optionalLibravatar Kaiden422021-06-031-29/+45
|
* Add alignment of `Toggler` label.Libravatar Kaiden422021-06-031-1/+25
|
* fix missing semicolon in doc testLibravatar Kaiden422021-06-031-1/+1
|
* Implement `Toggler` widget for iced_nativeLibravatar Kaiden422021-06-031-0/+262