summaryrefslogtreecommitdiffstats
path: root/native/src/widget/tooltip.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-387/+0
|
* Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez2023-02-171-12/+10
|
* Use `Pixels` for `size` methodsLibravatar Héctor Ramón Jiménez2023-02-171-3/+3
|
* Allow &mut self in overlayLibravatar tarkah2022-11-291-2/+2
|
* Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-091-2/+2
|
* Take `Cow` in `Text::new`Libravatar Ram.Type-02022-09-211-3/+5
|
* Fix incorrect layout in `mouse_interaction` for `Tooltip`Libravatar Héctor Ramón Jiménez2022-08-261-1/+1
|
* Don't constrict tooltip text layout to viewport sizeLibravatar Cory Forsstrom2022-08-171-2/+7
|
* Add snap within viewport builderLibravatar Cory Forsstrom2022-08-171-15/+27
|
* Don't clip tooltipLibravatar Cory Forsstrom2022-08-171-1/+1
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-121/+150
|
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-4/+5
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-071-11/+25
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-0/+3
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez2022-05-021-1/+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
|
* Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-13/+2
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-2/+7
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-4/+4
| | | | Widgets now can invalidate the current layout of the application on demand.
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-021-0/+11
| | | | This keeps the order of the arguments consistent with `draw`.
* Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez2021-10-311-3/+6
|
* Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-4/+5
|
* Implement `Widget::draw` for `Tooltip`Libravatar Héctor Ramón Jiménez2021-10-281-31/+123
|
* Implement `Widget::draw` for `TextInput`Libravatar Héctor Ramón Jiménez2021-10-201-2/+2
|
* Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-9/+7
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-5/+5
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-36/+7
|
* Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-101-3/+3
|
* Hide `Text` as an implementation detail of `Tooltip`Libravatar Héctor Ramón Jiménez2021-02-241-8/+22
|
* Add `style` and `padding` to `Tooltip`Libravatar Héctor Ramón Jiménez2021-02-231-7/+33
|
* Introduce `Tooltip::gap` to control spacingLibravatar Héctor Ramón Jiménez2021-02-231-0/+10
|
* Change `Tooltip` to support `Text` only for nowLibravatar Héctor Ramón Jiménez2021-02-231-167/+27
|
* feat(native): add Tooltip widgetLibravatar Yusuf Bera Ertan2021-02-151-0/+300