Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-05-05 | Fix `bounds` of selected option background in `Menu` | 1 | -1/+5 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -519/+0 | ||
2023-02-24 | Fix `clippy` lints | 1 | -1/+1 | ||
2023-02-24 | Fix `overlay::Menu` line height | 1 | -5/+5 | ||
2023-02-24 | Use `Pixels` for `Text::size` | 1 | -1/+2 | ||
2023-02-24 | Overhaul `Font` type to allow font family selection | 1 | -6/+6 | ||
2023-02-18 | Fix height of `overlay::Menu` | 1 | -1/+2 | ||
2023-02-17 | Use `f32` for `Padding` | 1 | -10/+7 | ||
2023-02-17 | Use `Pixels` for `Text::size` | 1 | -12/+14 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -5/+5 | ||
2023-01-27 | Fixed a small pixel width issue on `pick_list` | 1 | -4/+1 | ||
2022-11-10 | Fix broken documentation links | 1 | -13/+1 | ||
2022-11-09 | Introduce `Custom` variants for every style in the built-in `Theme` | 1 | -3/+3 | ||
2022-11-03 | non uniform border radius for quads | 1 | -2/+2 | ||
2022-08-02 | feat: allow specification of `border_radius` for `pick_list::Menu` | 1 | -2/+2 | ||
2022-07-28 | Fix uninitialized `Tree` in `overlay::Menu` | 1 | -0/+2 | ||
2022-07-27 | Fix `clippy` lints | 1 | -3/+3 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -13/+41 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -4/+4 | ||
... and explicitly annotate crates as well. | |||||
2022-07-09 | Address Clippy lints | 1 | -9/+13 | ||
2022-06-07 | Implement theme styling for `PickList` and `Menu` | 1 | -22/+41 | ||
2022-06-07 | Implement theme styling for `Container` | 1 | -4/+9 | ||
2022-06-07 | Implement theme styling for `Scrollable` | 1 | -2/+5 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -2/+10 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -24/+2 | ||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -2/+8 | ||
2021-12-10 | Lower text::Renderer's Font bound from Copy to Clone | 1 | -1/+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-04 | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 1 | -14/+18 | ||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -3/+3 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-31 | Introduce first-class `text` module in `iced_native` | 1 | -10/+10 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -3/+4 | ||
2021-10-28 | Implement `Overlay::mouse_interaction` for `overlay::Menu` | 1 | -0/+25 | ||
2021-10-28 | Implement `Widget::draw` for `overlay::Menu` | 1 | -21/+71 | ||
2021-10-28 | Wire up style to `PickList` and `overlay::Menu` | 1 | -28/+15 | ||
2021-10-20 | Implement `Widget::draw` for `TextInput` | 1 | -1/+1 | ||
2021-10-18 | Wire up `container` styling to `iced_native` | 1 | -2/+1 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -2/+3 | ||
2021-10-18 | Draw scrollbar in `Widget::draw` for `Scrollable` | 1 | -3/+1 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -57/+22 | ||
2021-06-01 | Replace ignored doc-tests with additional documentation for `Padding` | 1 | -5/+0 | ||
2021-06-01 | Use `Padding::horizontal` and `Padding::vertical` helpers | 1 | -6/+3 | ||
2021-06-01 | Fix `overlay::Menu` implementation | 1 | -1/+1 | ||
2021-06-01 | Add support for asymmetrical padding | 1 | -12/+20 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -5/+5 | ||
2021-02-23 | Remove `viewport` from `Overlay::draw` for now | 1 | -1/+0 | ||
2021-02-15 | feat(native): add Tooltip widget | 1 | -0/+1 | ||
2021-02-12 | Touch support for `PaneGrid` and `PickList` (#650) | 1 | -2/+24 | ||
* touch events properly parsed and converted to logical size, button working * scrolling with a nice touch * fixed application state level touch cursor. panel_grid is touchable now. * format glicthes fixes * format glitches * tight format * fixed pane grid * fixing with upstream * Remove unused `touch` module from `iced_core` * Remove unused `crate::text` import in `iced_native` * Remove redundant match branch in `iced_winit` * Keep removed line break in `UserInterface::update` * Compute `text_size` only when bounds contains cursor in `overlay::menu` Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> | |||||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -28/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Make `Overlay::on_event` return `event::Status` | 1 | -3/+3 | ||