Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #2587 from iced-rs/improve-api-reference | 2024-09-19 | 1 | -1/+41 | |
|\ | | | | | Add widget examples to API reference and update `README` | ||||
| * | Show `scrollable` doc example in multiple places | 2024-09-19 | 1 | -1/+41 | |
| | | |||||
* | | Merge pull request #2584 from iced-rs/fix/scrollable-transactions | 2024-09-18 | 1 | -8/+10 | |
|\ \ | |/ |/| | Fix `scrollable` transactions when `on_scroll` is not set | ||||
| * | Fix `scrollable` transactions when `on_scroll` is not set | 2024-09-18 | 1 | -8/+10 | |
| | | |||||
* | | Fix scrolling direction with trackpad in `scrollable` | 2024-09-18 | 1 | -1/+1 | |
|/ | |||||
* | Notify all `scrollable::Viewport` changes | 2024-09-10 | 1 | -14/+44 | |
| | | | | Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | ||||
* | Implement `scroll_by` operation for `scrollable` | 2024-09-10 | 1 | -31/+59 | |
| | | | | | `scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position. | ||||
* | Enable horizontal scrolling without shift modifier | 2024-09-08 | 1 | -6/+20 | |
| | | | | Fixes #2359. | ||||
* | Implement mouse wheel transactions for `scrollable` | 2024-09-08 | 1 | -9/+34 | |
| | | | | | | See https://wiki.mozilla.org/Gecko:Mouse_Wheel_Scrolling#Mouse_wheel_transaction Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | ||||
* | Introduce `black_box` and `chain` in `widget::operation` | 2024-08-08 | 1 | -1/+1 | |
| | |||||
* | Reintroduce `Scrollable::with_direction` | 2024-07-30 | 1 | -1/+9 | |
| | |||||
* | Adapt `scrollable` sizing strategy to contents | 2024-07-18 | 1 | -5/+13 | |
| | |||||
* | Fix `Scrollable::spacing` not embedding the `Scrollbar` | 2024-07-16 | 1 | -37/+22 | |
| | |||||
* | Rename `embed_*` in `Scrollable` to simply `spacing` | 2024-07-12 | 1 | -43/+56 | |
| | |||||
* | Improve `Border` ergonomics | 2024-07-12 | 1 | -4/+5 | |
| | |||||
* | Introduce helper methods for alignment for all widgets | 2024-07-12 | 1 | -27/+48 | |
| | |||||
* | Fix broken doc links in `widget::scrollable` | 2024-07-11 | 1 | -4/+4 | |
| | |||||
* | Add support for embedded scrollbars for `scrollable` | 2024-07-11 | 1 | -163/+248 | |
| | | | | Co-authored-by: dtzxporter <dtzxporter@users.noreply.github.com> | ||||
* | Merge pull request #2488 from vladh/remove-scrollable-comment | 2024-07-11 | 1 | -1/+0 | |
|\ | | | | | doc: remove extraneous comment | ||||
| * | doc: remove extraneous comment | 2024-07-02 | 1 | -1/+0 | |
| | | |||||
* | | Add `align_x` and `align_y` helpers to `Scrollable` | 2024-07-11 | 1 | -0/+26 | |
| | | |||||
* | | Hide internal `Task` constructors | 2024-07-05 | 1 | -3/+4 | |
|/ | |||||
* | 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 | |
| |