summaryrefslogtreecommitdiffstats
path: root/native/src/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reset `is_pasting` for `TextInput` even when unfocusedLibravatar Héctor Ramón Jiménez2022-10-291-0/+2
|
* Keep keyboard modifiers always in sync in `TextInput`Libravatar Héctor Ramón Jiménez2022-10-291-3/+1
|
* Fix drop down not closing when inside scrollableLibravatar Cory Forsstrom2022-10-271-3/+3
| | | | | | | and user clicks outside the scrollable. This is because the scrollable sets -1.0 on cursor.y for any events where cursor is outside it's bounds. I'm not sure why picklist had this logic to stay open on -1.0 / -1.0, any click outside the overlay should close it.
* Use child layoutLibravatar Cory Forsstrom2022-10-191-2/+4
|
* Eliminate unnecessary allocationLibravatar Cory Forsstrom2022-10-191-23/+23
|
* Render picked pane lastLibravatar Cory Forsstrom2022-10-171-1/+6
|
* Fix pane grid mouse interactionsLibravatar Cory Forsstrom2022-10-172-2/+4
| | | | | - Use `grabbing` interaction while dragging - Ignore grab interaction when dragging is disabled
* Render pane grid titlebar after bodyLibravatar Cory Forsstrom2022-10-071-7/+7
|
* Add `is_selected` argument in `radio::StyleSheet`Libravatar MG_REX2022-10-051-2/+2
|
* Fix latest `clippy` lintsLibravatar Héctor Ramón Jiménez2022-09-232-17/+15
|
* Take `Cow` in `Text::new`Libravatar Ram.Type-02022-09-213-16/+20
|
* When pane grid title bar is cramped, still show content until hover and ↵Libravatar Matthew Kennerly2022-08-271-9/+15
| | | | allow dragging where content would've been
* 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
|
* Fix documentation in `operation::focusable`Libravatar Héctor Ramón Jiménez2022-08-051-3/+4
|
* Remove `widget::state` leftover fileLibravatar Héctor Ramón Jiménez2022-08-051-1/+0
|
* Write missing documentation in `iced_native`Libravatar Héctor Ramón Jiménez2022-08-057-0/+79
|
* Implement `scrollable::snap_to` operationLibravatar Héctor Ramón Jiménez2022-08-047-178/+237
|
* Implement `focus_previous` operationLibravatar Héctor Ramón Jiménez2022-08-041-8/+39
|
* Implement `focus_next` operationLibravatar Héctor Ramón Jiménez2022-08-021-0/+93
| | | | ... as well as a `count_focusable` composable helper!
* Focus text inputs in `todos` exampleLibravatar Héctor Ramón Jiménez2022-07-281-0/+4
|
* Implement `Widget::operate` for `TextInput`Libravatar Héctor Ramón Jiménez2022-07-288-18/+132
|
* Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-286-2/+200
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-271-6/+6
|
* Use `ToString` for `Text::new` instead of `Into<String>`Libravatar Héctor Ramón Jiménez2022-07-272-3/+3
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-2725-1305/+2052
|
* Fix `max_height` for `Scrollable`Libravatar Héctor Ramón Jiménez2022-07-181-1/+3
|
* Fix `max_width` and `max_height` for `Container`Libravatar Héctor Ramón Jiménez2022-07-181-1/+11
|
* Simplify `update` signature in `text_input`Libravatar Héctor Ramón Jiménez2022-07-131-2/+2
|
* Simplify `on_paste` signatureLibravatar Héctor Ramón Jiménez2022-07-131-5/+8
| | | | ... and fix spacing.
* Added `on_paste` handler to `TextInput`Libravatar Wyatt Jacob Herkamp2022-07-131-2/+17
|
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-098-13/+25
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-0913-63/+56
|
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-081-25/+48
|\
| * Prevent pane grid title bar content and controls from overlappingLibravatar mtkennerly2022-06-071-24/+47
| |
* | 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-071-20/+31
| |
* | Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-076-44/+85
| |
* | Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez2022-06-072-14/+31
| |
* | 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
| |