Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -82/+0 | ||
2023-02-24 | Implement `font::load` command in `iced_native` | 1 | -0/+4 | ||
2023-02-24 | Overhaul `Font` type to allow font family selection | 1 | -2/+6 | ||
2023-02-17 | Use `Pixels` for `Text::size` | 1 | -3/+3 | ||
2022-07-09 | Fix further `clippy` lints | 1 | -1/+1 | ||
... and explicitly annotate crates as well. | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -1/+3 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2021-11-04 | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 1 | -2/+7 | ||
2021-10-31 | Introduce first-class `text` module in `iced_native` | 1 | -3/+3 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -1/+1 | ||
2021-10-28 | Remove unused import for `toggler` in `iced_graphics` | 1 | -1/+0 | ||
2021-10-28 | Implement `Widget::draw` for `Toggler` | 1 | -6/+0 | ||
2021-10-28 | Implement `Widget::draw` for `Rule` | 1 | -1/+0 | ||
2021-10-28 | Implement `Widget::draw` for `ProgressBar` | 1 | -6/+0 | ||
2021-10-25 | Implement `Widget::mouse_interaction` for `PaneGrid` | 1 | -4/+4 | ||
... 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. | |||||
2021-10-25 | Implement `Widget::draw` for `PaneGrid` | 1 | -4/+0 | ||
2021-10-21 | Implement `Widget::draw` for `Checkbox` | 1 | -0/+4 | ||
2021-10-21 | Remove `Renderer` trait for `Checkbox` | 1 | -9/+0 | ||
2021-10-20 | Wire up styling to `Radio` in `iced_native` | 1 | -7/+0 | ||
2021-10-20 | Implement `Widget::draw` for `TextInput` | 1 | -23/+1 | ||
2021-10-20 | Wire up styling to `Slider` in `iced_native` | 1 | -9/+1 | ||
2021-10-18 | Wire up styling to `Button` in `iced_native` | 1 | -6/+0 | ||
2021-10-18 | Wire up `container` styling to `iced_native` | 1 | -5/+0 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -3/+0 | ||
2021-10-18 | Draw scrollbar in `Widget::draw` for `Scrollable` | 1 | -16/+0 | ||
2021-10-18 | Introduce `fill_rectangle` to `Renderer` trait | 1 | -0/+2 | ||
2021-10-14 | Implement `Widget::draw` for `Scrollable` | 1 | -2/+8 | ||
Rendering the scroller is still WIP | |||||
2021-10-14 | Implement `Widget::draw` for `Text` | 1 | -2/+9 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -189/+2 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -6/+17 | ||
2021-09-15 | Use `Option` to encode empty text case in hit test methods | 1 | -3/+3 | ||
2021-08-26 | Rename `HitTestResult` to `Hit` | 1 | -4/+4 | ||
... and also move it to a new `text` module in `iced_core` | |||||
2021-08-21 | Implement textual hit testing | 1 | -2/+14 | ||
2021-06-03 | Change label of `Toggler` to optional | 1 | -1/+1 | ||
2021-06-03 | Implement `Toggler` widget for iced_native | 1 | -1/+17 | ||
2021-06-01 | Add support for asymmetrical padding | 1 | -2/+2 | ||
2021-02-27 | Fix `viewport` argument in `PaneGrid` draw calls | 1 | -0/+3 | ||
2021-01-01 | Implement split highlight on hover for `PaneGrid` | 1 | -3/+6 | ||
2020-12-10 | Replace TitleBar string title with generic Content | 1 | -4/+1 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -2/+0 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -0/+3 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-10-22 | Replace hard-coded params with struct members | 1 | -0/+3 | ||
2020-08-01 | Add `height` method to `Slider` | 1 | -3/+1 | ||
2020-07-08 | Introduce `Layer` trait | 1 | -0/+3 | ||
2020-07-06 | Use `default_font_size` for `TextInput` widget | 1 | -5/+0 | ||
2020-06-19 | Make default text size configurable in `Settings` | 1 | -1/+3 | ||
2020-06-10 | Lay out title text dynamically in `TitleBar` | 1 | -3/+45 | ||
2020-06-05 | Draft draggable and graphics logic for `TitleBar` | 1 | -3/+18 | ||
2020-05-29 | Make `Font` an associated type of `text_input::Renderer` | 1 | -0/+1 | ||
2020-05-15 | Updated `Radio` layout/fns to match `Checkbox` | 1 | -3/+2 | ||
2020-04-23 | Make `Font` an associated type of `text::Renderer` | 1 | -0/+2 | ||