summaryrefslogtreecommitdiffstats
path: root/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow for styling of the menu of a pick listLibravatar PolyMeilex2024-06-081-0/+24
|
* 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
| | | | | | | | | | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
| * Merge pull request #2334 from DKolter/image-rotationLibravatar Héctor Ramón2024-05-033-46/+94
| |\ | | | | | | Adding feature: Image rotation
| | * 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
| | | | | | | | | | | | Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com>
| * | 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
| | | | | | | | Hashing pointers is a terrible idea.
| * Introduce `canvas::Cache` groupingLibravatar Héctor Ramón Jiménez2024-04-301-0/+1
| | | | | | | | | | Caches with the same `Group` will share their text atlas!
| * Merge pull request #2408 from iced-rs/feature/hover-widgetLibravatar Héctor Ramón2024-04-271-1/+244
| |\ | | | | | | `hover` widget
| | * 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
| | | | | | | | | | Apparently, macOS inverts the scrolling axes automatically now. Was this a thing before, or did an update just break user space?
| * 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
| | | | | | | | It can be used to stack elements on top of each other!
| * Don't consume unused scroll events (#2397)Libravatar Daniel2024-04-231-39/+45
| | | | | | | | | | | | | | | | | | | | | | * Initial Commit * Update scrollable.rs * Use `let _ = ` instead of `_ =` for consistency --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev>
| * 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
| | | | | | | | | | | | | | | * Check is_secure before copy/cut on text_input * run cargo fmt
| | * Merge pull request #2358 from bungoboingo/text-editor-font-sizeLibravatar Héctor Ramón2024-04-021-0/+15
| | |\ | | | | | | | | Some text_editor QoL
| | | * 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 overlay
| | * | combo_box: Do not draw empty menu overlayLibravatar Radovan Blažek2024-04-011-28/+37
| | | | | | | | | | | | | | | | Fixes #2311
| * | | 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
| | |
| * | Use generic `Content` in `Text` to avoid reallocation in `fill_text`Libravatar Héctor Ramón Jiménez2024-04-014-6/+8
| |/