Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 2023-07-24 | 8 | -88/+133 | |
| | | | | each INDIVIDUAL window should close on CloseRequested events. | ||||
* | refactored window storage; | 2023-07-21 | 56 | -1823/+1512 | |
| | | | | | new helper window events (Destroyed, Created); clippy + fmt; | ||||
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-07-12 | 394 | -13256/+17244 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs | ||||
| * | Merge pull request #1912 from tarkah/feat/scrollable-alignment | 2023-07-12 | 2 | -67/+165 | |
| |\ | | | | | | | Add scrollable alignment option | ||||
| | * | Remove unnecessary cursor unavailability logic in `scrollable` | 2023-07-12 | 1 | -22/+12 | |
| | | | |||||
| | * | Rename `absolute_from_start` to `translation` in `scrollable` | 2023-07-12 | 1 | -3/+3 | |
| | | | |||||
| | * | Disambiguate `offset` from `translation` in `scrollable` | 2023-07-12 | 1 | -37/+40 | |
| | | | |||||
| | * | Increase type-safety of `alignment` in `scrollable` | 2023-07-12 | 1 | -63/+37 | |
| | | | |||||
| | * | Remove public fields from `Viewport` | 2023-07-12 | 1 | -31/+3 | |
| | | | | | | | | | | | | Let's tackle use cases directly instead! | ||||
| | * | Add alignment to Viewport | 2023-07-04 | 1 | -1/+27 | |
| | | | |||||
| | * | Make viewport bounds public | 2023-07-04 | 1 | -2/+4 | |
| | | | |||||
| | * | Add scrollable alignment option | 2023-07-04 | 2 | -15/+146 | |
| | | | |||||
| * | | Merge pull request #1907 from alec-deason/master | 2023-07-12 | 7 | -51/+85 | |
| |\ \ | | | | | | | | | Update `resvg` to `0.35` and `tiny-skia` to `0.10` | ||||
| | * | | Update `resvg` dependency to `0.35` | 2023-07-12 | 2 | -2/+2 | |
| | | | | |||||
| | * | | Improve code style in `vector` modules | 2023-07-12 | 2 | -22/+24 | |
| | | | | |||||
| | * | | Fix import consistency for `bytemuck` | 2023-07-12 | 3 | -8/+6 | |
| | | | | |||||
| | * | | Upgrade resvg to 0.34 and tiny_skia to 0.10 | 2023-07-12 | 7 | -51/+85 | |
| |/ / | |||||
| * | | Merge pull request #1692 from tarkah/fix/tooltip-overlay | 2023-07-12 | 1 | -102/+167 | |
| |\ \ | | | | | | | | | Use overlay for tooltip | ||||
| | * | | Remove useless conversions in `widget::tooltip` | 2023-07-12 | 1 | -15/+17 | |
| | | | | |||||
| | * | | Use overlay for `Tooltip` widget | 2023-07-12 | 1 | -97/+160 | |
| |/ / | |||||
| * | | Merge pull request #1949 from nicksenger/fix/component-overlay-redraw | 2023-07-09 | 1 | -0/+4 | |
| |\ \ | | | | | | | | | Forward redraw requests in component overlay | ||||
| | * | | fix: request redraw in component overlay | 2023-07-09 | 1 | -0/+4 | |
| |/ / | |||||
| * | | Merge pull request #1865 from jhff/pane_grid_edge_with_dragged_pane | 2023-07-06 | 5 | -113/+285 | |
| |\ \ | | | | | | | | | [Feature] Pane Grid: drag & drop panes to the edges | ||||
| | * | | Remove useless conversion in `widget::pane_grid` | 2023-07-06 | 1 | -1/+1 | |
| | | | | |||||
| | * | | Introduce `drop` helper to `pane_grid::State` | 2023-07-06 | 2 | -32/+37 | |
| | | | | |||||
| | * | | Simplify `Target` enum in `widget::pane_grid` | 2023-07-06 | 2 | -18/+9 | |
| | | | | |||||
| | * | | Call `in_edge` only when `picked_pane.is_some()` | 2023-07-06 | 1 | -19/+21 | |
| | | | | |||||
| | * | | Reuse code | 2023-07-06 | 1 | -35/+22 | |
| | | | | |||||
| | * | | Add ability to drag pane to the pane grid edges & optional style for dragged ↵ | 2023-07-06 | 5 | -104/+291 | |
| |/ / | | | | | | | | | | pane | ||||
| * | | Merge pull request #1927 from thunderstorm010/master | 2023-07-06 | 3 | -16/+31 | |
| |\ \ | | |/ | |/| | Add command to retrieve window size | ||||
| | * | Add `fetch_size` helper to `runtime::window` | 2023-07-06 | 1 | -0/+7 | |
| | | | |||||
| | * | Add missing newline in `core::window` | 2023-07-06 | 1 | -1/+1 | |
| | | | |||||
| | * | Use `Size` in both `Resize` and `FetchSize` window actions | 2023-07-06 | 3 | -18/+15 | |
| | | | |||||
| | * | Add FetchSize command - apply the changes discussed at #water-cooler | 2023-06-22 | 4 | -38/+7 | |
| | | | |||||
| | * | Add command to retrieve window size | 2023-06-21 | 4 | -0/+42 | |
| | | | |||||
| * | | Merge pull request #1938 from iced-rs/text-cache-modes | 2023-06-30 | 6 | -28/+99 | |
| |\ \ | | | | | | | | | Text cache modes | ||||
| | * | | Trim text measurements only before `layout` | 2023-06-29 | 4 | -28/+30 | |
| | | | | |||||
| | * | | Revert "Remove `layout` method from `core::Renderer` trait" | 2023-06-29 | 3 | -9/+32 | |
| | | | | | | | | | | | | | | | | This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc. | ||||
| | * | | Introduce `Mode` for `text::Cache` and trim only when switching modes | 2023-06-29 | 1 | -18/+64 | |
| | | | | |||||
| * | | | Merge pull request #1913 from Drakulix/feature/runtime-state-operate | 2023-06-29 | 1 | -0/+38 | |
| |\ \ \ | | |/ / | |/| | | runtime: Handle widget operations in `program::State` helper | ||||
| | * | | Keep imports consistent in `program::state` | 2023-06-29 | 1 | -4/+4 | |
| | | | | |||||
| | * | | Take `Box` instead of reference in `State::operate` | 2023-06-29 | 1 | -8/+8 | |
| | | | | |||||
| | * | | runtime: Add `operate` method to `program::State` | 2023-06-28 | 1 | -0/+38 | |
| | | | | |||||
| * | | | Add touch support for toggler. (#1935) | 2023-06-29 | 1 | -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-primitive | 2023-06-29 | 35 | -480/+867 | |
| |\ \ \ | | | | | | | | | | | Backend-specific primitives | ||||
| | * | | | Write missing docs in `iced_graphics` and `iced_wgpu` | 2023-06-29 | 8 | -5/+17 | |
| | | | | | |||||
| | * | | | Decouple `Mesh` primitives from main `Primitive` type | 2023-06-29 | 15 | -205/+248 | |
| | | | | | |||||
| | * | | | Remove `layout` method from `core::Renderer` trait | 2023-06-29 | 3 | -32/+9 | |
| | | | | | |||||
| | * | | | Introduce custom backend-specific primitives | 2023-06-29 | 28 | -263/+618 | |
| |/ / / | |||||
| * | | | Merge pull request #1934 from iced-rs/reuse-text-cache-entries | 2023-06-28 | 10 | -83/+142 | |
| |\ \ \ | | | | | | | | | | | Reuse entries in `text::Cache` |