summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use `instant` to fix Wasm targetLibravatar Héctor Ramón Jiménez2023-01-129-9/+12
|
* Replace `Option<Instant>` with `RedrawRequest` enumLibravatar Héctor Ramón Jiménez2023-01-128-31/+84
|
* Rename `Focus::at` to `Focus::updated_at` in `text_input`Libravatar Héctor Ramón Jiménez2023-01-121-7/+14
|
* Implement `window::frames` subscriptionLibravatar Héctor Ramón Jiménez2023-01-124-4/+43
| | | | ... and use it in the `solar_system` example :tada:
* Use short-hand field notation in `TextInput`Libravatar Héctor Ramón Jiménez2023-01-121-1/+1
|
* Avoid reblinking cursor when clicking a focused `TextInput`Libravatar Héctor Ramón Jiménez2023-01-121-12/+7
|
* Implement widget redraw support in `iced_glutin`Libravatar Héctor Ramón Jiménez2023-01-121-11/+61
|
* Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez2023-01-1212-107/+263
| | | | ... and implement `TextInput` cursor blink :tada:
* Merge pull request #1550 from bungoboingo/feat/multidirectional-scrollingLibravatar Héctor Ramón2023-01-0912-521/+1043
|\ | | | | [Feature] Multidirectional scrolling
| * Avoid dragging scroll area when touching scrollbars for `Scrollable`Libravatar Héctor Ramón Jiménez2023-01-081-1/+4
| |
| * Remove `PartialOrd` implementation for `Rectangle`Libravatar Héctor Ramón Jiménez2023-01-082-7/+3
| | | | | | | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions.
| * Enable horizontal scrolling with `Shift+MouseWheel`Libravatar Héctor Ramón Jiménez2023-01-081-1/+17
| |
| * Add some missing `spacing` to `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-01-081-0/+2
| |
| * Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-086-69/+75
| |
| * Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-299-691/+618
| | | | | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
| * Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-2912-563/+1135
| |
* | Merge pull request #1565 from bungoboingo/feat/tracingLibravatar Héctor Ramón2023-01-0917-24/+276
|\ \ | | | | | | [Feature] Profiling
| * | Add newline at EOF to `.gitignore`Libravatar Héctor Ramón Jiménez2023-01-091-1/+1
| | |
| * | Restructured everything to make profiling a feature of iced_winit.Libravatar bungoboingo2023-01-0923-251/+181
| | |
| * | Initial profiling support for Iced.Libravatar Bingus2023-01-0920-35/+357
|/ /
* | Merge pull request #1639 from iced-rs/fix/limits-clampLibravatar Héctor Ramón2023-01-051-7/+9
|\ \ | | | | | | Stop using `f32::clamp` altogether in `layout::Limits`
| * | Stop using `f32::clamp` altogether in `layout::Limits`Libravatar Héctor Ramón Jiménez2023-01-051-7/+9
| | |
* | | Merge pull request #1633 from pop-os/standardize-checkbox-functionsLibravatar Héctor Ramón2023-01-052-3/+3
|\ \ \ | | | | | | | | use same name & order for checkbox::new and helper
| * | | Checkbox: Fix tests with sync'ed helper macro and associated fnLibravatar 13r0ck2023-01-041-1/+1
| | | |
| * | | use same name & order for checkbox::new and helperLibravatar 13r0ck2023-01-042-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The helper function for the checkbox widget switched the order and name of the arguments passed when creating the checkbox widget. This just standardizes the order whether the dev is using the helper or the associated function. Continuation of https://github.com/iced-rs/iced/pull/1616
* | | | Merge pull request #1638 from tarkah/fix/responsive-overlay-layoutLibravatar Héctor Ramón2023-01-051-2/+4
|\ \ \ \ | |_|/ / |/| | | Fix Responsive overlay placement bug
| * | | Fix shadowed variableLibravatar Cory Forsstrom2023-01-051-2/+4
|/ / / | | | | | | | | | | | | | | | Layout passed into the overlay was accidentally shadowed by the content's layout. So instead of offsetting by the proper layout, the content layout was used instead.
* | | Merge pull request #1637 from iced-rs/fix/layout-resolve-panicLibravatar Héctor Ramón2023-01-051-2/+7
|\ \ \ | | | | | | | | Fix `Layout::resolve` panicking under some circumstances
| * | | Fix `Layout::resolve` panicking under some circumstancesLibravatar Héctor Ramón Jiménez2023-01-051-2/+7
| |/ / | | | | | | | | | When `fill` has a bigger `Size` than `max`.
* | | Merge pull request #1636 from tarkah/fix/location-copyLibravatar Héctor Ramón2023-01-041-2/+2
|\ \ \ | | | | | | | | Make location copy
| * | | Fix lintLibravatar Cory Forsstrom2023-01-041-1/+1
| | | |
| * | | Make location copyLibravatar Cory Forsstrom2023-01-041-1/+1
| |/ /
* | | Merge pull request #1635 from tarkah/fix/pub-count-fieldsLibravatar Héctor Ramón2023-01-041-2/+2
|\ \ \ | | | | | | | | Make count fields pub
| * | | Make count fields pubLibravatar Cory Forsstrom2023-01-041-2/+2
| |/ /
* | | Merge pull request #1634 from Araxeus/fix-doc-linksLibravatar Héctor Ramón2023-01-041-1/+1
|\ \ \ | |/ / |/| | fix doc links
| * | fix doc linksLibravatar Araxeus2023-01-041-1/+1
|/ /
* | Merge pull request #1585 from Night-Hunter-NF/FocusWindowLibravatar Héctor Ramón2023-01-022-0/+14
|\ \ | | | | | | add action to make window focus
| * | Rename `FocusWindow` to `GainFocus` in `window::Action`Libravatar Héctor Ramón Jiménez2023-01-022-4/+4
| | |
| * | Add `FocusWindow` to `window::Action`Libravatar Night_Hunter2023-01-022-0/+14
|/ /
* | Fix "Test Status" badge in `README`Libravatar Héctor Ramón Jiménez2023-01-021-1/+1
| |
* | Merge pull request #1562 from casperstorm/feat/custom-accessory-contentLibravatar Héctor Ramón2023-01-024-19/+88
|\ \ | | | | | | Added ability to customize the handle of a `pick_list`
| * | Rename `pick_list::AccessoryContent` to `Handle`Libravatar Héctor Ramón Jiménez2022-12-144-39/+34
| | | | | | | | | | | | ... and rename `Default` variant to `Arrow`.
| * | Added accessory_content_color to appreance.Libravatar Casper Rogild Storm2022-11-293-1/+5
| | |
| * | Correctly pass accessory content.Libravatar Casper Rogild Storm2022-11-291-0/+2
| | |
| * | Added ability to customize accessory content.Libravatar Casper Rogild Storm2022-11-294-19/+87
| | |
* | | Merge pull request #1584 from Night-Hunter-NF/RequestUserAttentionLibravatar Héctor Ramón2023-01-026-12/+75
|\ \ \ | | | | | | | | add action to request user attention
| * | | Create conversion function for `user_attention` in `iced_winit`Libravatar Héctor Ramón Jiménez2023-01-023-11/+21
| | | |
| * | | Add `RequestUserAttention` to `window::Action`Libravatar Night_Hunter2023-01-024-11/+64
|/ / /
* | | Merge pull request #1622 from rs017991/text_input_shift_clickLibravatar Héctor Ramón2023-01-021-2/+10
|\ \ \ | | | | | | | | TextInput: SHIFT+Left Click to Select
| * | | TextInput: SHIFT+Left Click to SelectLibravatar Ryan Scheidter2022-12-251-2/+10
| | |/ | |/|