summaryrefslogtreecommitdiffstats
path: root/widget (follow)
Commit message (Expand)AuthorAgeFilesLines
* Introduce `subscription::Event`Libravatar Héctor Ramón Jiménez2024-06-112-2/+2
* Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez2024-06-102-4/+4
* Create `jump` and `macos_command` methods in `keyboard::Modifiers`Libravatar Héctor Ramón Jiménez2024-05-312-70/+8
* Keep unary `motion` function in `text_editor`Libravatar Héctor Ramón Jiménez2024-05-311-18/+18
* Add Command + ArrowLeft/Right input behavior for macosLibravatar BradySimon2024-05-312-26/+92
* Merge branch 'master' into feat/text-macroLibravatar Héctor Ramón Jiménez2024-05-2340-1317/+2693
|\
| * Ask for explicit `Length` in `center_*` methodsLibravatar Héctor Ramón Jiménez2024-05-132-19/+13
| * Introduce dynamic `opacity` support for `Image` and `Svg`Libravatar Héctor Ramón Jiménez2024-05-033-0/+27
| * Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-032-2/+81
| * Merge pull request #2334 from DKolter/image-rotationLibravatar Héctor Ramón2024-05-033-46/+94
| |\
| | * Simplify image rotation API and its internalsLibravatar Héctor Ramón Jiménez2024-05-023-92/+66
| | * Add `Image` rotation supportLibravatar Héctor Ramón Jiménez2024-05-023-33/+107
| * | Apply bounds check when grabbing `image::Viewer`Libravatar myuujiku2024-05-021-1/+1
| |/
| * Fix `clippy` lints for new `1.78` stable toolchainLibravatar Héctor Ramón Jiménez2024-05-021-1/+1
| * Use an opaque `Id` type for `image::Handle`Libravatar Héctor Ramón Jiménez2024-05-012-9/+5
| * Introduce `canvas::Cache` groupingLibravatar Héctor Ramón Jiménez2024-04-301-0/+1
| * Merge pull request #2408 from iced-rs/feature/hover-widgetLibravatar Héctor Ramón2024-04-271-1/+244
| |\
| | * Propagate mouse movement and button releases unconditionally in `hover`Libravatar Héctor Ramón Jiménez2024-04-271-1/+8
| | * Fix top layer clipping in `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-21/+24
| | * Fix ambiguous link in documentation of `hover` helperLibravatar Héctor Ramón Jiménez2024-04-271-0/+2
| | * Fix `overlay` behavior in `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-11/+14
| | * Introduce `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-1/+229
| * | Set proper size boundaries for `limits` in `Stack::layout`Libravatar Héctor Ramón Jiménez2024-04-271-1/+2
| * | Respect `width` and `height` properties when `Stack` is emptyLibravatar Héctor Ramón Jiménez2024-04-271-1/+5
| |/
| * Fix out of bounds caret in `TextEditor` in some circumstancesLibravatar Héctor Ramón Jiménez2024-04-261-13/+17
| * Fix `Shift` scrolling for `scrollable` on macOSLibravatar Héctor Ramón Jiménez2024-04-261-1/+3
| * Capture scrollbar events in a `scrollable` before content eventsLibravatar Héctor Ramón Jiménez2024-04-261-142/+142
| * Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-255-5/+172
| * Use `Limits::resolve` in `Stack` widgetLibravatar Héctor Ramón Jiménez2024-04-251-2/+3
| * Fix documentation of `stack` moduleLibravatar Héctor Ramón Jiménez2024-04-251-1/+1
| * Implement `Stack` widgetLibravatar Héctor Ramón Jiménez2024-04-253-1/+356
| * Don't consume unused scroll events (#2397)Libravatar Daniel2024-04-231-39/+45
| * Fix clip bounds with nested `scrollable` widgetsLibravatar Héctor Ramón Jiménez2024-04-231-4/+8
| * Allow checking whether a TextEditor is focusedLibravatar mtkennerly2024-04-151-1/+10
| * Reintroduce support for custom primitives in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-082-7/+8
| * Merge branch 'master' into wgpu/better-architectureLibravatar Héctor Ramón Jiménez2024-04-074-9/+22
| |\
| | * Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-072-7/+3
| | * Check is_secure before a copy/cut from TextInput (#2366)Libravatar Aaron McGuire2024-04-021-2/+4
| | * Merge pull request #2358 from bungoboingo/text-editor-font-sizeLibravatar Héctor Ramón2024-04-021-0/+15
| | |\
| | | * Expose line_height & text_size fields for the text_editor widgetLibravatar Bingus2024-03-291-0/+15
| * | | Decouple caching from layering and simplify everythingLibravatar Héctor Ramón Jiménez2024-04-051-4/+5
| * | | Fix layer transformationsLibravatar Héctor Ramón Jiménez2024-04-051-3/+3
| * | | Redesign `iced_wgpu` layering architectureLibravatar Héctor Ramón Jiménez2024-04-031-3/+3
| |/ /
| * | Merge pull request #2364 from blazra/combobox-menu-fixLibravatar Héctor Ramón2024-04-021-28/+37
| |\ \
| | * | combo_box: Do not draw empty menu overlayLibravatar Radovan Blažek2024-04-011-28/+37
| * | | Rename `text::IntoContent` to `IntoFragment`Libravatar Héctor Ramón Jiménez2024-04-011-1/+1
| * | | Reintroduce old `text` helper as `value` helperLibravatar Héctor Ramón Jiménez2024-04-011-0/+13
| * | | Specialize `widget::text` helper with custom `IntoContent` traitLibravatar Héctor Ramón Jiménez2024-04-011-2/+2
| |/ /
| * | Use `Iterator::size_hint` to initialize `Column` and `Row` capacityLibravatar Héctor Ramón Jiménez2024-04-013-8/+56
| * | Use `rustc-hash` for most of our `HashMap` and `HashSet` instancesLibravatar Héctor Ramón Jiménez2024-04-013-11/+19