summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* image: Allow any kind of data that implements `AsRef<[u8]>` for the image dataLibravatar Sebastian Dröge2023-02-172-8/+65
| | | | | | It's not required anywhere for it to be a plain slice or a `Vec` and this makes it possible to use data allocated in a different way without copying.
* Merge pull request #1665 from Jedsek/patch-2Libravatar Héctor Ramón2023-02-171-5/+7
|\ | | | | Minor update: `example/qr_code`
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2023-02-171-1/+1
| |
| * Update main.rsLibravatar Jedsek2023-01-201-1/+1
| |
| * Update main.rsLibravatar Jedsek2023-01-201-5/+7
| | | | | | The app should not render qr_code when data is empty
* | Merge pull request #1589 from Night-Hunter-NF/FetchWindowIdLibravatar Héctor Ramón2023-02-173-0/+18
|\ \ | | | | | | add action to get window id
| * | Expose `fetch_id` helper in `window` moduleLibravatar Héctor Ramón Jiménez2023-02-171-0/+9
| | |
| * | add action to get window idLibravatar Night_Hunter2023-02-172-0/+9
|/ /
* | Merge pull request #1587 from Night-Hunter-NF/AlwaysOnTopLibravatar Héctor Ramón2023-02-173-17/+50
|\ \ | | | | | | add always on top action
| * | Expose `change_always_on_top` helper in `window` moduleLibravatar Héctor Ramón Jiménez2023-02-171-4/+15
| | |
| * | Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop`Libravatar Héctor Ramón Jiménez2023-02-172-19/+28
| | |
| * | update docs and change to SetAlwaysOnTopLibravatar Night_Hunter2023-02-172-5/+5
| | |
| * | add always on top actionLibravatar Night_Hunter2023-02-172-0/+13
|/ /
* | Merge pull request #1703 from greatest-ape/v0.7-glow-explicit-locationLibravatar Héctor Ramón2023-02-171-4/+4
|\ \ | | | | | | glow: enable GL_ARB_explicit_attrib_location to fix crashes
| * | glow: enable GL_ARB_explicit_attrib_location to fix crashesLibravatar Joakim Frostegård2023-02-131-4/+4
| | |
* | | Merge pull request #1707 from casperstorm/feat/checkbox-iconLibravatar Héctor Ramón2023-02-178-9/+123
|\ \ \ | | | | | | | | Added the ability to change `Checkbox` icon
| * | | Added the ability to change checkbox iconLibravatar Casper Storm2023-02-168-9/+123
| | | |
* | | | Merge pull request #1695 from nicksenger/widgets/container-idsLibravatar Héctor Ramón2023-02-162-17/+55
|\ \ \ \ | |/ / / |/| | | Provide widgets IDs to `Operation::container`
| * | | container: allow specification of ID and provide to `Operation::container`Libravatar Nick Senger2023-02-161-9/+44
| | | |
| * | | Revert "provide ID to operation.container in applicable widgets"Libravatar Nick Senger2023-02-165-226/+51
| | | | | | | | | | | | | | | | This reverts commit 8f9550bcf7c1cebbf90e80683761375406ca6139.
| * | | provide ID to operation.container in applicable widgetsLibravatar Nick Senger2023-02-165-51/+226
| | | |
| * | | scrollable: provide ID to operation.containerLibravatar Nick Senger2023-02-161-8/+11
| | | |
* | | | Merge pull request #1706 from tarkah/fix/text-input-paddingLibravatar Héctor Ramón2023-02-151-1/+1
|\ \ \ \ | |/ / / |/| | | Pad after setting width in text input
| * | | Pad after setting widthLibravatar Cory Forsstrom2023-02-141-1/+1
|/ / / | | | | | | | | | | | | Otherwise `width` will set limits back to a fixed width if `Length::Units` is used, overwriting padding.
* | | Merge pull request #1675 from casperstorm/pick_list/extend-handleLibravatar Héctor Ramón2023-02-142-63/+72
|\ \ \ | | | | | | | | Extended `pick_list::Handle` to be more flexible
| * | | Inline `Handle::content` for simplicity and efficiencyLibravatar Héctor Ramón Jiménez2023-02-141-31/+22
| | | | | | | | | | | | | | | | We can avoid downcasting `state` :^)
| * | | Provide `State` reference instead of closure to `pick_list::draw`Libravatar Héctor Ramón Jiménez2023-02-141-3/+2
| | | |
| * | | Use `char` instead of `String` for `pick_list::Icon`Libravatar Héctor Ramón Jiménez2023-02-141-19/+16
| | | |
| * | | Move `Handle` and `Icon` definitions in `pick_list`Libravatar Héctor Ramón Jiménez2023-02-141-70/+70
| | | |
| * | | Rename `HandleContent` to `Icon` and simplify genericsLibravatar Héctor Ramón Jiménez2023-02-142-55/+21
| | | |
| * | | Extend pick_list::HandleLibravatar Casper Storm2023-02-142-15/+71
| | | |
* | | | Merge pull request #1701 from nicksenger/fix/diff-component-operateLibravatar Héctor Ramón2023-02-141-0/+2
|\ \ \ \ | | | | | | | | | | Fix panic when using operations with components in certain cases
| * | | | fix: diff widget sub-tree after rebuilding component with operationLibravatar Nick Senger2023-02-121-0/+2
| | |/ / | |/| |
* | | | Merge pull request #1698 from iced-rs/hide-window-until-readyLibravatar Héctor Ramón2023-02-142-7/+16
|\ \ \ \ | | | | | | | | | | Hide window until `Renderer` has been initialized
| * | | | Hide window until `Renderer` has been initializedLibravatar Héctor Ramón Jiménez2023-02-112-7/+16
| |/ / /
* | | | Merge pull request #1700 from nicksenger/overlay/fix-panicLibravatar Héctor Ramón2023-02-141-9/+9
|\ \ \ \ | |_|/ / |/| | | Fix panic when overlay event processing removes overlay
| * | | fix: panic when overlay event processing removes overlayLibravatar Nick Senger2023-02-111-9/+9
| |/ /
* | | Merge pull request #1699 from nicksenger/overlay/is_overLibravatar Héctor Ramón2023-02-143-0/+21
|\ \ \ | |/ / |/| | Implement `is_over` for iced_lazy widget `Overlay`s
| * | fix: lazy widgets overlay is_overLibravatar Nick Senger2023-02-103-0/+21
|/ /
* | Resize images on README.md (#1659)Libravatar Yoo Dongryul2023-02-071-2/+2
| | | | | | | | | | | | | | * Resize images on README.md * hotfix: for mobile layout * fix: set height of both images equally
* | Merge pull request #1694 from sushigiri/masterLibravatar Héctor Ramón2023-02-061-1/+5
|\ \ | | | | | | Accept FnOnce instead of Fn in canvas cache draw
| * | Accept FnOnce instead of Fn in canvas cache drawLibravatar sushigiri2023-02-061-1/+5
|/ / | | | | | | | | Use FnOnce in `draw` function signature instead of `Fn`, permitting the use of iterators and other one-time functions.
* | Write missing `window::Action` helpers in `window`Libravatar Héctor Ramón Jiménez2023-01-312-6/+35
| |
* | Improve consistency of `window::Action`Libravatar Héctor Ramón Jiménez2023-01-313-14/+15
| |
* | Merge pull request #1686 from iced-rs/fix/overlay-group-positionLibravatar Héctor Ramón2023-01-307-18/+33
|\ \ | | | | | | Fix layout translation in `overlay::Group`
| * | Fix layout translation in `overlay::Group`Libravatar Héctor Ramón Jiménez2023-01-307-18/+33
|/ / | | | | | | | | This bug produced improper positioning of overlays of elements inside a `Scrollable`.
* | Merge pull request #1685 from iced-rs/fix/component-animationsLibravatar Héctor Ramón2023-01-301-0/+4
|\ \ | | | | | | Fix widget-driven animations for `Component`
| * | Fix widget-driven animations for `Component`Libravatar Héctor Ramón Jiménez2023-01-301-0/+4
| | |
* | | Merge pull request #1682 from tarkah/standalone-image-drawLibravatar Héctor Ramón2023-01-301-28/+40
|\ \ \ | |/ / |/| | Refactor image draw to standalone function
| * | Refactor image draw to standalone functionLibravatar Cory Forsstrom2023-01-281-28/+40
|/ /