summaryrefslogtreecommitdiffstats
path: root/winit/src/multi_window.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2312 from iced-rs/theming-reloadedLibravatar Héctor Ramón2024-03-081-10/+11
|\ | | | | Theming reloaded
| * Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-071-9/+9
| |
| * Simplify theming for `Application`Libravatar Héctor Ramón Jiménez2024-03-061-10/+11
| |
* | Fix `block_on` in `iced_wgpu` hanging Wasm buildsLibravatar Héctor Ramón Jiménez2024-03-071-2/+5
|/
* Use `crate::core::Point` instead of prefixingLibravatar Héctor Ramón Jiménez2024-02-221-2/+2
|
* Rename `fetch_location` to `fetch_position`Libravatar Héctor Ramón Jiménez2024-02-221-14/+15
|
* Add `fetch_location` command to `window` moduleLibravatar Night_Hunter2024-02-221-0/+18
|
* Rename `show_window_menu` to `show_system_menu`Libravatar Héctor Ramón Jiménez2024-02-131-1/+1
|
* Add `show_window_menu` actionLibravatar Ian Douglas Scott2024-02-131-0/+15
| | | | | | | | 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-131-2/+30
| | | | trigger AboutToWait for Moved as well.
* Introduce `Kind` in `core::clipboard`Libravatar Héctor Ramón Jiménez2024-02-131-16/+4
|
* Add support for primary clipboardLibravatar Mattias Eriksson2024-02-131-0/+12
|
* Rename `fetch_native_handle` to `run_with_handle` in `window`Libravatar Héctor Ramón Jiménez2024-02-071-11/+11
|
* Re-implement against latest iced master. Rename FetchNativeHandle.Libravatar dtzxporter2024-02-071-0/+12
|
* Rename `PlateformSpecific` variant in `Action` to `Custom`Libravatar Héctor Ramón Jiménez2024-02-031-0/+3
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-16/+11
|
* Make `compatible_window` mandatory in `Compositor`Libravatar Héctor Ramón Jiménez2024-01-181-2/+1
|
* Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez2024-01-181-5/+9
| | | | And update `glyphon` and `window_clipboard`
* Fine-tune event loop of `multi-window` applicationsLibravatar Héctor Ramón Jiménez2024-01-171-96/+123
|
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-1/+1
|
* Merge branch 'master' into update-winitLibravatar Héctor Ramón Jiménez2024-01-161-0/+14
|\
| * Implemented fetch_maximized and fetch_minimizedLibravatar Calastrophe2024-01-091-0/+14
| |
* | Fix request redraw event handling for multi-window appsLibravatar Héctor Ramón Jiménez2023-12-191-71/+73
| |
* | Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-151-298/+229
|/
* Refactor `Windows` abstraction into `WindowManager`Libravatar Héctor Ramón Jiménez2023-12-021-308/+312
|
* Separate `Compositor::new` from `Compositor::create_renderer`Libravatar Héctor Ramón Jiménez2023-12-021-2/+2
|
* Use `AtomicU64` for `window::Id`Libravatar Héctor Ramón Jiménez2023-12-021-22/+22
|
* Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-301-44/+45
|
* 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-291-19/+4
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-11-291-10/+14
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-291-12/+13
|
* Moved `exit_on_close_request` to window settings. This now controls whether ↵Libravatar Bingus2023-07-241-58/+90
| | | | each INDIVIDUAL window should close on CloseRequested events.
* refactored window storage;Libravatar Bingus2023-07-211-554/+524
| | | | | new helper window events (Destroyed, Created); clippy + fmt;
* Added per-window theme support.Libravatar Bingus2023-03-151-1/+1
|
* Added simpler MW exampleLibravatar Bingus2023-03-141-1/+1
|
* Code cleanup, clearer comments + removed some unnecessary dupe;Libravatar Bingus2023-03-131-80/+46
| | | | | Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping;
* Removed glutin MW support and reverted glutin changes back to Iced master ↵Libravatar bungoboingo2023-02-281-14/+11
| | | | since it's being axed as we speak.
* Fixed state syncing issue with MW.Libravatar Bingus2023-02-221-20/+23
|
* Cargo fixLibravatar Bingus2023-02-201-26/+30
|
* Fixed widget operationsLibravatar Bingus2023-02-171-2/+2
|
* Iced master merge (again)Libravatar Bingus2023-02-171-5/+16
|
* Fixed widget animations implementationLibravatar Bingus2023-02-171-26/+84
|
* Merged in iced masterLibravatar Bingus2023-02-151-1/+1
|
* Widget operations for multi-window.Libravatar Bingus2023-02-151-55/+62
|
* Redraw request events for multiwindow.Libravatar Bingus2023-02-151-3/+8
|
* Added window::Id to multi_window application's scale_factorLibravatar Bingus2023-01-181-1/+1
|
* Added tracing to multi_window applicationsLibravatar Bingus2023-01-131-12/+49
|