summaryrefslogtreecommitdiffstats
path: root/native/src/widget/pick_list.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-657/+0
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-02-241-3/+3
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-241-3/+3
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-241-12/+13
* Fix `PickList` line heightLibravatar Héctor Ramón Jiménez2023-02-241-7/+7
* Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez2023-02-171-17/+15
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-171-13/+12
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-3/+3
* Inline `Handle::content` for simplicity and efficiencyLibravatar Héctor Ramón Jiménez2023-02-141-31/+22
* Provide `State` reference instead of closure to `pick_list::draw`Libravatar Héctor Ramón Jiménez2023-02-141-3/+2
* Use `char` instead of `String` for `pick_list::Icon`Libravatar Héctor Ramón Jiménez2023-02-141-19/+16
* Move `Handle` and `Icon` definitions in `pick_list`Libravatar Héctor Ramón Jiménez2023-02-141-70/+70
* Rename `HandleContent` to `Icon` and simplify genericsLibravatar Héctor Ramón Jiménez2023-02-141-54/+20
* Extend pick_list::HandleLibravatar Casper Storm2023-02-141-14/+68
* Merge pull request #1562 from casperstorm/feat/custom-accessory-contentLibravatar Héctor Ramón2023-01-021-14/+83
|\
| * Rename `pick_list::AccessoryContent` to `Handle`Libravatar Héctor Ramón Jiménez2022-12-141-32/+29
| * Added accessory_content_color to appreance.Libravatar Casper Rogild Storm2022-11-291-1/+1
| * Correctly pass accessory content.Libravatar Casper Rogild Storm2022-11-291-0/+2
| * Added ability to customize accessory content.Libravatar Casper Rogild Storm2022-11-291-14/+84
* | Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-021-8/+30
|\ \
| * | Allow &mut self in overlayLibravatar tarkah2022-11-291-1/+1
| |/
| * Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-091-7/+29
* | non uniform border radius for quadsLibravatar Robert Krahn2022-11-031-1/+1
|/
* Fix drop down not closing when inside scrollableLibravatar Cory Forsstrom2022-10-271-3/+3
* Fix latest `clippy` lintsLibravatar Héctor Ramón Jiménez2022-09-231-3/+5
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-163/+167
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-5/+5
* Address Clippy lintsLibravatar Poly2022-07-091-7/+6
* 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-071-3/+4
* Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez2022-06-071-2/+6
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-0/+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
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-071-47/+2
|\
| * Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-20/+2
* | Add `overlay` support in `iced_pure` and port `PickList` :tada:Libravatar Héctor Ramón Jiménez2022-02-161-240/+364
|/
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-0/+2
* Lower text::Renderer's Font bound from Copy to CloneLibravatar Olivier Pinon2021-12-101-4/+4
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-4/+4
* Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-041-7/+9
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-021-1/+1
* Introduce state lifetime for `style_sheet` in `PickList`Libravatar Héctor Ramón Jiménez2021-10-311-2/+2
* Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-7/+7
* Implement `Widget::mouse_interaction` for `PickList`Libravatar Héctor Ramón Jiménez2021-10-281-0/+16
* Implement `Widget::draw` for `PickList`Libravatar Héctor Ramón Jiménez2021-10-281-1/+61
* Wire up style to `PickList` and `overlay::Menu`Libravatar Héctor Ramón Jiménez2021-10-281-31/+15