summaryrefslogtreecommitdiffstats
path: root/winit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2211 from MrAntix/windows_PlatformSpecific_skip_taskbarLibravatar Héctor Ramón2024-01-221-0/+3
|\ | | | | feat(window): adds skip_taskbar for windows
| * feat(window): adds skip_taskbar for windowsLibravatar MrAntix2024-01-211-0/+3
| |
* | Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-215-43/+34
|/
* Remove comment in `iced_winit::application`Libravatar Héctor Ramón Jiménez2024-01-181-1/+0
|
* Make `compatible_window` mandatory in `Compositor`Libravatar Héctor Ramón Jiménez2024-01-182-3/+2
|
* Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez2024-01-183-12/+17
| | | | And update `glyphon` and `window_clipboard`
* WIP raw-window-handle 0.6Libravatar Ian Douglas Scott2024-01-162-11/+16
|
* Fine-tune event loop of `multi-window` applicationsLibravatar Héctor Ramón Jiménez2024-01-171-96/+123
|
* Use `SmolStr` for `text` field in `KeyPressed` eventLibravatar Héctor Ramón Jiménez2024-01-161-3/+1
|
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-163-127/+346
|
* Merge branch 'master' into update-winitLibravatar Héctor Ramón Jiménez2024-01-162-0/+24
|\
| * Implemented fetch_maximized and fetch_minimizedLibravatar Calastrophe2024-01-092-0/+24
| |
* | Batch events for processing in `iced_winit` event loopLibravatar Héctor Ramón Jiménez2023-12-201-59/+64
| |
* | Stop polling in event loop on `RedrawRequest::NextFrame`Libravatar Héctor Ramón Jiménez2023-12-201-3/+6
| |
* | Avoid duplicated `UserInterface::draw` calls in `RedrawRequested`Libravatar Héctor Ramón Jiménez2023-12-191-56/+39
| |
* | Fix request redraw event handling for multi-window appsLibravatar Héctor Ramón Jiménez2023-12-192-72/+74
| |
* | Fix redraw request handling in new event loop logicLibravatar Héctor Ramón Jiménez2023-12-191-29/+32
| |
* | Fix `key_code` conversion for character keysLibravatar Héctor Ramón Jiménez2023-12-151-26/+26
| |
* | Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-155-731/+537
|/
* Refactor `Windows` abstraction into `WindowManager`Libravatar Héctor Ramón Jiménez2023-12-024-511/+470
|
* Remove unnecessary re-exports in `iced_winit`Libravatar Héctor Ramón Jiménez2023-12-021-3/+0
|
* Separate `Compositor::new` from `Compositor::create_renderer`Libravatar Héctor Ramón Jiménez2023-12-023-5/+5
|
* Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez2023-12-022-40/+40
|
* Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-303-64/+73
|
* Move `Event` and `Control` types after `multi_window::run`Libravatar Héctor Ramón Jiménez2023-11-301-19/+19
|
* Refactor event loop <-> instance communication in `multi_window`Libravatar Héctor Ramón Jiménez2023-11-291-419/+452
|
* Remove unnecessary unsafe `Send` marker in `iced_winit`Libravatar Héctor Ramón Jiménez2023-11-291-3/+0
|
* Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-11-294-24/+7
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-11-293-18/+27
|
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2023-11-291-3/+4
|
* Use `workspace` dependency for `raw-window-handle`Libravatar Héctor Ramón Jiménez2023-11-291-1/+0
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-299-179/+196
|\
| * Implement `Command::run` for executing a `Stream` to completionLibravatar Héctor Ramón Jiménez2023-11-291-0/+3
| |
| * Merge pull request #2124 from iced-rs/disable-maximize-buttonLibravatar Héctor Ramón2023-10-271-0/+6
| |\ | | | | | | Disable maximize window button if `Settings::resizable` is `false`
| | * Disable maximize window button if `Settings::resizable` is `false`Libravatar Héctor Ramón Jiménez2023-10-271-0/+6
| | |
| * | Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-275-17/+11
| |\|
| | * Centralize `clippy` lints in `.cargo/config.toml`Libravatar Héctor Ramón Jiménez2023-09-201-6/+0
| | |
| | * Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-202-2/+4
| | | | | | | | | | | | This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
| | * Fix `clippy::redundant-closure-for-method-calls`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| | |
| | * Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| | |
| | * Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-202-7/+7
| | |
| | * Merge pull request #2090 from nyurik/mappingLibravatar Héctor Ramón2023-09-192-4/+2
| | |\ | | | | | | | | Chore: Apply clippy map transformations
| | | * Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-192-4/+2
| | | | | | | | | | | | | | | | Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
| | * | Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-192-3/+3
| | |/ | | | | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
| * / Flesh out the `editor` example a bit moreLibravatar Héctor Ramón Jiménez2023-09-182-1/+12
| |/
| * Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
| |
| * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-092-4/+2
| |
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-62/+29
| | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-283-18/+17
| |
| * Add app id setting for linuxLibravatar Cory Forsstrom2023-07-262-1/+38
| |