summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix import consistency for `bytemuck`Libravatar Héctor Ramón Jiménez2023-07-123-8/+6
|
* Upgrade resvg to 0.34 and tiny_skia to 0.10Libravatar Alec Deason2023-07-127-51/+85
|
* Merge pull request #1692 from tarkah/fix/tooltip-overlayLibravatar Héctor Ramón2023-07-121-102/+167
|\ | | | | Use overlay for tooltip
| * Remove useless conversions in `widget::tooltip`Libravatar Héctor Ramón Jiménez2023-07-121-15/+17
| |
| * Use overlay for `Tooltip` widgetLibravatar Cory Forsstrom2023-07-121-97/+160
|/
* Merge pull request #1949 from nicksenger/fix/component-overlay-redrawLibravatar Héctor Ramón2023-07-091-0/+4
|\ | | | | Forward redraw requests in component overlay
| * fix: request redraw in component overlayLibravatar Nick Senger2023-07-091-0/+4
|/
* Merge pull request #1865 from jhff/pane_grid_edge_with_dragged_paneLibravatar Héctor Ramón2023-07-065-113/+285
|\ | | | | [Feature] Pane Grid: drag & drop panes to the edges
| * Remove useless conversion in `widget::pane_grid`Libravatar Héctor Ramón Jiménez2023-07-061-1/+1
| |
| * Introduce `drop` helper to `pane_grid::State`Libravatar Héctor Ramón Jiménez2023-07-062-32/+37
| |
| * Simplify `Target` enum in `widget::pane_grid`Libravatar Héctor Ramón Jiménez2023-07-062-18/+9
| |
| * Call `in_edge` only when `picked_pane.is_some()`Libravatar Héctor Ramón Jiménez2023-07-061-19/+21
| |
| * Reuse codeLibravatar Joao Freitas2023-07-061-35/+22
| |
| * Add ability to drag pane to the pane grid edges & optional style for dragged ↵Libravatar Joao Freitas2023-07-065-104/+291
|/ | | | pane
* Merge pull request #1927 from thunderstorm010/masterLibravatar Héctor Ramón2023-07-063-16/+31
|\ | | | | Add command to retrieve window size
| * Add `fetch_size` helper to `runtime::window`Libravatar Héctor Ramón Jiménez2023-07-061-0/+7
| |
| * Add missing newline in `core::window`Libravatar Héctor Ramón Jiménez2023-07-061-1/+1
| |
| * Use `Size` in both `Resize` and `FetchSize` window actionsLibravatar Héctor Ramón Jiménez2023-07-063-18/+15
| |
| * Add FetchSize command - apply the changes discussed at #water-coolerLibravatar Yiğit Özdemir2023-06-224-38/+7
| |
| * Add command to retrieve window sizeLibravatar Yiğit Özdemir2023-06-214-0/+42
| |
* | Merge pull request #1938 from iced-rs/text-cache-modesLibravatar Héctor Ramón2023-06-306-28/+99
|\ \ | | | | | | Text cache modes
| * | Trim text measurements only before `layout`Libravatar Héctor Ramón Jiménez2023-06-294-28/+30
| | |
| * | Revert "Remove `layout` method from `core::Renderer` trait"Libravatar Héctor Ramón Jiménez2023-06-293-9/+32
| | | | | | | | | | | | This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc.
| * | Introduce `Mode` for `text::Cache` and trim only when switching modesLibravatar Héctor Ramón Jiménez2023-06-291-18/+64
| | |
* | | Merge pull request #1913 from Drakulix/feature/runtime-state-operateLibravatar Héctor Ramón2023-06-291-0/+38
|\ \ \ | |/ / |/| | runtime: Handle widget operations in `program::State` helper
| * | Keep imports consistent in `program::state`Libravatar Héctor Ramón Jiménez2023-06-291-4/+4
| | |
| * | Take `Box` instead of reference in `State::operate`Libravatar Héctor Ramón Jiménez2023-06-291-8/+8
| | |
| * | runtime: Add `operate` method to `program::State`Libravatar Victoria Brekenfeld2023-06-281-0/+38
| | |
* | | Add touch support for toggler. (#1935)Libravatar Austin M. Reppert2023-06-291-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add touch support for toggler. * Fix formatting. * Fix consistency of imports in `iced_widget::toggler` --------- Co-authored-by: Austin M. Reppert <austinmreppert@protonmail.com> Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
* | | Merge pull request #1932 from iced-rs/generic-graphics-primitiveLibravatar Héctor Ramón2023-06-2935-480/+867
|\ \ \ | | | | | | | | Backend-specific primitives
| * | | Write missing docs in `iced_graphics` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-298-5/+17
| | | |
| * | | Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-2915-205/+248
| | | |
| * | | Remove `layout` method from `core::Renderer` traitLibravatar Héctor Ramón Jiménez2023-06-293-32/+9
| | | |
| * | | Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-2928-263/+618
|/ / /
* | | Merge pull request #1934 from iced-rs/reuse-text-cache-entriesLibravatar Héctor Ramón2023-06-2810-83/+142
|\ \ \ | | | | | | | | Reuse entries in `text::Cache`
| * | | Retain text measurements as long as original entriesLibravatar Héctor Ramón Jiménez2023-06-282-33/+36
| | | |
| * | | Retain measurements for text entries even if not directly usedLibravatar Héctor Ramón Jiménez2023-06-282-4/+8
| | | |
| * | | Fix needless borrow in `iced_wgpu` and `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-282-2/+2
| | | |
| * | | Reuse entries in `text::Cache` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-282-45/+74
| | | |
| * | | Reuse entries in `text::Cache` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-2810-46/+69
|/ / /
* | | Fix `loading_spinners` exampleLibravatar Héctor Ramón Jiménez2023-06-282-8/+10
| | |
* | | Merge pull request #1878 from AustinMReppert/masterLibravatar Héctor Ramón2023-06-272-76/+114
|\ \ \ | | | | | | | | Minor Scrollable Improvements
| * | | Use `Option::filter` instead of `and_then` in `scrollable`Libravatar Héctor Ramón Jiménez2023-06-271-14/+6
| | | |
| * | | Require a `Direction` when computing `State::offset` in `scrollable`Libravatar Héctor Ramón Jiménez2023-06-271-18/+23
| | | |
| * | | Rename `ScrollbarProperties` to `Direction` in `scrollable`Libravatar Héctor Ramón Jiménez2023-06-272-70/+61
| | | |
| * | | Make vertical scroll properties optionalLibravatar Austin M. Reppert2023-06-272-49/+99
| | | | | | | | | | | | | | | | Co-Authored-By: Austin M. Reppert <austinmreppert@gmail.com>
* | | | Merge pull request #1902 from nicksenger/loading-spinnersLibravatar Héctor Ramón2023-06-276-0/+1019
|\ \ \ \ | |/ / / |/| | | Example loading spinners
| * | | refactor: remove unnecessary canvas complexityLibravatar Nick Senger2023-06-091-120/+67
| | | |
| * | | comment: fix typoLibravatar Nick Senger2023-06-081-4/+4
| | | |
| * | | fix: RedrawRequest::NextFrame -> RedrawRequest::At()Libravatar Nick Senger2023-06-082-2/+10
| | | |