Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-04-20 | Fix sliders drawing out of their bounds | 1 | -2/+2 | ||
2023-04-13 | Fix handle position of sliders | 1 | -4/+4 | ||
2023-04-13 | Remove `border_radius` support for `slider::Rail` | 1 | -14/+2 | ||
Our current quad shader may produce weird-looking results with non-integral scaling factors. | |||||
2023-04-12 | Rename `Rail::size` to `width` | 1 | -4/+4 | ||
2023-04-12 | Remove `border_width` support in `slider::Rail` | 1 | -6/+6 | ||
2023-04-12 | Simplify `draw` logic of sliders | 1 | -10/+8 | ||
2023-04-12 | Introduce left and right colors for slider rails | 1 | -38/+54 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -473/+0 | ||
2023-02-20 | Sliders no longer bleed over rail | 1 | -2/+2 | ||
2023-02-17 | Use `Pixels` for `Slider::height` and `VerticalSlider::width` | 1 | -4/+4 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -8/+6 | ||
2022-12-13 | Split vertical orientation into VerticalSlider | 1 | -158/+41 | ||
2022-12-12 | Vertical orientation added to Slider. | 1 | -41/+158 | ||
2022-11-09 | Fix redundant references in `slider` | 1 | -3/+3 | ||
2022-11-09 | Introduce `Custom` variants for every style in the built-in `Theme` | 1 | -5/+5 | ||
2022-11-03 | non uniform border radius for quads | 1 | -3/+3 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -112/+120 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -2/+2 | ||
... and explicitly annotate crates as well. | |||||
2022-07-09 | Address Clippy lints | 1 | -2/+2 | ||
2022-05-26 | Fix examples and doc-tests | 1 | -1/+3 | ||
2022-05-26 | Rename `Variant` to `Style` and `Style` to `Appearance` | 1 | -11/+11 | ||
2022-05-26 | Implement theme styling for `Slider` | 1 | -16/+30 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -0/+1 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-03-29 | Fix slider's handle position calculation | 1 | -4/+4 | ||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -10/+2 | ||
2022-02-13 | Implement `Slider` in `iced_pure` | 1 | -165/+232 | ||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -0/+1 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -4/+4 | ||
Widgets now can invalidate the current layout of the application on demand. | |||||
2021-11-15 | Derive `Eq` for `slider::State` again | 1 | -1/+1 | ||
2021-11-15 | Use `value` in `Slider` to store the `previous` value | 1 | -8/+3 | ||
2021-11-11 | Don't rebroadcast redundant slider messages | 1 | -7/+22 | ||
2021-11-04 | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 1 | -34/+41 | ||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -1/+1 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-31 | Reintroduce `Box` for `style_sheet` in `Slider` | 1 | -3/+6 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -1/+1 | ||
2021-10-20 | Implement `Widget::mouse_interaction` for `Slider` | 1 | -0/+18 | ||
2021-10-20 | Implement `Widget::draw` for `Slider` | 1 | -14/+81 | ||
2021-10-20 | Wire up styling to `Slider` in `iced_native` | 1 | -31/+17 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -2/+4 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -30/+13 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -2/+2 | ||
2020-12-15 | Turn `Touch` into a `touch::Event` enum | 1 | -13/+5 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -30/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Implement event capturing for `Slider` | 1 | -0/+6 | ||
2020-11-12 | Make `Widget::on_event` return an `event::Status` | 1 | -3/+7 | ||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -0/+1 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-10-17 | Require `Clone` for `Message` early when needed | 1 | -2/+4 | ||
Prior to this change, the widgets that needed a `Clone` bound on `Message` to implement the `Widget` trait could be created with a non-cloneable `Message`. As a consequence, the compiler complained only when actually trying to use the `Widget` trait. Normally, this happens when trying to `push` the widget in a container or turn it into an `Element`. Furthermore, the compiler error in this case does not mention `Message` nor the `Clone` bound, but instead complains about a missing `From` implementation. Thus, it can easily cause confusion! This change introduces `Clone` bounds in the main implementation of the widgets that need it to properly implement the `Widget` trait. As a result, the compiler complains early when trying to create one of these widgets with a non-cloneable `Message` and explicitly mentions that the `Message` needs to implement `Clone`. | |||||
2020-08-01 | Add `height` method to `Slider` | 1 | -6/+15 | ||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -1/+1 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -1/+1 | ||