summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use `Fn` instead of `FnMut` in `MouseArea`Libravatar Héctor Ramón Jiménez2024-02-031-39/+31
| | | | ... and simplify event logic a bit.
* Fix lintsLibravatar Remmirad2024-02-031-4/+4
|
* Add mouse move events to `MouseArea`Libravatar Remmirad2024-02-031-2/+73
|
* Merge pull request #2146 from Decodetalkers/customactionLibravatar Héctor Ramón2024-02-034-2/+15
|\ | | | | feat: somewhere to place extra actions by platform
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-031-0/+2
| |
| * Organize imports in `runtime::command::action`Libravatar Héctor Ramón Jiménez2024-02-031-2/+1
| |
| * Rename `PlateformSpecific` variant in `Action` to `Custom`Libravatar Héctor Ramón Jiménez2024-02-033-5/+10
| |
| * feat: somewhere to place extra actions by platformLibravatar ShootingStarDragons2024-02-032-0/+7
|/ | | | | | I have view iced-sckt forked iced, and add the extra actions. and there do are some extra actions, like set margin for layer-shell, set lock for ext-session-shell. I think add an any will be of help maybe
* Merge pull request #2140 from blazra/masterLibravatar Héctor Ramón2024-02-032-14/+22
|\ | | | | Improve `TextEditor` slow scrolling behavior with touchpads
| * Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2024-02-031-3/+4
| |
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2024-02-031-1/+3
| |
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-031-0/+2
| |
| * Improve `TextEditor` slow scrolling behavior with touchpads.Libravatar Radovan Blažek2024-02-031-14/+17
|/ | | | | If you scroll by only a fraction of a line, the TextEditor stores this fraction and adds it on the next scroll event.
* Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-021-0/+3
|
* Merge pull request #2223 from brianch/fix-sysinfo-exampleLibravatar Héctor Ramón2024-02-023-6/+9
|\ | | | | Small fix to the Information struct docs and fix memory info. in the system_information example.
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-021-0/+3
| |
| * The memory information is returned in bytes and not kb.Libravatar brianch2024-02-022-6/+6
|/ | | | | | | Fix the documentation of the Information struct, and the example system_information that uses it. Co-authored-by: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com>
* Merge pull request #2120 from iced-rs/transform-primitiveLibravatar Héctor Ramón2024-02-0236-293/+623
|\ | | | | `Transform` primitive
| * Apply `Transformation` to `RawText` primitivesLibravatar Héctor Ramón Jiménez2024-02-023-19/+21
| |
| * Use `with_translation` wherever possibleLibravatar Héctor Ramón Jiménez2024-02-023-38/+29
| |
| * Transform `clip_bounds` in `wgpu::text`Libravatar Héctor Ramón Jiménez2024-02-021-2/+3
| |
| * Implement `loupe` exampleLibravatar Héctor Ramón Jiménez2024-02-022-0/+195
| |
| * Introduce `with_transformation` to `Renderer` traitLibravatar Héctor Ramón Jiménez2024-02-0231-118/+161
| |
| * Allow only uniform scaling in `Transformation`Libravatar Héctor Ramón Jiménez2024-02-024-21/+16
| |
| * Apply `Transform` scaling to text primitivesLibravatar Héctor Ramón Jiménez2024-02-023-2/+17
| |
| * Implement `transform` method for `Geometry`Libravatar Héctor Ramón Jiménez2024-02-023-11/+27
| |
| * Replace `Primitive::Translate` with `Transform`Libravatar Héctor Ramón Jiménez2024-02-0211-133/+205
|/
* Merge pull request #2109 from avsaase/feat/checkbox-disabledLibravatar Héctor Ramón2024-02-0115-89/+164
|\ | | | | Add option to disable checkbox
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-011-0/+2
| |
| * Simplify `draw` logic in `Checkbox`Libravatar Héctor Ramón Jiménez2024-02-011-8/+6
| |
| * Simplify `on_toggle_maybe` for `Checkbox`Libravatar Héctor Ramón Jiménez2024-02-011-2/+1
| |
| * Fix `spacing` in `checkbox` exampleLibravatar Héctor Ramón Jiménez2024-02-011-2/+2
| |
| * Use `then_some` instead of `then` in `checkbox` exampleLibravatar Héctor Ramón Jiménez2024-02-011-1/+1
| |
| * Use strong background for `Secondary` checkbox accentLibravatar Héctor Ramón Jiménez2024-02-011-2/+2
| |
| * Simplify `checkbox` exampleLibravatar Héctor Ramón Jiménez2024-02-012-35/+30
| |
| * Introduce support for disabling a `checkbox`Libravatar Alexander van Saase2024-02-0114-85/+166
|/
* Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-02-011-0/+2
|
* Merge pull request #2226 from iced-rs/overlay-composition-reloadedLibravatar Héctor Ramón2024-02-0127-284/+231
|\ | | | | Remove `position` from `overlay::Element`
| * Remove `position` from `overlay::Element`Libravatar Héctor Ramón Jiménez2024-02-0127-284/+231
|/
* Merge pull request #2225 from tarkah/fix/explain-size-hintLibravatar Héctor Ramón2024-01-311-0/+4
|\ | | | | Call size_hint from Explain
| * Call size_hint from ExplainLibravatar Cory Forsstrom2024-01-311-0/+4
|/
* Merge pull request #2224 from tarkah/fix/map-size-hintLibravatar Héctor Ramón2024-01-311-0/+4
|\ | | | | Call size_hint from Map
| * Call size_hint from MapLibravatar Cory Forsstrom2024-01-311-0/+4
|/
* Merge pull request #2100 from jpttrssn/enhanced-sliderLibravatar Héctor Ramón2024-01-314-37/+241
|\ | | | | Enhance `Slider` and `VerticalSlider` functionality
| * Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2024-01-311-0/+2
| |
| * Fix documentation of `default` method for `slider`Libravatar Héctor Ramón Jiménez2024-01-312-2/+4
| |
| * Simplify `slider` exampleLibravatar Héctor Ramón Jiménez2024-01-311-23/+18
| |
| * Rename `step_fine` in `slider` to `shift_step`Libravatar Héctor Ramón Jiménez2024-01-312-23/+25
| |
| * Simplify `slider` logic furtherLibravatar Héctor Ramón Jiménez2024-01-312-40/+42
| |
| * Simplify `Change` enum in `slider` logic and remove double-click behaviorLibravatar Héctor Ramón Jiménez2024-01-312-118/+35
| |