summaryrefslogtreecommitdiffstats
path: root/winit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `get_latest` and `get_oldest` tasks in `window`Libravatar Héctor Ramón Jiménez2024-06-201-6/+18
|
* Fix initialization race conditions in WebAssemblyLibravatar Héctor Ramón Jiménez2024-06-191-58/+42
| | | | WebGL is still broken, but oh well... Time to move on.
* Fix WebAssembly compilationLibravatar Héctor Ramón Jiménez2024-06-191-7/+105
| | | | Rendering seems to still not work, however.
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-199-1523/+254
|
* Use `Task` chaining to simplify `multi_window` exampleLibravatar Héctor Ramón Jiménez2024-06-141-1/+3
|
* Remove `parent` from `PlatformSpecific` window settingsLibravatar Héctor Ramón Jiménez2024-06-141-5/+1
|
* Fix `Send` requirements for Wasm targetsLibravatar Héctor Ramón Jiménez2024-06-141-1/+1
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-144-580/+480
|
* Introduce `subscription::Event`Libravatar Héctor Ramón Jiménez2024-06-112-31/+40
| | | | ... and remove `PlatformSpecific` from `Event`
* Fix widget operations in `multi_window` runtimeLibravatar Héctor Ramón Jiménez2024-06-101-15/+10
|
* Broadcast orphaned events in `multi_window` runtimeLibravatar Héctor Ramón Jiménez2024-06-101-7/+14
|
* Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez2024-06-103-43/+31
| | | | And remove `window::Id` from `Event` altogether.
* Update outdated `README`s of subcratesLibravatar Héctor Ramón Jiménez2024-05-271-12/+0
|
* Added scale_factor to `Screenshot` data for use when cropping to widget boundsLibravatar Shan2024-05-242-0/+2
|
* Fix main window not closing in multi-window runtimeLibravatar Héctor Ramón Jiménez2024-05-161-1/+1
|
* Add `SpecificWith` variant to `window::Position`Libravatar Héctor Ramón Jiménez2024-05-101-0/+29
|
* Pass `WindowHandle` by value to `window::run_with_handle`Libravatar Héctor Ramón Jiménez2024-05-082-2/+2
|
* Plug `new_events` handler to event loopLibravatar Héctor Ramón Jiménez2024-05-072-0/+30
|
* Update `winit` to `0.30`Libravatar Héctor Ramón Jiménez2024-05-075-299/+575
|
* Fix `clippy` lints for new `1.78` stable toolchainLibravatar Héctor Ramón Jiménez2024-05-021-1/+1
|
* Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-252-2/+4
|
* Fix `SelectNextSome` poll after termination panic in `iced_winit::Proxy`Libravatar Héctor Ramón Jiménez2024-04-171-22/+15
|
* Implement backpressure mechanism in `iced_winit::Proxy`Libravatar Héctor Ramón Jiménez2024-04-163-112/+152
|
* Port `iced_tiny_skia` to new layering architectureLibravatar Héctor Ramón Jiménez2024-04-092-14/+5
|
* Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-072-8/+4
|
* Use `rustc-hash` for most of our `HashMap` and `HashSet` instancesLibravatar Héctor Ramón Jiménez2024-04-012-8/+9
|
* Allow custom renderers in `Program` and `Application`Libravatar Héctor Ramón Jiménez2024-03-222-7/+7
|
* Implement composable, type-safe renderer fallbackLibravatar Héctor Ramón Jiménez2024-03-212-5/+7
|
* Revert "Remove `'static'` bound for `P::State` in `Program::run_with`"Libravatar Héctor Ramón Jiménez2024-03-171-3/+2
| | | | | | | This reverts commit cab9dec6267f3e38b2dee2a0262cd04e21a7519e. Wasm needs the `'static'` bound since the runtime will run in a background task.
* Remove `'static'` bound for `P::State` in `Program::run_with`Libravatar Héctor Ramón Jiménez2024-03-171-2/+3
|
* Merge pull request #2312 from iced-rs/theming-reloadedLibravatar Héctor Ramón2024-03-087-43/+70
|\ | | | | Theming reloaded
| * Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-075-55/+35
| |
| * Move `Theme` type to `iced_core`Libravatar Héctor Ramón Jiménez2024-03-073-4/+1
| |
| * Simplify theming for `Application`Libravatar Héctor Ramón Jiménez2024-03-065-41/+91
| |
* | Fix `block_on` in `iced_wgpu` hanging Wasm buildsLibravatar Héctor Ramón Jiménez2024-03-072-4/+7
|/
* Use inclusive range for `is_private_use` functionLibravatar Héctor Ramón Jiménez2024-02-261-1/+1
|
* Ignore `text` in `KeyPressed` with private use charsLibravatar Héctor Ramón Jiménez2024-02-261-1/+6
| | | | Apparently, macOS likes to use these for simple keys.
* Use `crate::core::Point` instead of prefixingLibravatar Héctor Ramón Jiménez2024-02-222-4/+4
|
* Rename `fetch_location` to `fetch_position`Libravatar Héctor Ramón Jiménez2024-02-222-25/+27
|
* Add `fetch_location` command to `window` moduleLibravatar Night_Hunter2024-02-222-0/+32
|
* Decouple `Key` from modifiers and apply them to `text`Libravatar Ashley Wulber2024-02-201-11/+34
|
* Make `Canvas` fill the parent container on WasmLibravatar Héctor Ramón Jiménez2024-02-201-0/+4
|
* Point doc links to `0.12` branchLibravatar Héctor Ramón Jiménez2024-02-152-6/+6
|
* Rename `show_window_menu` to `show_system_menu`Libravatar Héctor Ramón Jiménez2024-02-132-2/+2
|
* Add `show_window_menu` actionLibravatar Ian Douglas Scott2024-02-132-0/+23
| | | | | | | | Winit currently supports this only on Windows and Wayland. This requests that a context menu is shown at the cursor position, like the menu normally triggered by right clicking the title bar. This is important for implementing client side decorations with Iced widgets.
* Implement win32 workaround for multi_window application as well. Also ↵Libravatar dtzxporter2024-02-132-3/+32
| | | | trigger AboutToWait for Moved as well.
* Introduce `Kind` in `core::clipboard`Libravatar Héctor Ramón Jiménez2024-02-133-74/+30
|
* Add support for primary clipboardLibravatar Mattias Eriksson2024-02-133-0/+58
|
* Update some dependenciesLibravatar Wyatt Herkamp2024-02-091-6/+6
|
* Remove `allow(unused_mut)` in `winit::application`Libravatar Héctor Ramón Jiménez2024-02-071-15/+18
|