Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | cycle combobox with keybinds | 2023-07-31 | 1 | -9/+34 | ||
| | | ||||||
* | | Fix `Tooltip` overlay position inside `Scrollable` | 2023-07-29 | 1 | -18/+16 | ||
| | | ||||||
* | | Bump versions :tada: | 2023-07-28 | 1 | -1/+1 | ||
| | | ||||||
* | | Introduce `visible_bounds` operation for `Container` | 2023-07-27 | 7 | -9/+116 | ||
| | | ||||||
* | | Rename `on_selection` to `on_option_hovered` in `combo_box` | 2023-07-26 | 1 | -6/+6 | ||
| | | ||||||
* | | Fix `on_option_hovered` support in `ComboBox` | 2023-07-26 | 3 | -13/+53 | ||
| | | ||||||
* | | Use default padding of `TextInput` in `ComboBox` | 2023-07-26 | 2 | -2/+5 | ||
| | | ||||||
* | | Add `Viewport` to `on_event` for `ComboBox` | 2023-07-26 | 1 | -0/+3 | ||
| | | ||||||
* | | Swap unwrap_or_else to unwrap_or_default | 2023-07-26 | 1 | -2/+2 | ||
| | | ||||||
* | | Add ComboBox widget | 2023-07-26 | 3 | -0/+737 | ||
| | | | | | | | | | | | | - Widget implementation - Widget helper - Example | |||||
* | | Add viewport to Widget::on_event | 2023-07-15 | 23 | -2/+57 | ||
| | | ||||||
* | | Restart animation when regaining focus | 2023-07-13 | 1 | -0/+3 | ||
| | | ||||||
* | | Dont blink input cursor when window loses focus | 2023-07-13 | 1 | -8/+31 | ||
| | | ||||||
* | | Avoid redundant `max` in `absolute_offset_reversed` | 2023-07-13 | 1 | -4/+2 | ||
| | | | | | | | | | | I believe `Offset::absolute` guarantees the offset never exceeds the maximum scrolling boundaries already. | |||||
* | | Introduce `absolute_offset_reversed` to `scrollable::Viewport` | 2023-07-13 | 1 | -58/+17 | ||
| | | ||||||
* | | Expose methods to change viewport alignment | 2023-07-12 | 1 | -1/+58 | ||
|/ | ||||||
* | Merge pull request #1912 from tarkah/feat/scrollable-alignment | 2023-07-12 | 1 | -60/+120 | ||
|\ | | | | | Add scrollable alignment option | |||||
| * | Remove unnecessary cursor unavailability logic in `scrollable` | 2023-07-12 | 1 | -22/+12 | ||
| | | ||||||
| * | Rename `absolute_from_start` to `translation` in `scrollable` | 2023-07-12 | 1 | -3/+3 | ||
| | | ||||||
| * | Disambiguate `offset` from `translation` in `scrollable` | 2023-07-12 | 1 | -37/+40 | ||
| | | ||||||
| * | Increase type-safety of `alignment` in `scrollable` | 2023-07-12 | 1 | -63/+37 | ||
| | | ||||||
| * | Remove public fields from `Viewport` | 2023-07-12 | 1 | -31/+3 | ||
| | | | | | | | | Let's tackle use cases directly instead! | |||||
| * | Add alignment to Viewport | 2023-07-04 | 1 | -1/+27 | ||
| | | ||||||
| * | Make viewport bounds public | 2023-07-04 | 1 | -2/+4 | ||
| | | ||||||
| * | Add scrollable alignment option | 2023-07-04 | 1 | -8/+101 | ||
| | | ||||||
* | | Remove useless conversions in `widget::tooltip` | 2023-07-12 | 1 | -15/+17 | ||
| | | ||||||
* | | Use overlay for `Tooltip` widget | 2023-07-12 | 1 | -97/+160 | ||
| | | ||||||
* | | fix: request redraw in component overlay | 2023-07-09 | 1 | -0/+4 | ||
| | | ||||||
* | | Remove useless conversion in `widget::pane_grid` | 2023-07-06 | 1 | -1/+1 | ||
| | | ||||||
* | | Introduce `drop` helper to `pane_grid::State` | 2023-07-06 | 1 | -24/+34 | ||
| | | ||||||
* | | Simplify `Target` enum in `widget::pane_grid` | 2023-07-06 | 1 | -13/+5 | ||
| | | ||||||
* | | Call `in_edge` only when `picked_pane.is_some()` | 2023-07-06 | 1 | -19/+21 | ||
| | | ||||||
* | | Reuse code | 2023-07-06 | 1 | -35/+22 | ||
| | | ||||||
* | | Add ability to drag pane to the pane grid edges & optional style for dragged ↵ | 2023-07-06 | 3 | -99/+281 | ||
|/ | | | | pane | |||||
* | Add touch support for toggler. (#1935) | 2023-06-29 | 1 | -1/+3 | ||
| | | | | | | | | | | | | * Add touch support for toggler. * Fix formatting. * Fix consistency of imports in `iced_widget::toggler` --------- Co-authored-by: Austin M. Reppert <austinmreppert@protonmail.com> Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> | |||||
* | Introduce custom backend-specific primitives | 2023-06-29 | 2 | -4/+5 | ||
| | ||||||
* | Use `Option::filter` instead of `and_then` in `scrollable` | 2023-06-27 | 1 | -14/+6 | ||
| | ||||||
* | Require a `Direction` when computing `State::offset` in `scrollable` | 2023-06-27 | 1 | -18/+23 | ||
| | ||||||
* | Rename `ScrollbarProperties` to `Direction` in `scrollable` | 2023-06-27 | 1 | -57/+48 | ||
| | ||||||
* | Make vertical scroll properties optional | 2023-06-27 | 1 | -40/+90 | ||
| | | | | Co-Authored-By: Austin M. Reppert <austinmreppert@gmail.com> | |||||
* | Merge pull request #1845 from bungoboingo/feat/offscreen-rendering | 2023-06-27 | 1 | -2/+11 | ||
|\ | | | | | Feat: Offscreen Rendering & Screenshots | |||||
| * | Introduce `on_press_maybe` helper for `Button` | 2023-06-06 | 1 | -2/+11 | ||
| | | ||||||
* | | Update `ouroboros` dependency | 2023-06-21 | 1 | -5/+1 | ||
| | | ||||||
* | | Make `overlay::Menu` publish messages on selection | 2023-06-14 | 2 | -42/+42 | ||
| | | ||||||
* | | Use nested for lazy widgets | 2023-06-14 | 3 | -44/+58 | ||
| | | ||||||
* | | Introduce internal `overlay::Nested` for `UserInterface` | 2023-06-14 | 3 | -6/+21 | ||
| | | ||||||
* | | Only scroll w/ wheel if over scrollable | 2023-06-12 | 1 | -0/+4 | ||
| | | ||||||
* | | Fix mouse interactions in `Scrollable` | 2023-06-08 | 1 | -4/+24 | ||
| | | ||||||
* | | Take `Rectangle` by value in `Cursor` API | 2023-06-08 | 15 | -42/+38 | ||
| | | ||||||
* | | Implement basic cursor availability | 2023-06-08 | 32 | -678/+523 | ||
|/ |