summaryrefslogtreecommitdiffstats
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Moved warning to be between success and dangerLibravatar David Aguiló Domínguez2025-01-061-52/+52
|
* Added color for warning for TERRA, and added warning field to Extended with ↵Libravatar David Aguiló Domínguez2025-01-061-0/+33
| | | | the needed struct and generate
* Added color for warning for OXOCARBON, used a purple since it is the one ↵Libravatar David Aguiló Domínguez2025-01-061-0/+1
| | | | used for diagnostic warnings in the nvim theme
* Added color for warning for MOONFLY and NIGHTFLYLibravatar David Aguiló Domínguez2025-01-061-0/+2
|
* Added color for warning for TOKYO_NIGHT and KANAGAWALibravatar David Aguiló Domínguez2025-01-061-0/+6
|
* Added color for warning for GRUVBOX and CATPPUCCINLibravatar David Aguiló Domínguez2025-01-061-0/+6
|
* Added warning field to palette and assigned colors to it in the LIGHT, DARK, ↵Libravatar David Aguiló Domínguez2025-01-061-0/+16
| | | | DRACULA, NORD and SOLARIZED(both) themes
* Fix documentation of `window::Event::Opened`Libravatar Héctor Ramón Jiménez2025-01-061-2/+2
|
* Fix broken link in `Settings` documentationLibravatar Héctor Ramón Jiménez2024-12-171-3/+1
|
* Reduce size of `Simulator` in `todos` testLibravatar Héctor Ramón Jiménez2024-12-171-0/+1
|
* Support custom renderers in `iced_test` through `renderer::Headless` traitLibravatar Héctor Ramón Jiménez2024-12-143-1/+70
|
* Add image and hash snapshot-based testing to `iced_test`Libravatar Héctor Ramón Jiménez2024-12-103-0/+144
|
* Remove `dbg!` leftover in `core::widget::text`Libravatar Héctor Ramón Jiménez2024-12-101-2/+0
|
* Draft `iced_test` crate and test `todos` exampleLibravatar Héctor Ramón Jiménez2024-12-106-55/+231
|
* Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2024-12-026-18/+18
|
* Fix cross-axis compression in `layout::flex`Libravatar Héctor Ramón Jiménez2024-11-081-1/+52
|
* Rename `Overlay::on_event` to `update`Libravatar Héctor Ramón Jiménez2024-11-063-7/+7
|
* Rename `Widget::on_event` to `update`Libravatar Héctor Ramón Jiménez2024-11-052-5/+5
|
* Replace `event::Status` in `Widget::on_event` with `Shell::capture_event`Libravatar Héctor Ramón Jiménez2024-11-056-41/+49
|
* Split `Shell::request_redraw` into two different methodsLibravatar Héctor Ramón Jiménez2024-11-051-7/+17
|
* Introduce consecutive click distance like other toolkits such as gtk,qt, imgui.Libravatar l-const2024-10-141-1/+1
|
* Add `PartialEq` derives for widget stylesLibravatar BradySimon2024-10-141-1/+1
|
* Merge pull request #2608 from ibaryshnikov/haskellLibravatar Héctor2024-10-021-0/+6
|\ | | | | added physical_key to KeyReleased event
| * Add `modified_key` to `keyboard::Event::KeyReleased`Libravatar Héctor Ramón Jiménez2024-10-021-0/+3
| |
| * added physical_key to KeyReleased eventLibravatar ibaryshnikov2024-09-261-0/+3
| |
* | Fix various typosLibravatar bbb6512024-09-293-4/+4
| | | | | | | | Using https://github.com/crate-ci/typos
* | Document `File{Dropped,Hovered,HoveredLeft}` as unsupported on waylandLibravatar bbb6512024-09-291-0/+12
|/ | | | Blocked on https://github.com/rust-windowing/winit/issues/1881
* Fix flex layout of `Fill` elements in a `Shrink` cross axisLibravatar Héctor Ramón Jiménez2024-09-211-6/+7
| | | | | | Instead of collapsing, the `Fill` elements will fill the cross space allocated by the other `Shrink` elements present in the container.
* Drop short-hand notation support for `color!` macroLibravatar Héctor Ramón Jiménez2024-09-201-20/+8
| | | | | | We'd need to use `stringify!` and `str::len` to properly support the short-hand notation; however, we want the macro to work in `const` contexts.
* Show `text` doc examples in multiple placesLibravatar Héctor Ramón Jiménez2024-09-191-2/+44
|
* Implement some `From` traits for `text_input::Id`Libravatar Héctor Ramón Jiménez2024-09-181-1/+7
|
* Remove outdated `window::Id::MAIN` reference in docsLibravatar Héctor Ramón Jiménez2024-09-181-3/+1
|
* Bump version to `0.13.0` :tada:Libravatar Héctor Ramón Jiménez2024-09-181-5/+5
|
* Merge pull request #2551 from airstrike/mouse-interactionsLibravatar Héctor Ramón2024-09-131-0/+7
|\ | | | | Expose additional mouse interaction cursors
| * Add `Copy` and `Help` variants to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2024-09-131-0/+2
| |
| * Rename `ResizingDiagonal*` to `ResizingDiagonally*`Libravatar Héctor Ramón Jiménez2024-09-131-2/+2
| |
| * Expose additional mouse interaction cursorsLibravatar Andy Terra2024-08-161-0/+5
| |
* | Fix broken doc links in `keyboard::key`Libravatar Héctor Ramón Jiménez2024-09-131-6/+6
| |
* | Add `modified_key` to `keyboard::Event`Libravatar Héctor Ramón Jiménez2024-09-131-0/+3
| |
* | Add `physical_key` to `keyboard::Event`Libravatar Héctor Ramón Jiménez2024-09-132-0/+537
| | | | | | | | Co-authored-by: Exidex <16986685+Exidex@users.noreply.github.com>
* | Encourage use of `color!` macro in `Color::parse` docsLibravatar Héctor Ramón Jiménez2024-09-111-21/+26
| |
* | Rename `Color::from_hex` to `Color::parse`Libravatar Héctor Ramón Jiménez2024-09-111-51/+43
| |
* | Improve flexibility of `color!` macroLibravatar Héctor Ramón Jiménez2024-09-111-15/+46
| |
* | Add Color::from_hexLibravatar Vlad-Stefan Harbuz2024-09-111-0/+69
| |
* | Add `override_redirect` for X11 windowsLibravatar Nadji Abidi2024-09-111-0/+6
| | | | | | | | | | This commit add the `override_redirect` boolean field to the `PlatformSpecific` struct for linux platform. This is a X11-specific flag allow bypassing window manager mapping for precise positioning of windows.
* | Implement `scroll_by` operation for `scrollable`Libravatar lufte2024-09-103-5/+97
| | | | | | | | | | `scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position.
* | Add `mouse::Button` to `mouse::Click`Libravatar Isaac Marovitz2024-09-091-2/+11
| |
* | add option for undecorated_shadow on windows (#2285)Libravatar Night_Hunter2024-09-051-0/+7
| | | | | | | | | | * add option for undecorated_shadow on windows * formated
* | Add `text::Wrapping` supportLibravatar Héctor Ramón Jiménez2024-09-045-3/+36
| | | | | | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com>
* | Make `RichText` generic over data structureLibravatar Héctor Ramón Jiménez2024-08-222-2/+2
|/ | | | ... and decouple `markdown::parse` from theming