Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | |
| | |||||
* | feat(native): Make scrollable programmatically scrollable for some use ↵ | 2021-06-04 | 1 | -90/+181 | |
| | | | | cases, add snap_to_bottom by default | ||||
* | Replace ignored doc-tests with additional documentation for `Padding` | 2021-06-01 | 1 | -5/+0 | |
| | |||||
* | Add support for asymmetrical padding | 2021-06-01 | 1 | -4/+9 | |
| | |||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -3/+3 | |
| | |||||
* | Turn `Touch` into a `touch::Event` enum | 2020-12-15 | 1 | -33/+32 | |
| | |||||
* | Merge branch 'ios-support-wip' into feature/touch-support | 2020-12-15 | 1 | -3/+46 | |
|\ | |||||
| * | Remove redundant `scroll_to` in `Scrollable` | 2020-03-19 | 1 | -14/+0 | |
| | | |||||
| * | Turn `Touch` into a struct and add finger id | 2020-03-19 | 1 | -18/+38 | |
| | | |||||
| * | Added initial touch events to support iOS | 2020-03-18 | 1 | -4/+40 | |
| | | |||||
* | | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -62/+1 | |
| | | | | | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | | Implement event capturing for `Scrollable` | 2020-11-12 | 1 | -37/+52 | |
| | | |||||
* | | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 1 | -3/+8 | |
| | | |||||
* | | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 1 | -0/+5 | |
| | | | | | | | | | | This should eventually allow us to only generate primitives that are visible. | ||||
* | | Update scrollbar logic and introduce outer_bounds | 2020-10-22 | 1 | -3/+10 | |
| | | |||||
* | | Replace hard-coded params with struct members | 2020-10-22 | 1 | -2/+56 | |
| | | |||||
* | | Remove unnecessary lifetime in `Widget` trait | 2020-07-10 | 1 | -1/+1 | |
| | | |||||
* | | Rename `overlay::Content` trait to `Overlay` | 2020-07-10 | 1 | -3/+3 | |
| | | | | | | | | The `Overlay` struct is now `overlay::Element`. | ||||
* | | Draft `Widget::overlay` idempotency | 2020-07-08 | 1 | -3/+5 | |
| | |