Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace `Command` with a new `Task` API with chain support | 2024-06-14 | 1 | -14/+10 | |
| | |||||
* | Fix `Shift` scrolling for `scrollable` on macOS | 2024-04-26 | 1 | -1/+3 | |
| | | | | | Apparently, macOS inverts the scrolling axes automatically now. Was this a thing before, or did an update just break user space? | ||||
* | Capture scrollbar events in a `scrollable` before content events | 2024-04-26 | 1 | -142/+142 | |
| | |||||
* | Introduce `opaque` widget helper | 2024-04-25 | 1 | -1/+1 | |
| | |||||
* | Don't consume unused scroll events (#2397) | 2024-04-23 | 1 | -39/+45 | |
| | | | | | | | | | | | * Initial Commit * Update scrollable.rs * Use `let _ = ` instead of `_ =` for consistency --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | ||||
* | Fix clip bounds with nested `scrollable` widgets | 2024-04-23 | 1 | -4/+8 | |
| | |||||
* | Redesign `iced_wgpu` layering architecture | 2024-04-03 | 1 | -3/+3 | |
| | |||||
* | Use `Catalog` approach for all widgets | 2024-03-24 | 1 | -66/+65 | |
| | |||||
* | Use closures for `Scrollable::style` | 2024-03-12 | 1 | -18/+17 | |
| | |||||
* | Prioritize release events in `scrollable` | 2024-03-11 | 1 | -22/+16 | |
| | |||||
* | Fix `mouse_interaction` and `on_event` for `Scrollable` | 2024-03-08 | 1 | -2/+2 | |
| | |||||
* | Inline helper functions in `widget` modules | 2024-03-08 | 1 | -432/+375 | |
| | |||||
* | Implement additional helpers for `Border` and `container::Appearance` | 2024-03-07 | 1 | -2/+2 | |
| | |||||
* | Leverage `DefaultStyle` traits instead of `Default` | 2024-03-07 | 1 | -18/+19 | |
| | |||||
* | Move `Theme` type to `iced_core` | 2024-03-07 | 1 | -2/+1 | |
| | |||||
* | Use `Style` struct pattern instead of trait for all widgets | 2024-03-06 | 1 | -13/+34 | |
| | |||||
* | Simplify theming for `PickList`, `ComboBox`, and `Menu` widgets | 2024-03-06 | 1 | -1/+2 | |
| | |||||
* | Simplify theming for `TextInput` widget | 2024-03-05 | 1 | -9/+9 | |
| | |||||
* | Simplify theming for `Scrollable` widget | 2024-03-05 | 1 | -217/+332 | |
| | |||||
* | Simplify theming for `Container` widget | 2024-03-05 | 1 | -6/+6 | |
| | |||||
* | Fix scrollbar style when cursor is over `scrollable` | 2024-02-28 | 1 | -15/+17 | |
| | |||||
* | Assert `scrollable` content size never fills scrolling axis | 2024-02-24 | 1 | -9/+25 | |
| | |||||
* | Simplify `scrollable` styling API | 2024-02-12 | 1 | -35/+41 | |
| | |||||
* | Introduce an appearance for a scrollable, ability to customize the scrollbar ↵ | 2024-02-12 | 1 | -1/+36 | |
| | | | | | | gap. Update scrollable.rs | ||||
* | Remove `position` from `overlay::Element` | 2024-02-01 | 1 | -18/+17 | |
| | |||||
* | Avoid returning early on `Captured` event in `scrollable` | 2024-01-31 | 1 | -10/+10 | |
| | | | | Co-authored-by: Austin M. Reppert <austinmreppert@gmail.com> | ||||
* | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 1 | -26/+30 | |
| | |||||
* | Introduce `Border` struct analogous to `Shadow` | 2024-01-20 | 1 | -10/+6 | |
| | |||||
* | Use `Default` implementation of `renderer::Quad` | 2024-01-20 | 1 | -2/+2 | |
| | |||||
* | feat: quad shadows | 2024-01-20 | 1 | -0/+2 | |
| | |||||
* | Introduce useful helpers in `layout` module | 2024-01-10 | 1 | -21/+18 | |
| | |||||
* | Replace `width` and `height` with `Widget::size` | 2024-01-10 | 1 | -6/+5 | |
| | |||||
* | Make `Shrink` have priority over `Fill` in layout | 2024-01-04 | 1 | -1/+1 | |
| | |||||
* | Fix `clippy::match-wildcard-for-single-variants` | 2023-09-20 | 1 | -2/+2 | |
| | |||||
* | Fix `clippy::default_trait_access` | 2023-09-20 | 1 | -1/+1 | |
| | |||||
* | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 1 | -5/+5 | |
| | |||||
* | Fix `height` of vertical scroller in `Scrollbar` | 2023-09-14 | 1 | -4/+4 | |
| | |||||
* | Fix width of horizontal scrollbar in `Scrollable` | 2023-09-14 | 1 | -6/+6 | |
| | |||||
* | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 1 | -0/+10 | |
|\ | |||||
| * | Add access to bounds/content bounds from a scrollable viewport. (#2072) | 2023-09-07 | 1 | -0/+10 | |
| | | | | | | | | | | * Add access to bounds/content bounds from a scrollable viewport in order to perform certain scrollable optimizations as a consumer. * Move bounds/content_bounds after relative_offset as per feedback. | ||||
* | | Make `widget::Tree` mutable in `Widget::layout` | 2023-08-30 | 1 | -2/+2 | |
| | | |||||
* | | Implement explicit text caching in the widget state tree | 2023-08-30 | 1 | -1/+6 | |
|/ | |||||
* | Run `cargo fmt` with Rust 1.72 | 2023-08-26 | 1 | -6/+6 | |
| | |||||
* | Introduce `visible_bounds` operation for `Container` | 2023-07-27 | 1 | -1/+13 | |
| | |||||
* | Add viewport to Widget::on_event | 2023-07-15 | 1 | -2/+18 | |
| | |||||
* | 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 | |
| | |||||
* | 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 | |
| |