summaryrefslogtreecommitdiffstats
path: root/winit/src/conversion.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | |
| | * add action set icon while running (#1590)Libravatar Night_Hunter2023-04-121-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
| | * Show `NotAllowed` as mouse icon when hovering a disabled `TextInput`Libravatar Héctor Ramón Jiménez2023-04-121-0/+1
| | |
| * | Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-5/+6
| |/
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-02-201-6/+6
|\|
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-181-6/+6
| |
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-01-181-6/+6
|\| | | | | | | | | | | | | | | # Conflicts: # examples/events/src/main.rs # glutin/src/application.rs # native/src/window.rs # winit/src/window.rs
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-141-6/+6
| |
* | add `window::Id` to `Event` and `Action`Libravatar Richard2023-01-091-18/+28
|/
* Create conversion function for `user_attention` in `iced_winit`Libravatar Héctor Ramón Jiménez2023-01-021-0/+16
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-071-6/+6
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-6/+6
|
* Implement `SetMode` and `FetchMode` window actionsLibravatar Héctor Ramón Jiménez2022-08-181-0/+33
|
* Remove `window::Mode` and introduce `Settings::visible`Libravatar Héctor Ramón Jiménez2022-08-181-24/+1
| | | | Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
* Address Clippy lintsLibravatar Poly2022-07-091-4/+4
|
* Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-021-6/+6
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-6/+6
|