summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Implement `reactive-rendering` for `menu`Libravatar Héctor Ramón Jiménez2024-11-051-6/+37
|
* Implement `reactive-rendering` for `pick_list`Libravatar Héctor Ramón Jiménez2024-11-051-23/+34
|
* Request a redraw when a window is resizedLibravatar Héctor Ramón Jiménez2024-11-051-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`Libravatar Héctor Ramón Jiménez2024-11-051-17/+32
|
* Implement `reactive-rendering` for `radio`Libravatar Héctor Ramón Jiménez2024-11-051-11/+32
|
* Implement `reactive-rendering` for `checkbox`Libravatar Héctor Ramón Jiménez2024-11-051-14/+35
|
* Fix `WindowManager::is_idle` in `iced_winit`Libravatar Héctor Ramón Jiménez2024-11-051-1/+1
|
* Implement `reactive-rendering` for `text_input`Libravatar Héctor Ramón Jiménez2024-11-054-89/+202
| | | | ... and fix the redraw queue logic in `iced_winit`.
* Implement `reactive-rendering` for `slider`Libravatar Héctor Ramón Jiménez2024-11-052-132/+160
|
* Remove `TODO` about reactive rendering in `iced_winit`Libravatar Héctor Ramón Jiménez2024-11-051-5/+0
|
* Draft `reactive-rendering` feature for `button`Libravatar Héctor Ramón Jiménez2024-11-056-86/+156
|
* Merge pull request #2663 from iced-rs/update-wgpu-to-23.0Libravatar Héctor2024-11-059-22/+22
|\ | | | | Update `wgpu` to `23.0`
| * Update `wgpu` to `23.0`Libravatar Héctor Ramón Jiménez2024-11-059-22/+22
|/
* Merge pull request #2651 from rhogenson/total-cmpLibravatar Héctor2024-10-281-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.Libravatar Rose Hogenson2024-10-261-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-fixLibravatar Héctor2024-10-251-0/+2
|\ | | | | Prevent unintended keyboard input during focus.
| * Prevent unintended keyboard input during focus.Libravatar kosayoda2024-10-241-0/+2
|/
* Merge pull request #2628 from tarkah/fix/pane-grid-continuityLibravatar Héctor2024-10-243-151/+194
|\ | | | | Fix/pane grid continuity
| * Add `relabel` helper to `pane_grid::State`Libravatar Héctor Ramón Jiménez2024-10-241-14/+15
| |
| * Rename `state::Widget` to `pane_grid::Memory`Libravatar Héctor Ramón Jiménez2024-10-242-16/+15
| |
| * Fix `responsive` diffing when `Tree` is emptied by ancestorsLibravatar Héctor Ramón Jiménez2024-10-241-1/+4
| |
| * Remove duplicated `maximized` state in `pane_grid`Libravatar Héctor Ramón Jiménez2024-10-242-45/+59
| |
| * Keep `Pane` associated to state / layout after swapLibravatar Cory Forsstrom2024-10-241-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 panesLibravatar Cory Forsstrom2024-10-242-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 panesLibravatar Cory Forsstrom2024-10-241-4/+4
|/ | | | | This ensures continuity in how panes are iterated on when building widget state
* Dismiss `large-enum-variant` lintLibravatar Héctor Ramón Jiménez2024-10-221-0/+3
|
* Update button Catalog and Style documentation (#2590)Libravatar Michelle Granat2024-10-171-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` toolchainLibravatar Héctor Ramón Jiménez2024-10-172-2/+2
|
* Merge pull request #2639 from l-const/consecutive-click-distanceLibravatar Héctor2024-10-151-1/+1
|\ | | | | Introduce consecutive click distance check like other toolkit do such as gtk,qt, imgui.
| * Introduce consecutive click distance like other toolkits such as gtk,qt, imgui.Libravatar l-const2024-10-141-1/+1
|/
* Merge pull request #2632 from leo030303/fix_delete_key_bugLibravatar Héctor2024-10-141-1/+3
|\ | | | | Fixed bug where delete key wasn't working in the text editor
| * Fix `Binding::Delete` not triggering in `text_editor`Libravatar Leo Ring2024-10-141-1/+3
| |
* | Merge pull request #2637 from Brady-Simon/style-partialeqLibravatar Héctor2024-10-1413-19/+19
|\ \ | | | | | | Add PartialEq derives for widget styles
| * | Add `PartialEq` derives for widget stylesLibravatar BradySimon2024-10-1413-19/+19
|/ /
* | Fix `mouse::Cursor` fighting in `stack` widgetLibravatar Héctor Ramón Jiménez2024-10-041-4/+2
| |
* | Fix `responsive`, `component`, and `lazy` always returning an `overlay`Libravatar Héctor Ramón Jiménez2024-10-043-61/+80
| |
* | Implement `Overlay::operate` for `responsive::Overlay`Libravatar Héctor Ramón Jiménez2024-10-041-0/+11
| |
* | Fix `Task::chain` when chained task is `Task::none`Libravatar Héctor Ramón Jiménez2024-10-041-1/+1
|/
* Merge pull request #2623 from boondocklabs/markdown-lifetimeLibravatar Héctor2024-10-021-2/+2
|\ | | | | Change lifetime of markdown IntoIterator Item, as it does not need to live as long as the returned Element
| * Change lifetime of markdown view IntoIterator Item, as it does not need to ↵Libravatar Matt Thompson2024-10-011-2/+2
| | | | | | | | live as long as the returned Element.
* | Merge pull request #2606 from tvolk131/qr_code_fixed_sizeLibravatar Héctor2024-10-022-18/+60
|\ \ | | | | | | feat: set total size of QRCode
| * | Make `cell_size` and `total_size` generic over `Pixels` in `qr_code`Libravatar Héctor Ramón Jiménez2024-10-021-6/+8
| | |
| * | Simplify total size logic in `qr_code` exampleLibravatar Héctor Ramón Jiménez2024-10-021-42/+38
| | |
| * | feat: set total size of QRCodeLibravatar Tommy Volk2024-09-242-10/+54
| |/
* | Merge pull request #2611 from tarkah/fix/ignore-out-of-viewport-textLibravatar Héctor2024-10-022-22/+16
|\ \ | | | | | | Don't fill out of viewport text
| * | Cull widget draw calls in `column` and `row`Libravatar Héctor Ramón Jiménez2024-10-023-26/+16
| | |
| * | Don't fill out of viewport textLibravatar Cory Forsstrom2024-09-271-0/+4
| |/
* | Merge pull request #2608 from ibaryshnikov/haskellLibravatar Héctor2024-10-022-0/+8
|\ \ | | | | | | added physical_key to KeyReleased event
| * | Add `modified_key` to `keyboard::Event::KeyReleased`Libravatar Héctor Ramón Jiménez2024-10-022-0/+4
| | |
| * | added physical_key to KeyReleased eventLibravatar ibaryshnikov2024-09-262-0/+4
| |/