summaryrefslogtreecommitdiffstats
path: root/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `Shadow` to `container::Appearance`Libravatar Héctor Ramón Jiménez2024-01-202-4/+6
|
* Add `Shadow` to `button::Appearance`Libravatar Héctor Ramón Jiménez2024-01-201-1/+5
|
* Introduce `Border` struct analogous to `Shadow`Libravatar Héctor Ramón Jiménez2024-01-2015-96/+67
|
* Use `Default` implementation of `renderer::Quad`Libravatar Héctor Ramón Jiménez2024-01-2015-83/+43
|
* feat: quad shadowsLibravatar Nick Senger2024-01-2015-0/+31
|
* Merge pull request #2163 from hicaru/svg_hoverLibravatar Héctor Ramón2024-01-181-2/+7
|\ | | | | added svg hover, for styles impl
| * Fix `Svg` stylingLibravatar Héctor Ramón2024-01-091-2/+2
| |
| * added svg hover, for styles implLibravatar hicaru2023-12-121-2/+7
| |
* | Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-163-59/+76
| |
* | Merge branch 'master' into update-winitLibravatar Héctor Ramón Jiménez2024-01-1636-447/+498
|\ \
| * \ Merge pull request #2192 from iced-rs/fix/layout-inconsistenciesLibravatar Héctor Ramón2024-01-1234-406/+390
| |\ \ | | | | | | | | Layout consistency
| | * | Make `Button` sizing strategy adaptiveLibravatar Héctor Ramón Jiménez2024-01-112-13/+8
| | | |
| | * | Add `Theme` selector to `layout` exampleLibravatar Héctor Ramón Jiménez2024-01-102-4/+4
| | | |
| | * | Fix `cross` calculation in `layout::flex`Libravatar Héctor Ramón Jiménez2024-01-101-1/+0
| | | |
| | * | Fix unnecessary `into` call in `Container::new`Libravatar Héctor Ramón Jiménez2024-01-101-1/+1
| | | |
| | * | Make `column` and `row` take an `IntoIterator`Libravatar Héctor Ramón Jiménez2024-01-103-10/+8
| | | |
| | * | Fix `size_hint` for `keyed_column`Libravatar Héctor Ramón Jiménez2024-01-102-20/+26
| | | |
| | * | Introduce useful helpers in `layout` moduleLibravatar Héctor Ramón Jiménez2024-01-1017-84/+50
| | | |
| | * | Replace `width` and `height` with `Widget::size`Libravatar Héctor Ramón Jiménez2024-01-1031-195/+152
| | | |
| | * | Introduce `Widget::size_hint` and fix further layout inconsistenciesLibravatar Héctor Ramón Jiménez2024-01-106-32/+99
| | | |
| | * | Create `layout` exampleLibravatar Héctor Ramón Jiménez2024-01-102-2/+2
| | | |
| | * | Fix needless borrow in `row::layout`Libravatar Héctor Ramón Jiménez2024-01-041-1/+1
| | | |
| | * | Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-0424-115/+111
| | | |
| * | | Fix clipping of `TextInput` selectionLibravatar Héctor Ramón Jiménez2024-01-121-23/+31
| | | |
| * | | Fix doc to include missing feature tagsLibravatar William Shere2024-01-051-0/+3
| |/ / | | | | | | | | | Helper functions behind `lazy` feature were missing the tag in the documentation.
| * | Merge pull request #2168 from jhff/fix/pane_grid_top_edge_clickLibravatar Héctor Ramón2024-01-042-18/+68
| |\ \ | | | | | | | | [Fix] `PaneGrid` click interaction on the top edge
| | * | Add deadband distance before initiating drag action on pane gridLibravatar Joao Freitas2023-12-152-18/+68
| | |/
| * / added text::Shaping to TooltipLibravatar Giuliano Bellini s2947392023-12-231-0/+6
| |/
* / Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-154-35/+37
|/
* Added the ability to change the style of a TextEditorLibravatar Bingus2023-12-061-0/+9
|
* Merge pull request #1964 from bungoboingo/feat/multi-window-supportLibravatar Héctor Ramón2023-12-052-4/+4
|\ | | | | [Feature] 🪟 Multi Window 🪟 .. redux!
| * Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-2948-745/+3405
| |\
| * | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-07-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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
* | | Fix `clippy` lintLibravatar Héctor Ramón Jiménez2023-12-011-1/+1
| | |
* | | Clip text to `viewport` bounds instead of layout boundsLibravatar Héctor Ramón Jiménez2023-12-0111-70/+84
| |/ |/|
* | Provide actual bounds to `Shader` primitivesLibravatar Héctor Ramón Jiménez2023-11-281-1/+0
| | | | | | | | ... and allow for proper translation and scissoring.
* | Merge pull request #2143 from iced-rs/fix/tooltip-layout-invalidationLibravatar Héctor Ramón2023-11-211-1/+9
|\ \ | | | | | | Invalidate layout when `Tooltip` changes `overlay`
| * | Invalidate layout when `Tooltip` changes `overlay`Libravatar Héctor Ramón Jiménez2023-11-211-1/+9
| | |
* | | Fix `Overlay` compositionLibravatar Héctor Ramón Jiménez2023-11-215-5/+11
|/ / | | | | | | Translations were not easily composable.
* | Improve module hierarchy of `custom_shader` exampleLibravatar Héctor Ramón Jiménez2023-11-141-0/+1
| |
* | Export `wgpu` crate in `shader` module in `iced_widget`Libravatar Héctor Ramón Jiménez2023-11-141-0/+1
| |
* | Create `shader` function helper in `iced_widget`Libravatar Héctor Ramón Jiménez2023-11-141-0/+11
| |
* | Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-11-142-3/+3
| |
* | Use `Instant` from `iced_core` instead of `std`Libravatar Héctor Ramón Jiménez2023-11-141-2/+1
| | | | | | | | This is needed for Wasm compatibility.
* | Enable `iced_renderer/wgpu` feature in `iced_widget`Libravatar Héctor Ramón Jiménez2023-11-141-1/+1
| |
* | Re-organize `custom` module as `pipeline` moduleLibravatar Héctor Ramón Jiménez2023-11-144-1/+312
| | | | | | | | ... and move `Shader` widget to `iced_widget` crate
* | Reexport Transformation from widget::shaderLibravatar Bingus2023-11-141-1/+1
| |
* | Added support for custom shader widget for iced_wgpu backend.Libravatar Bingus2023-11-142-0/+4
| |
* | Refactor texture image filteringLibravatar Héctor Ramón Jiménez2023-11-112-9/+25
| | | | | | | | | | | | - Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer`
* | Fix clippy + fmtLibravatar Remmirad2023-11-111-1/+1
| |