Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Honor clones of `task::Handle` with `abort_on_drop` | 2024-11-22 | 1 | -21/+42 | |
| | |||||
* | Merge pull request #2668 from edwloef/master | 2024-11-13 | 1 | -2/+2 | |
|\ | | | | | Fix docs of `Scrollable::with_direction` and `Scrollable::direction` | ||||
| * | Fix docs of `Scrollable::with_direction` and `Scrollable::direction` | 2024-11-11 | 1 | -2/+2 | |
| | | |||||
* | | Merge pull request #2662 from iced-rs/reactive-rendering | 2024-11-13 | 60 | -1771/+2180 | |
|\ \ | |/ |/| | Reactive Rendering | ||||
| * | Fix cross-axis compression in `layout::flex` | 2024-11-08 | 1 | -1/+52 | |
| | | |||||
| * | Fix event capturing order in `pane_grid` | 2024-11-06 | 1 | -38/+41 | |
| | | |||||
| * | Rename `Overlay::on_event` to `update` | 2024-11-06 | 14 | -26/+25 | |
| | | |||||
| * | Fix `pick_list` not requesting a redraw when open | 2024-11-05 | 1 | -8/+15 | |
| | | |||||
| * | Fix `text_editor` capturing mouse release events | 2024-11-05 | 1 | -2/+4 | |
| | | |||||
| * | Implement `reactive-rendering` for `text_editor` | 2024-11-05 | 1 | -147/+170 | |
| | | |||||
| * | Fix `hover` widget not redrawing when hovered | 2024-11-05 | 1 | -1/+9 | |
| | | |||||
| * | Unify `shader::Program` API with `canvas::Program` | 2024-11-05 | 3 | -57/+34 | |
| | | |||||
| * | Replace `reactive-rendering` feature with `unconditional-rendering` | 2024-11-05 | 3 | -6/+8 | |
| | | |||||
| * | Fix deferred layout on resize after drawing | 2024-11-05 | 3 | -73/+49 | |
| | | |||||
| * | Implement `reactive-rendering` for `pane_grid` | 2024-11-05 | 2 | -35/+105 | |
| | | |||||
| * | Implement `reactive-rendering` for `canvas` | 2024-11-05 | 9 | -142/+244 | |
| | | |||||
| * | Implement `reactive-rendering` for `combo_box` | 2024-11-05 | 1 | -3/+17 | |
| | | |||||
| * | Rename `Widget::on_event` to `update` | 2024-11-05 | 37 | -67/+67 | |
| | | |||||
| * | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 44 | -705/+556 | |
| | | |||||
| * | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 15 | -114/+89 | |
| | | |||||
| * | Implement `reactive-rendering` for `scrollable` | 2024-11-05 | 1 | -294/+331 | |
| | | |||||
| * | Implement `reactive-rendering` for `menu` | 2024-11-05 | 1 | -6/+37 | |
| | | |||||
| * | Implement `reactive-rendering` for `pick_list` | 2024-11-05 | 1 | -23/+34 | |
| | | |||||
| * | Request a redraw when a window is resized | 2024-11-05 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | If we do not request it, macOS does not get any `RedrawRequested` events. Shouldn't `winit` [take care of this]? Probably a bug. [take care of this]: https://docs.rs/winit/0.30.5/winit/event/enum.WindowEvent.html#variant.RedrawRequested | ||||
| * | Implement `reactive-rendering` for `toggler` | 2024-11-05 | 1 | -17/+32 | |
| | | |||||
| * | Implement `reactive-rendering` for `radio` | 2024-11-05 | 1 | -11/+32 | |
| | | |||||
| * | Implement `reactive-rendering` for `checkbox` | 2024-11-05 | 1 | -14/+35 | |
| | | |||||
| * | Fix `WindowManager::is_idle` in `iced_winit` | 2024-11-05 | 1 | -1/+1 | |
| | | |||||
| * | Implement `reactive-rendering` for `text_input` | 2024-11-05 | 4 | -89/+202 | |
| | | | | | | | | ... and fix the redraw queue logic in `iced_winit`. | ||||
| * | Implement `reactive-rendering` for `slider` | 2024-11-05 | 2 | -132/+160 | |
| | | |||||
| * | Remove `TODO` about reactive rendering in `iced_winit` | 2024-11-05 | 1 | -5/+0 | |
| | | |||||
| * | Draft `reactive-rendering` feature for `button` | 2024-11-05 | 6 | -86/+156 | |
|/ | |||||
* | Merge pull request #2663 from iced-rs/update-wgpu-to-23.0 | 2024-11-05 | 9 | -22/+22 | |
|\ | | | | | Update `wgpu` to `23.0` | ||||
| * | Update `wgpu` to `23.0` | 2024-11-05 | 9 | -22/+22 | |
|/ | |||||
* | Merge pull request #2651 from rhogenson/total-cmp | 2024-10-28 | 1 | -4/+1 | |
|\ | | | | | Use float total_cmp instead of partial_cmp to get a total order. | ||||
| * | Use float total_cmp instead of partial_cmp to get a total order. | 2024-10-26 | 1 | -4/+1 | |
|/ | | | | | | | Since Rust version 1.81, sort_by will panic if the provided comparison function does not implement a total order. See https://github.com/rust/lang/rust/issues/129561 for more details. The simplest fix seems to be to use total_cmp instead of partial_cmp. | ||||
* | Merge pull request #2649 from kosayoda/window-focus-fix | 2024-10-25 | 1 | -0/+2 | |
|\ | | | | | Prevent unintended keyboard input during focus. | ||||
| * | Prevent unintended keyboard input during focus. | 2024-10-24 | 1 | -0/+2 | |
|/ | |||||
* | Merge pull request #2628 from tarkah/fix/pane-grid-continuity | 2024-10-24 | 3 | -151/+194 | |
|\ | | | | | Fix/pane grid continuity | ||||
| * | Add `relabel` helper to `pane_grid::State` | 2024-10-24 | 1 | -14/+15 | |
| | | |||||
| * | Rename `state::Widget` to `pane_grid::Memory` | 2024-10-24 | 2 | -16/+15 | |
| | | |||||
| * | Fix `responsive` diffing when `Tree` is emptied by ancestors | 2024-10-24 | 1 | -1/+4 | |
| | | |||||
| * | Remove duplicated `maximized` state in `pane_grid` | 2024-10-24 | 2 | -45/+59 | |
| | | |||||
| * | Keep `Pane` associated to state / layout after swap | 2024-10-24 | 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. | ||||
| * | Retain widget state against incoming panes | 2024-10-24 | 2 | -125/+135 | |
| | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | Use BTreeMap for Ord iteration of panes | 2024-10-24 | 1 | -4/+4 | |
|/ | | | | | This ensures continuity in how panes are iterated on when building widget state | ||||
* | Dismiss `large-enum-variant` lint | 2024-10-22 | 1 | -0/+3 | |
| | |||||
* | Update button Catalog and Style documentation (#2590) | 2024-10-17 | 1 | -0/+51 | |
| | | | | | | | | | | | | | | | * Update button Catalog and Style documentation * Clarified button documentation * fix code typo * Run `cargo fmt` * Fixed docs to pass tests --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | ||||
* | Fix new elided lifetime lint in the `beta` toolchain | 2024-10-17 | 2 | -2/+2 | |
| | |||||
* | Merge pull request #2639 from l-const/consecutive-click-distance | 2024-10-15 | 1 | -1/+1 | |
|\ | | | | | Introduce consecutive click distance check like other toolkit do such as gtk,qt, imgui. |