summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use ceil on svg dimensions, fix svg memory usageLibravatar aentity2021-07-211-2/+3
| | | | | | | | Calls ceil() on dimension bounds as this appears fix svg memory unbounded usage because no longer cache miss. The height and width return from resvg seem to always be ceiling of float dimensions, so we try to match.
* Allow overlay from pane grid title barLibravatar Clark Moody2021-06-172-8/+16
|
* Merge pull request #646 from mtsr/disable-buttonLibravatar Héctor Ramón2021-06-102-0/+47
|\ | | | | Disabled button docs and consistent behavior
| * Revert changes in `tour` exampleLibravatar Héctor Ramón2021-06-101-12/+8
| |
| * Update disabled example of `Button` in docsLibravatar Héctor Ramón2021-06-102-16/+28
| |
| * Fix failing doctestsLibravatar Jonas Matser2021-06-102-2/+18
| |
| * Adds doc comment for disabled buttonLibravatar Jonas Matser2021-06-103-8/+31
| | | | | | | | Makes disabled button behavior consistent in web
* | Merge pull request #818 from thenlevy/check_boundsLibravatar Héctor Ramón2021-06-101-2/+2
|\ \ | |/ |/| Prevent scissor_rect region to be larger than the target texture in wgpu::Backend::flush
| * Revert "Attempt to fix scissor_rect validation error"Libravatar Héctor Ramón2021-06-091-10/+1
| | | | | | | | This reverts commit 656dc357f87849f2506ce402f8484a7d7484f250.
| * Floor `width` and `height` in `Rectangle::floor`Libravatar Héctor Ramón2021-06-091-2/+2
| |
| * Attempt to fix scissor_rect validation errorLibravatar nlevy2021-06-091-1/+10
|/ | | | | | Update wgpu/src/backend.rs Cargo fmt
* Merge pull request #607 from yusdacra/scrollable_programmaticallyLibravatar Héctor Ramón2021-06-072-29/+177
|\ | | | | Add methods to control `Scrollable` programmatically
| * Add scrolling progress indicators to `scrollable` exampleLibravatar Héctor Ramón2021-06-041-4/+32
| |
| * Introduce `on_scroll` event in `Scrollable`Libravatar Héctor Ramón2021-06-041-1/+47
| |
| * Add buttons to control scrolling in `scrollable` exampleLibravatar Héctor Ramón2021-06-041-12/+40
| |
| * Introduce `snap_to` and `unsnap` to `scrollable::State`Libravatar Héctor Ramón2021-06-041-184/+139
| |
| * feat(native): Make scrollable programmatically scrollable for some use ↵Libravatar Yusuf Bera Ertan2021-06-041-90/+181
|/ | | | cases, add snap_to_bottom by default
* Merge pull request #535 from Kaiden42/togglerLibravatar Héctor Ramón2021-06-0317-14/+797
|\ | | | | Implement `Toggler` widget for iced_native
| * Add some horizontal padding to `toggler` section in `tour` exampleLibravatar Héctor Ramón2021-06-031-5/+8
| |
| * Use intra-doc links in `Toggler` docsLibravatar Héctor Ramón2021-06-031-23/+0
| |
| * Rename `text_align` to `text_alignment` in `Toggler`Libravatar Héctor Ramón2021-06-031-8/+6
| |
| * Fix formatLibravatar Kaiden422021-06-031-20/+23
| |
| * Add `Toggler` widget to `iced_web`Libravatar Kaiden422021-06-033-0/+215
| |
| * Update documentation of `Toggler`Libravatar Kaiden422021-06-031-1/+1
| |
| * Add `Toggler` to tour exampleLibravatar Kaiden422021-06-031-1/+28
| |
| * Add `Toggler` to styling exampleLibravatar Kaiden422021-06-031-9/+64
| |
| * Change label of `Toggler` to optionalLibravatar Kaiden422021-06-033-32/+53
| |
| * Add alignment of `Toggler` label.Libravatar Kaiden422021-06-031-1/+25
| |
| * fix formatLibravatar Kaiden422021-06-031-2/+2
| |
| * add missing glow supportLibravatar Kaiden422021-06-032-0/+12
| |
| * fix missing semicolon in doc testLibravatar Kaiden422021-06-031-1/+1
| |
| * Implement `Toggler` widget for iced_nativeLibravatar Kaiden422021-06-0310-4/+452
|/
* Merge pull request #893 from traxys/drag_and_dropLibravatar Héctor Ramón2021-06-012-2/+16
|\ | | | | Allow disabling drag and drop on windows
| * Fix documentation of `PlatformSpecific` settingsLibravatar Héctor Ramón2021-06-011-2/+3
| |
| * allow disabling drag and drop on windowsLibravatar Quentin Boyer2021-05-272-1/+14
| |
* | Merge pull request #630 from blefevre/asymmetric-paddingLibravatar Héctor Ramón2021-06-0128-199/+306
|\ \ | | | | | | Add support for asymmetrical padding
| * | Replace ignored doc-tests with additional documentation for `Padding`Libravatar Héctor Ramón2021-06-0116-75/+32
| | |
| * | Use `Padding::horizontal` and `Padding::vertical` helpersLibravatar Héctor Ramón2021-06-015-14/+10
| | |
| * | Fix unused variable warning in `iced_web::text_input`Libravatar Héctor Ramón2021-06-011-1/+1
| | |
| * | Fix `Tooltip` widgetLibravatar Héctor Ramón2021-06-011-3/+3
| | |
| * | Fix `overlay::Menu` implementationLibravatar Héctor Ramón2021-06-011-1/+1
| | |
| * | Introduce `vertical` and `horizontal` methods to `Padding`Libravatar Héctor Ramón2021-06-011-0/+10
| | |
| * | Add support for asymmetrical paddingLibravatar Ben LeFevre2021-06-0127-195/+339
|/ /
* | Merge pull request #901 from hecrj/feature/default-rule-styleLibravatar Héctor Ramón2021-06-011-6/+12
|\ \ | |/ |/| Implement `Default` for `Style` in `rule`
| * Implement `Default` for `Style` in `rule`Libravatar Héctor Ramón2021-06-011-6/+12
|/
* Merge pull request #892 from clarkmoody/title-bar-eventsLibravatar Héctor Ramón2021-05-253-26/+119
|\ | | | | PaneGrid Events in Title Bar Area
| * Enable event handling within the title elementsLibravatar Clark Moody2021-05-242-13/+26
| | | | | | | | | | Shrink the pick area to avoid both the controls and the title elements. Handle events and merge title area event status with control events.
| * Example: Add Pin button to prevent closing a paneLibravatar Clark Moody2021-05-241-8/+42
| | | | | | | | | | Functionality will not work until PaneGrid implementation is updated to support events within the title area.
| * Example: Add close button to pane grid controlsLibravatar Clark Moody2021-05-241-8/+54
|/ | | | | Refactors the state data structure to hold content and controls in separate fields. Adds a new button style for the control button.
* Merge pull request #830 from Dispersia/upgrade-wgpuLibravatar Héctor Ramón2021-05-2433-416/+461
|\ | | | | Upgrade wgpu