summaryrefslogtreecommitdiffstats
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `Copy` action to code blocks in `markdown` exampleLibravatar Héctor Ramón Jiménez2025-02-041-0/+8
|
* Fix documentation of `markdown` and `rich_text`Libravatar Héctor Ramón Jiménez2025-02-041-0/+9
|
* Draft `Viewer` trait for `markdown`Libravatar Héctor Ramón Jiménez2025-02-041-0/+6
|
* Take `Event` by reference in `Widget::update`Libravatar Héctor Ramón Jiménez2025-02-045-15/+8
|
* Merge branch 'master' into explore-input-method2Libravatar Héctor Ramón Jiménez2025-02-032-7/+44
|\
| * Introduce `Levitating` variant for `mouse::Cursor`Libravatar Héctor Ramón Jiménez2025-02-031-7/+32
| |
| * Ignore redraws of invisible content in `hover` widgetLibravatar Héctor Ramón Jiménez2025-02-031-0/+12
| |
* | Fix `InputMethod` conflicts with multiple scrollablesLibravatar Héctor Ramón Jiménez2025-02-031-24/+40
| |
* | Fix typo in `core::Event` documentationLibravatar Héctor Ramón Jiménez2025-02-031-1/+1
| |
* | Fulfill `InputMethod` requests only during `RedrawRequested`Libravatar Héctor Ramón Jiménez2025-02-031-0/+3
| |
* | Use `text::Span::new` in `window_manager`Libravatar Héctor Ramón Jiménez2025-02-031-26/+18
| |
* | Implement basic IME selection in `Preedit` overlayLibravatar Héctor Ramón Jiménez2025-02-032-5/+59
| |
* | Add neutral `None` variant to `InputMethod`Libravatar Héctor Ramón Jiménez2025-02-022-4/+11
| |
* | Refactor and simplify `input_method` APILibravatar Héctor Ramón Jiménez2025-02-025-62/+165
| |
* | Copy `winit` docs for `input_method::Event`Libravatar Héctor Ramón Jiménez2025-02-021-12/+64
| |
* | Draft `input_method` supportLibravatar KENZ2025-02-024-1/+54
|/
* Enable `animation` module for Wasm targetLibravatar Héctor Ramón Jiménez2025-01-291-2/+0
|
* Merge pull request #2758 from airstrike/mouse-transformationLibravatar Héctor2025-01-282-2/+32
|\ | | | | Implement `Mul<Transformation>` for `mouse::Cursor` and `mouse::Click`
| * Move cursor `Transformation` to `mouse::cursor` moduleLibravatar Andy Terra2025-01-282-15/+16
| |
| * Implement `Mul<Transformation>` for `mouse::Click`Libravatar Andy Terra2025-01-271-1/+16
| |
| * Implement `Mul<Transformation>` for `mouse::Cursor`Libravatar Andy Terra2025-01-271-0/+14
| |
* | Introduce `LineEnding` to `editor` and fix inconsistenciesLibravatar Héctor Ramón Jiménez2025-01-282-2/+41
|/
* Add `repeat`, `repeat_forever`, and `auto_reverse` to `Animation`Libravatar Héctor Ramón Jiménez2025-01-281-0/+20
|
* Rename `Animation::in_progress` to `is_animating`Libravatar Héctor Ramón Jiménez2025-01-281-1/+1
|
* Make `animation` module only available in nativeLibravatar Héctor Ramón Jiménez2025-01-271-0/+2
|
* Fix broken intra-doc link in `animation`Libravatar Héctor Ramón Jiménez2025-01-271-0/+2
|
* Implement `Animation::value`Libravatar Héctor Ramón Jiménez2025-01-271-0/+5
|
* Draft basic `Animation` API in `iced_core`Libravatar Héctor Ramón Jiménez2025-01-273-0/+112
|
* Merge pull request #2749 from rhysd/const-from-rgb8Libravatar Héctor2025-01-272-88/+23
|\ | | | | Make `Color::from_rgb8` and `Color::from_rgba8` const
| * Use `color!` macro in `Palette` definitionsLibravatar Héctor Ramón Jiménez2025-01-271-9/+9
| |
| * Make all `Color` constructors `const` :tada:Libravatar Héctor Ramón Jiménez2025-01-271-41/+12
| |
| * Make `Color::from_rgb8` and `Color::from_rgba8` constLibravatar rhysd2025-01-252-50/+14
| |
* | Merge pull request #2741 from edwloef/click-kind-deriveLibravatar Héctor2025-01-261-1/+1
|\ \ | | | | | | derive PartialEq and Eq for `mouse::click::Kind`
| * | derive partialeq and eq for mouse::click::KindLibravatar edwloef2025-01-221-1/+1
| | |
* | | Implement `pop` widget :tada:Libravatar Héctor Ramón Jiménez2025-01-261-0/+14
| |/ |/|
* | Add `Duration` helpers to `time` moduleLibravatar Héctor Ramón Jiménez2025-01-241-0/+25
|/
* feat: add a window drag resize taskLibravatar tsuza2025-01-162-0/+29
|
* Use `unwrap_or` in `Theme::default`Libravatar Héctor Ramón Jiménez2025-01-141-4/+8
|
* migrate core::theme to `dark-light` v2Libravatar Ricardo Fernández Serrata2025-01-091-7/+6
|
* Merge pull request #2626 from tvolk131/remove_once_cellLibravatar Héctor2025-01-063-49/+49
|\ | | | | chore: remove once_cell dependency
| * Fix consistency of import orderingLibravatar Héctor Ramón Jiménez2025-01-061-2/+2
| |
| * chore: remove once_cell dependencyLibravatar Tommy Volk2025-01-063-49/+49
| |
* | Merge pull request #2627 from bbb651/more-window-settingsLibravatar Héctor2025-01-061-0/+8
|\ \ | |/ |/| Add `maximized` and `fullscreen` to `window::Settings`
| * Add `window::Settings::fullscreen`Libravatar bbb6512024-10-041-0/+4
| | | | | | | | | | | | | | | | Corresponds to `winit::window::WindowAttributes::with_fullscreen`. Currently only allows to set `Fullscreen::Borderless(None)` meaning borderless on the current monitor, exclusive fullscreen does not make sense for a GUI and iced does not expose monitors yet.
| * Add `window::Settings::maximized`Libravatar bbb6512024-10-041-0/+4
| | | | | | | | Corresponds to `winit::window::WindowAttributes::with_maximized`
* | 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
| |