Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix new `clippy` lints | 2024-12-02 | 1 | -2/+2 | |
| | |||||
* | Fix event capturing order in `pane_grid` | 2024-11-06 | 1 | -38/+41 | |
| | |||||
* | Rename `Overlay::on_event` to `update` | 2024-11-06 | 1 | -1/+1 | |
| | |||||
* | Implement `reactive-rendering` for `pane_grid` | 2024-11-05 | 1 | -35/+80 | |
| | |||||
* | Rename `Widget::on_event` to `update` | 2024-11-05 | 1 | -1/+1 | |
| | |||||
* | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 1 | -26/+23 | |
| | |||||
* | Rename `state::Widget` to `pane_grid::Memory` | 2024-10-24 | 1 | -10/+15 | |
| | |||||
* | Remove duplicated `maximized` state in `pane_grid` | 2024-10-24 | 1 | -27/+33 | |
| | |||||
* | Retain widget state against incoming panes | 2024-10-24 | 1 | -118/+128 | |
| | | | | | | | | | | We can associate each state with a `Pane` and compare that against the new panes to remove states w/ respective panes which no longer exist. Because we always increment `Pane`, new states are always added to the end, so this retain + add new state approach will ensure continuity when panes are added & removed | ||||
* | Fix new elided lifetime lint in the `beta` toolchain | 2024-10-17 | 1 | -1/+1 | |
| | |||||
* | Show `pane_grid` doc example in multiple places | 2024-09-19 | 1 | -14/+64 | |
| | |||||
* | Bump version to `0.13.0` :tada: | 2024-09-18 | 1 | -1/+1 | |
| | |||||
* | Add compact variant for pane grid controls | 2024-08-22 | 1 | -0/+2 | |
| | |||||
* | Introduce `black_box` and `chain` in `widget::operation` | 2024-08-08 | 1 | -1/+1 | |
| | |||||
* | Replace `Command` with a new `Task` API with chain support | 2024-06-14 | 1 | -1/+1 | |
| | |||||
* | Use `Catalog` approach for all widgets | 2024-03-24 | 1 | -42/+66 | |
| | |||||
* | Use closures for `PaneGrid::style` | 2024-03-12 | 1 | -11/+11 | |
| | |||||
* | fix: make pane_grid appearance items visible to others. | 2024-03-08 | 1 | -3/+3 | |
| | |||||
* | Leverage `DefaultStyle` traits instead of `Default` | 2024-03-07 | 1 | -18/+15 | |
| | |||||
* | Move `Theme` type to `iced_core` | 2024-03-07 | 1 | -4/+2 | |
| | |||||
* | Use `Style` struct pattern instead of trait for all widgets | 2024-03-06 | 1 | -12/+24 | |
| | |||||
* | Simplify theming for `PaneGrid` widget | 2024-03-06 | 1 | -551/+522 | |
| | |||||
* | Simplify theming for `Container` widget | 2024-03-05 | 1 | -5/+4 | |
| | |||||
* | Fix `PaneGrid` mouse interaction when clicking a pane | 2024-02-27 | 1 | -82/+59 | |
| | |||||
* | Point doc links to `0.12` branch | 2024-02-15 | 1 | -1/+1 | |
| | |||||
* | Use `with_translation` wherever possible | 2024-02-02 | 1 | -16/+13 | |
| | |||||
* | Introduce `with_transformation` to `Renderer` trait | 2024-02-02 | 1 | -4/+6 | |
| | |||||
* | Remove `position` from `overlay::Element` | 2024-02-01 | 1 | -1/+2 | |
| | |||||
* | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 1 | -25/+29 | |
| | |||||
* | Introduce `Border` struct analogous to `Shadow` | 2024-01-20 | 1 | -7/+2 | |
| | |||||
* | Use `Default` implementation of `renderer::Quad` | 2024-01-20 | 1 | -8/+5 | |
| | |||||
* | feat: quad shadows | 2024-01-20 | 1 | -0/+3 | |
| | |||||
* | Introduce useful helpers in `layout` module | 2024-01-10 | 1 | -1/+1 | |
| | |||||
* | Replace `width` and `height` with `Widget::size` | 2024-01-10 | 1 | -6/+5 | |
| | |||||
* | Make `Shrink` have priority over `Fill` in layout | 2024-01-04 | 1 | -6/+3 | |
| | |||||
* | Add deadband distance before initiating drag action on pane grid | 2023-12-15 | 1 | -18/+51 | |
| | |||||
* | Fix `clippy::filter_map_next` | 2023-09-20 | 1 | -14/+11 | |
| | |||||
* | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 1 | -2/+2 | |
| | |||||
* | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 1 | -2/+2 | |
|\ | |||||
| * | Host GIFs and video examples in `iced.rs` | 2023-09-07 | 1 | -2/+2 | |
| | | | | | | | | RIP Gfycat | ||||
* | | Make `widget::Tree` mutable in `Widget::layout` | 2023-08-30 | 1 | -4/+9 | |
| | | |||||
* | | Implement explicit text caching in the widget state tree | 2023-08-30 | 1 | -3/+10 | |
|/ | |||||
* | Bump versions :tada: | 2023-07-28 | 1 | -1/+1 | |
| | |||||
* | Introduce `visible_bounds` operation for `Container` | 2023-07-27 | 1 | -1/+1 | |
| | |||||
* | Add viewport to Widget::on_event | 2023-07-15 | 1 | -0/+2 | |
| | |||||
* | Remove useless conversion in `widget::pane_grid` | 2023-07-06 | 1 | -1/+1 | |
| | |||||
* | Simplify `Target` enum in `widget::pane_grid` | 2023-07-06 | 1 | -13/+5 | |
| | |||||
* | Call `in_edge` only when `picked_pane.is_some()` | 2023-07-06 | 1 | -19/+21 | |
| | |||||
* | Add ability to drag pane to the pane grid edges & optional style for dragged ↵ | 2023-07-06 | 1 | -86/+195 | |
| | | | | pane | ||||
* | Take `Rectangle` by value in `Cursor` API | 2023-06-08 | 1 | -1/+1 | |
| |