Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -1327/+0 | |
| | |||||
* | Fix `Scrollbar` bound calculations in `Scrollable` | 2023-02-17 | 1 | -9/+12 | |
| | |||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 1 | -44/+43 | |
| | |||||
* | scrollable: provide ID to operation.container | 2023-02-16 | 1 | -8/+11 | |
| | |||||
* | Avoid dragging scroll area when touching scrollbars for `Scrollable` | 2023-01-08 | 1 | -1/+4 | |
| | |||||
* | Remove `PartialOrd` implementation for `Rectangle` | 2023-01-08 | 1 | -1/+3 | |
| | | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions. | ||||
* | Enable horizontal scrolling with `Shift+MouseWheel` | 2023-01-08 | 1 | -1/+17 | |
| | |||||
* | Introduce `RelativeOffset` type in `scrollable` | 2023-01-08 | 1 | -45/+40 | |
| | |||||
* | Reworked Scrollable to account for lack of widget order guarantees. | 2022-12-29 | 1 | -601/+532 | |
| | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | ||||
* | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 1 | -363/+753 | |
| | |||||
* | Add `Renderer` argument to `operate` | 2022-12-22 | 1 | -0/+2 | |
| | |||||
* | Fix `clippy` lints for Rust 1.66 | 2022-12-20 | 1 | -3/+2 | |
| | |||||
* | Fix scroller in `Scrollable` always being drawn | 2022-12-05 | 1 | -3/+2 | |
| | | | | ... instead of only drawing it when the mouse is over the `Scrollable`. | ||||
* | Merge branch 'master' into non-uniform-border-radius-for-quads | 2022-12-02 | 1 | -4/+10 | |
|\ | |||||
| * | Allow &mut self in overlay | 2022-11-29 | 1 | -2/+2 | |
| | | |||||
| * | Allow converting from widget-specific IDs to generic ID | 2022-11-11 | 1 | -0/+6 | |
| | | |||||
| * | Introduce `Custom` variants for every style in the built-in `Theme` | 2022-11-09 | 1 | -2/+2 | |
| | | |||||
* | | non uniform border radius for quads | 2022-11-03 | 1 | -2/+2 | |
|/ | |||||
* | Write missing documentation in `iced_native` | 2022-08-05 | 1 | -0/+7 | |
| | |||||
* | Implement `scrollable::snap_to` operation | 2022-08-04 | 1 | -3/+39 | |
| | |||||
* | Implement `Widget::operate` for `TextInput` | 2022-07-28 | 1 | -0/+16 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -212/+190 | |
| | |||||
* | Fix `max_height` for `Scrollable` | 2022-07-18 | 1 | -1/+3 | |
| | |||||
* | Fix further `clippy` lints | 2022-07-09 | 1 | -3/+3 | |
| | | | | ... and explicitly annotate crates as well. | ||||
* | Implement theme styling for `Scrollable` | 2022-06-07 | 1 | -12/+25 | |
| | |||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -0/+2 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Loose lifetime bounds in `pure::Widget` implementations | 2022-03-29 | 1 | -3/+3 | |
| | |||||
* | Remove redundant `widget` modules in subcrates | 2022-03-09 | 1 | -0/+7 | |
| | | | | Instead, we can define the type aliases just once in the root crate! | ||||
* | Merge branch 'master' into virtual-widgets | 2022-03-07 | 1 | -13/+3 | |
|\ | |||||
| * | Remove `hash_layout` method from `Widget` trait | 2022-02-23 | 1 | -13/+3 | |
| | | |||||
* | | Implement `Scrollable` in `iced_pure` | 2022-02-12 | 1 | -369/+520 | |
|/ | |||||
* | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 2022-01-11 | 1 | -1/+4 | |
| | |||||
* | Remove unused field in `scrollable::Scrollbar` | 2021-12-07 | 1 | -4/+0 | |
| | |||||
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 1 | -9/+9 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 2021-11-04 | 1 | -16/+20 | |
| | |||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 1 | -2/+2 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Reintroduce `Box` for `style_sheet` in `Scrollable` | 2021-10-31 | 1 | -3/+6 | |
| | |||||
* | Remove `widget` module re-exports in `iced_native` | 2021-10-31 | 1 | -2/+3 | |
| | |||||
* | Fix scrollbar clipping in `Scrollable` draw logic | 2021-10-28 | 1 | -25/+32 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `PaneGrid` | 2021-10-25 | 1 | -10/+15 | |
| | | | | | | ... and fix rendering of drag interaction in `PaneGrid` by introducing an explicit `with_translation` method to `Renderer` and simplifying the `with_layer` and `Clip` primitive. | ||||
* | Implement `Widget::mouse_interaction` for `Scrollable` | 2021-10-18 | 1 | -0/+39 | |
| | |||||
* | Wire up `container` styling to `iced_native` | 2021-10-18 | 1 | -4/+1 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 1 | -3/+3 | |
| | |||||
* | Draw scrollbar in `Widget::draw` for `Scrollable` | 2021-10-18 | 1 | -94/+113 | |
| | |||||
* | Implement `Widget::draw` for `Scrollable` | 2021-10-14 | 1 | -38/+88 | |
| | | | | Rendering the scroller is still WIP | ||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 1 | -77/+40 | |
| | |||||
* | Refactor alignment types into an `alignment` module | 2021-09-20 | 1 | -2/+2 | |
| | |||||
* | Introduce and use `CrossAlign` enum for `Column` and `Row` | 2021-09-20 | 1 | -3/+3 | |
| | |||||
* | Introduce `on_scroll` event in `Scrollable` | 2021-06-04 | 1 | -1/+47 | |
| | |||||
* | Introduce `snap_to` and `unsnap` to `scrollable::State` | 2021-06-04 | 1 | -184/+139 | |
| |