Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add `physical_key` to `keyboard::Event` | 2024-09-13 | 1 | -2/+258 | |
| | | | | Co-authored-by: Exidex <16986685+Exidex@users.noreply.github.com> | ||||
* | Enter `Runtime` when calling `Program::subscription` | 2024-09-13 | 1 | -2/+2 | |
| | |||||
* | Add `override_redirect` for X11 windows | 2024-09-11 | 1 | -4/+8 | |
| | | | | | 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. | ||||
* | Fix `winit::conversion` on Windows | 2024-09-05 | 1 | -1/+1 | |
| | |||||
* | Merge pull request #2284 from jquesada2016/mouse_passthrough | 2024-09-05 | 1 | -0/+10 | |
|\ | | | | | Add command for setting mouse passthrough | ||||
| * | Add mouse passthrough tasks to `window` module | 2024-09-05 | 1 | -0/+10 | |
| | | | | | | | | Co-authored-by: Jose Quesada <jquesada2016@fau.edu> | ||||
* | | add option for undecorated_shadow on windows (#2285) | 2024-09-05 | 1 | -0/+4 | |
|/ | | | | | * add option for undecorated_shadow on windows * formated | ||||
* | Reconnect `Clipboard` on window close | 2024-09-03 | 3 | -22/+46 | |
| | | | | Fixes #2564 | ||||
* | Add `get_scale_factor` task to `window` module | 2024-08-30 | 2 | -1/+12 | |
| | |||||
* | Produce `window::Event::Closed` only if window exists | 2024-08-15 | 1 | -5/+7 | |
| | |||||
* | Fix crash when application boots from a URL event in macOS | 2024-08-15 | 1 | -3/+14 | |
| | |||||
* | Revert `window::close` producing a `window::Id` | 2024-08-12 | 1 | -2/+1 | |
| | | | | | | Instead, subscribing to `window::close_events` is preferable; since most use cases will want to react to the user closing a window as well. | ||||
* | Produce `window::Event::Closed` on `window::close` | 2024-08-12 | 1 | -1/+7 | |
| | |||||
* | Make `window::close` return and introduce `Task::discard` | 2024-08-12 | 1 | -1/+3 | |
| | |||||
* | Fix formatting in `iced_winit::clipboard` | 2024-08-12 | 1 | -3/+5 | |
| | |||||
* | iced_winit: drop Clipboard before Window | 2024-08-11 | 2 | -9/+24 | |
| | | | | Fixes #2482, avoids nasal daemons | ||||
* | Plug `received_url` in `winit::program` | 2024-08-01 | 1 | -0/+17 | |
| | |||||
* | Return `window::Id` in `window::open` | 2024-07-30 | 1 | -2/+3 | |
| | |||||
* | Avoid exiting when a window is being opened | 2024-07-30 | 1 | -9/+12 | |
| | | | | Fixes #2532 | ||||
* | Fix macOS race condition when closing window | 2024-07-24 | 1 | -9/+11 | |
| | |||||
* | Exit runtime with `control_sender` instead of `break` | 2024-07-24 | 1 | -2/+6 | |
| | |||||
* | Add `resize_events` subscription to `window` module | 2024-07-13 | 1 | -3/+3 | |
| | |||||
* | Finish `window::open` only when window fully opens | 2024-07-11 | 1 | -25/+22 | |
| | | | | | ... and run initial `Task` after `window::open` for applications. This fixes certain race conditions. | ||||
* | Make window visible after surface creation in `iced_winit` | 2024-07-11 | 1 | -1/+11 | |
| | |||||
* | Hide `Subscription` internals | 2024-07-05 | 1 | -2/+4 | |
| | | | | .. and introduce `stream::channel` helper | ||||
* | Hide internal `Task` constructors | 2024-07-05 | 2 | -3/+3 | |
| | |||||
* | Fix fonts not being loaded at startup | 2024-06-21 | 1 | -1/+9 | |
| | |||||
* | Fix `application` sometimes exiting at startup | 2024-06-20 | 1 | -0/+4 | |
| | |||||
* | Add `get_latest` and `get_oldest` tasks in `window` | 2024-06-20 | 1 | -6/+18 | |
| | |||||
* | Fix initialization race conditions in WebAssembly | 2024-06-19 | 1 | -58/+42 | |
| | | | | WebGL is still broken, but oh well... Time to move on. | ||||
* | Fix WebAssembly compilation | 2024-06-19 | 1 | -7/+105 | |
| | | | | Rendering seems to still not work, however. | ||||
* | Introduce `daemon` API and unify shell runtimes | 2024-06-19 | 8 | -1522/+253 | |
| | |||||
* | Use `Task` chaining to simplify `multi_window` example | 2024-06-14 | 1 | -1/+3 | |
| | |||||
* | Remove `parent` from `PlatformSpecific` window settings | 2024-06-14 | 1 | -5/+1 | |
| | |||||
* | Fix `Send` requirements for Wasm targets | 2024-06-14 | 1 | -1/+1 | |
| | |||||
* | Replace `Command` with a new `Task` API with chain support | 2024-06-14 | 4 | -580/+480 | |
| | |||||
* | Introduce `subscription::Event` | 2024-06-11 | 2 | -31/+40 | |
| | | | | ... and remove `PlatformSpecific` from `Event` | ||||
* | Fix widget operations in `multi_window` runtime | 2024-06-10 | 1 | -15/+10 | |
| | |||||
* | Broadcast orphaned events in `multi_window` runtime | 2024-06-10 | 1 | -7/+14 | |
| | |||||
* | Introduce `window::Id` to `Event` subscriptions | 2024-06-10 | 3 | -43/+31 | |
| | | | | And remove `window::Id` from `Event` altogether. | ||||
* | Added scale_factor to `Screenshot` data for use when cropping to widget bounds | 2024-05-24 | 2 | -0/+2 | |
| | |||||
* | Fix main window not closing in multi-window runtime | 2024-05-16 | 1 | -1/+1 | |
| | |||||
* | Add `SpecificWith` variant to `window::Position` | 2024-05-10 | 1 | -0/+29 | |
| | |||||
* | Pass `WindowHandle` by value to `window::run_with_handle` | 2024-05-08 | 2 | -2/+2 | |
| | |||||
* | Plug `new_events` handler to event loop | 2024-05-07 | 2 | -0/+30 | |
| | |||||
* | Update `winit` to `0.30` | 2024-05-07 | 4 | -299/+573 | |
| | |||||
* | Fix `clippy` lints for new `1.78` stable toolchain | 2024-05-02 | 1 | -1/+1 | |
| | |||||
* | Introduce `opaque` widget helper | 2024-04-25 | 2 | -2/+4 | |
| | |||||
* | Fix `SelectNextSome` poll after termination panic in `iced_winit::Proxy` | 2024-04-17 | 1 | -22/+15 | |
| | |||||
* | Implement backpressure mechanism in `iced_winit::Proxy` | 2024-04-16 | 3 | -112/+152 | |
| |