summaryrefslogtreecommitdiffstats
path: root/winit/src/conversion.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor and simplify `input_method` APILibravatar Héctor Ramón Jiménez2025-02-021-14/+22
|
* Copy `winit` docs for `input_method::Event`Libravatar Héctor Ramón Jiménez2025-02-021-1/+4
|
* Draft `input_method` supportLibravatar KENZ2025-02-021-0/+11
|
* Fix broken doc link in `winit::conversion`Libravatar Héctor Ramón Jiménez2025-01-161-3/+1
|
* feat: add a window drag resize taskLibravatar tsuza2025-01-161-1/+27
|
* Merge pull request #2627 from bbb651/more-window-settingsLibravatar Héctor2025-01-061-0/+6
|\ | | | | Add `maximized` and `fullscreen` to `window::Settings`
| * Add `window::Settings::fullscreen`Libravatar bbb6512024-10-041-0/+5
| | | | | | | | | | | | | | | | Corresponds to `winit::window::WindowAttributes::with_fullscreen`. Currently only allows to set `Fullscreen::Borderless(None)` meaning borderless on the current monitor, exclusive fullscreen does not make sense for a GUI and iced does not expose monitors yet.
| * Add `window::Settings::maximized`Libravatar bbb6512024-10-041-0/+1
| | | | | | | | Corresponds to `winit::window::WindowAttributes::with_maximized`
* | Prevent unintended keyboard input during focus.Libravatar kosayoda2024-10-241-0/+2
|/
* Add `modified_key` to `keyboard::Event::KeyReleased`Libravatar Héctor Ramón Jiménez2024-10-021-0/+1
|
* added physical_key to KeyReleased eventLibravatar ibaryshnikov2024-09-261-0/+1
|
* Bump version to `0.13.0` :tada:Libravatar Héctor Ramón Jiménez2024-09-181-1/+1
|
* Merge pull request #2551 from airstrike/mouse-interactionsLibravatar Héctor Ramón2024-09-131-0/+11
|\ | | | | Expose additional mouse interaction cursors
| * Add `Copy` and `Help` variants to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2024-09-131-0/+2
| |
| * Rename `ResizingDiagonal*` to `ResizingDiagonally*`Libravatar Héctor Ramón Jiménez2024-09-131-2/+2
| |
| * Expose additional mouse interaction cursorsLibravatar Andy Terra2024-08-161-0/+9
| |
* | Add `modified_key` to `keyboard::Event`Libravatar Héctor Ramón Jiménez2024-09-131-3/+7
| |
* | Add `physical_key` to `keyboard::Event`Libravatar Héctor Ramón Jiménez2024-09-131-2/+258
| | | | | | | | Co-authored-by: Exidex <16986685+Exidex@users.noreply.github.com>
* | Add `override_redirect` for X11 windowsLibravatar Nadji Abidi2024-09-111-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 WindowsLibravatar Héctor Ramón Jiménez2024-09-051-1/+1
| |
* | add option for undecorated_shadow on windows (#2285)Libravatar Night_Hunter2024-09-051-0/+4
|/ | | | | * add option for undecorated_shadow on windows * formated
* Add `resize_events` subscription to `window` moduleLibravatar Héctor Ramón Jiménez2024-07-131-3/+3
|
* Remove `parent` from `PlatformSpecific` window settingsLibravatar Héctor Ramón Jiménez2024-06-141-5/+1
|
* Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez2024-06-101-21/+14
| | | | And remove `window::Id` from `Event` altogether.
* Add `SpecificWith` variant to `window::Position`Libravatar Héctor Ramón Jiménez2024-05-101-0/+29
|
* Update `winit` to `0.30`Libravatar Héctor Ramón Jiménez2024-05-071-31/+27
|
* Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-251-1/+3
|
* 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.
* Decouple `Key` from modifiers and apply them to `text`Libravatar Ashley Wulber2024-02-201-11/+34
|
* Point doc links to `0.12` branchLibravatar Héctor Ramón Jiménez2024-02-151-5/+5
|
* Introduce `with_transformation` to `Renderer` traitLibravatar Héctor Ramón Jiménez2024-02-021-0/+1
|
* feat(window): adds skip_taskbar for windowsLibravatar MrAntix2024-01-211-0/+3
|
* 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-161-125/+344
|
* 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-151-211/+141
|
* Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-301-16/+23
|
* Fix broken intra-doc linksLibravatar Héctor Ramón Jiménez2023-11-291-1/+1
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-291-14/+123
|\
| * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-091-1/+1
| |
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-281-13/+12
| |
* | refactored window storage;Libravatar Bingus2023-07-211-5/+4
| | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt;
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-07-121-14/+36
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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 #1738 from nicoburns/update-winit-0.28Libravatar Héctor Ramón2023-05-251-0/+13
| |\ | | | | | | Update to winit 0.28
| | * Introduce `window::Level` enumLibravatar Héctor Ramón Jiménez2023-05-251-0/+13
| | | | | | | | | | | | ... and add `level` field to `window::Settings`
| * | Merge pull request #1797 from bbb651/masterLibravatar Héctor Ramón2023-05-231-3/+1
| |\ \ | | |/ | |/| Make mouse::Button::Other take u16 instead of u8
| | * Make mouse::Button::Other take u16 instead of u8Libravatar bbb6512023-05-231-3/+1
| | | | | | | | | | | | | | | | | | | | | On wayland keys correspond to <input-event-codes.h>, and they are past the limit of u8, causing the back and forward buttons to be 20 and 19 which definitely isn't right (they should all be around 0x110..=0x117).
| * | Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-171-6/+16
| |\|
| | * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-04-131-6/+6
| | |