Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-04 | Take `Event` by reference in `Widget::update` | 2 | -6/+6 | ||
2024-12-02 | Fix new `clippy` lints | 2 | -4/+4 | ||
2024-11-06 | Rename `Overlay::on_event` to `update` | 2 | -3/+3 | ||
2024-11-05 | Implement `reactive-rendering` for `pane_grid` | 1 | -0/+25 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 2 | -5/+5 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2 | -31/+19 | ||
2024-10-24 | Add `relabel` helper to `pane_grid::State` | 1 | -14/+15 | ||
2024-10-24 | Rename `state::Widget` to `pane_grid::Memory` | 1 | -6/+0 | ||
2024-10-24 | Remove duplicated `maximized` state in `pane_grid` | 1 | -18/+26 | ||
2024-10-24 | Keep `Pane` associated to state / layout after swap | 1 | -2/+18 | ||
State continuity is dependent on keeping a node associated to it's original `Pane` id. When splitting -> swapping nodes, we need to assign it back to the original `Pane` to enforce continuity. | |||||
2024-10-24 | Retain widget state against incoming panes | 1 | -7/+7 | ||
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 | |||||
2024-10-24 | Use BTreeMap for Ord iteration of panes | 1 | -4/+4 | ||
This ensures continuity in how panes are iterated on when building widget state | |||||
2024-08-22 | Add compact variant for pane grid controls | 2 | -69/+307 | ||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 2 | -2/+2 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 2 | -2/+2 | ||
2024-04-01 | Use `rustc-hash` for most of our `HashMap` and `HashSet` instances | 1 | -4/+4 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 2 | -57/+66 | ||
2024-03-12 | Try using closures for `Container::style` | 2 | -11/+11 | ||
`Box` should not allocate for zero-sized types; so we should not be incurring much overhead. Just a bit of indirection. | |||||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 2 | -7/+7 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 2 | -13/+14 | ||
2024-03-06 | Simplify theming for `PickList`, `ComboBox`, and `Menu` widgets | 2 | -2/+2 | ||
2024-03-05 | Simplify theming for `Container` widget | 2 | -19/+40 | ||
2024-02-27 | Fix `PaneGrid` mouse interaction when clicking a pane | 1 | -17/+0 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 2 | -5/+16 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 2 | -45/+45 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 2 | -13/+14 | ||
2023-12-15 | Add deadband distance before initiating drag action on pane grid | 1 | -0/+17 | ||
2023-09-20 | Fix `clippy::trivially-copy-pass-by-ref` | 2 | -34/+34 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 2 | -11/+11 | ||
2023-09-09 | Fix majority of unresolved documentation links | 7 | -29/+31 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 2 | -9/+11 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 2 | -10/+21 | ||
2023-07-15 | Add viewport to Widget::on_event | 2 | -0/+6 | ||
2023-07-06 | Introduce `drop` helper to `pane_grid::State` | 1 | -24/+34 | ||
2023-07-06 | Reuse code | 1 | -35/+22 | ||
2023-07-06 | Add ability to drag pane to the pane grid edges & optional style for dragged ↵ | 2 | -13/+86 | ||
pane | |||||
2023-06-08 | Take `Rectangle` by value in `Cursor` API | 1 | -1/+1 | ||
2023-06-08 | Implement basic cursor availability | 3 | -47/+49 | ||
2023-05-19 | Rename invert -> swap | 1 | -2/+2 | ||
2023-05-19 | Take pane state internally | 1 | -18/+8 | ||
2023-05-16 | Add pane_grid functionality to split a pane with another pane | 1 | -1/+50 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 10 | -0/+1704 | ||