Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename `show_window_menu` to `show_system_menu` | 2024-02-13 | 1 | -1/+1 | |
| | |||||
* | Add `show_window_menu` action | 2024-02-13 | 1 | -0/+8 | |
| | | | | | | | | 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 ↵ | 2024-02-13 | 1 | -1/+2 | |
| | | | | trigger AboutToWait for Moved as well. | ||||
* | Introduce `Kind` in `core::clipboard` | 2024-02-13 | 1 | -16/+4 | |
| | |||||
* | Add support for primary clipboard | 2024-02-13 | 1 | -0/+12 | |
| | |||||
* | Remove `allow(unused_mut)` in `winit::application` | 2024-02-07 | 1 | -15/+18 | |
| | |||||
* | Emulate `AboutToWait` event on Windows while resizing | 2024-02-07 | 1 | -13/+38 | |
| | | | | More details: https://github.com/rust-windowing/winit/issues/3272 | ||||
* | Rename `fetch_native_handle` to `run_with_handle` in `window` | 2024-02-07 | 1 | -8/+9 | |
| | |||||
* | Re-implement against latest iced master. Rename FetchNativeHandle. | 2024-02-07 | 1 | -0/+9 | |
| | |||||
* | Rename `PlateformSpecific` variant in `Action` to `Custom` | 2024-02-03 | 1 | -1/+3 | |
| | |||||
* | feat: somewhere to place extra actions by platform | 2024-02-03 | 1 | -0/+1 | |
| | | | | | | I have view iced-sckt forked iced, and add the extra actions. and there do are some extra actions, like set margin for layer-shell, set lock for ext-session-shell. I think add an any will be of help maybe | ||||
* | Convert `Renderer::Theme` to generic `Widget` type | 2024-01-21 | 1 | -11/+9 | |
| | |||||
* | Remove comment in `iced_winit::application` | 2024-01-18 | 1 | -1/+0 | |
| | |||||
* | Make `compatible_window` mandatory in `Compositor` | 2024-01-18 | 1 | -1/+1 | |
| | |||||
* | Remove `Compositor` window generic | 2024-01-18 | 1 | -4/+4 | |
| | | | | And update `glyphon` and `window_clipboard` | ||||
* | WIP raw-window-handle 0.6 | 2024-01-16 | 1 | -10/+14 | |
| | |||||
* | Refactor `KeyCode` into `Key` and `Location` | 2024-01-16 | 1 | -1/+1 | |
| | |||||
* | Merge branch 'master' into update-winit | 2024-01-16 | 1 | -0/+10 | |
|\ | |||||
| * | Implemented fetch_maximized and fetch_minimized | 2024-01-09 | 1 | -0/+10 | |
| | | |||||
* | | Batch events for processing in `iced_winit` event loop | 2023-12-20 | 1 | -59/+64 | |
| | | |||||
* | | Stop polling in event loop on `RedrawRequest::NextFrame` | 2023-12-20 | 1 | -3/+6 | |
| | | |||||
* | | Avoid duplicated `UserInterface::draw` calls in `RedrawRequested` | 2023-12-19 | 1 | -56/+39 | |
| | | |||||
* | | Fix request redraw event handling for multi-window apps | 2023-12-19 | 1 | -1/+1 | |
| | | |||||
* | | Fix redraw request handling in new event loop logic | 2023-12-19 | 1 | -29/+32 | |
| | | |||||
* | | Update `winit` to `0.29.4` | 2023-12-15 | 1 | -200/+141 | |
|/ | |||||
* | Separate `Compositor::new` from `Compositor::create_renderer` | 2023-12-02 | 1 | -2/+2 | |
| | |||||
* | Use `AtomicU64` for `window::Id` | 2023-12-02 | 1 | -18/+18 | |
| | |||||
* | Use actual floats for logical coordinates | 2023-11-30 | 1 | -4/+5 | |
| | |||||
* | Fix `clippy` lints | 2023-11-29 | 1 | -3/+4 | |
| | |||||
* | Merge branch 'master' into feat/multi-window-support | 2023-11-29 | 1 | -10/+19 | |
|\ | |||||
| * | Implement `Command::run` for executing a `Stream` to completion | 2023-11-29 | 1 | -0/+3 | |
| | | |||||
| * | Merge branch 'master' into text-editor | 2023-10-27 | 1 | -7/+7 | |
| |\ | |||||
| | * | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 1 | -5/+5 | |
| | | | |||||
| | * | Chore: Inline format args for ease of reading | 2023-09-19 | 1 | -2/+2 | |
| | | | | | | | | | | | | 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 more | 2023-09-18 | 1 | -1/+8 | |
| |/ | |||||
* | | Moved `exit_on_close_request` to window settings. This now controls whether ↵ | 2023-07-24 | 1 | -1/+3 | |
| | | | | | | | | each INDIVIDUAL window should close on CloseRequested events. | ||||
* | | refactored window storage; | 2023-07-21 | 1 | -63/+23 | |
| | | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt; | ||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-07-12 | 1 | -81/+127 | |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs | ||||
| * | Merge pull request #1927 from thunderstorm010/master | 2023-07-06 | 1 | -3/+13 | |
| |\ | | | | | | | Add command to retrieve window size | ||||
| | * | Use `Size` in both `Resize` and `FetchSize` window actions | 2023-07-06 | 1 | -4/+7 | |
| | | | |||||
| | * | Add FetchSize command - apply the changes discussed at #water-cooler | 2023-06-22 | 1 | -12/+3 | |
| | | | |||||
| | * | Add command to retrieve window size | 2023-06-21 | 1 | -0/+16 | |
| | | | |||||
| * | | Merge pull request #1845 from bungoboingo/feat/offscreen-rendering | 2023-06-27 | 1 | -8/+31 | |
| |\ \ | | |/ | |/| | Feat: Offscreen Rendering & Screenshots | ||||
| | * | Move `Screenshot` inside `window` module | 2023-06-27 | 1 | -2/+2 | |
| | | | |||||
| | * | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 2023-06-06 | 1 | -9/+32 | |
| | | | | | | | | | | | | window::screenshot command. | ||||
| * | | Extend cursor availability to the shell level | 2023-06-08 | 1 | -4/+4 | |
| |/ | |||||
| * | Replace `change_always_on_top` action with `change_level` | 2023-05-25 | 1 | -7/+2 | |
| | | |||||
| * | Update to winit 0.28 | 2023-05-11 | 1 | -1/+6 | |
| | | |||||
| * | Merge branch 'master' into advanced-text | 2023-04-17 | 1 | -7/+14 | |
| |\ | |||||
| | * | add action set icon while running (#1590) | 2023-04-12 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * set windows icon live action * change get icon to insto raw * remove mobile docs * format * fix format * add file methods to Icon * Rename action to `ChangeIcon` and tidy up `Icon` modules * Fix documentation of `icon::Error` * Remove unnecessary `\` in `icon` documentation * Remove `etc.` from `Icon` documentation --------- Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com> |