Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor and simplify `input_method` API | 2025-02-02 | 1 | -14/+22 | |
| | |||||
* | Copy `winit` docs for `input_method::Event` | 2025-02-02 | 1 | -1/+4 | |
| | |||||
* | Draft `input_method` support | 2025-02-02 | 1 | -0/+11 | |
| | |||||
* | Fix broken doc link in `winit::conversion` | 2025-01-16 | 1 | -3/+1 | |
| | |||||
* | feat: add a window drag resize task | 2025-01-16 | 1 | -1/+27 | |
| | |||||
* | Merge pull request #2627 from bbb651/more-window-settings | 2025-01-06 | 1 | -0/+6 | |
|\ | | | | | Add `maximized` and `fullscreen` to `window::Settings` | ||||
| * | Add `window::Settings::fullscreen` | 2024-10-04 | 1 | -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` | 2024-10-04 | 1 | -0/+1 | |
| | | | | | | | | Corresponds to `winit::window::WindowAttributes::with_maximized` | ||||
* | | Prevent unintended keyboard input during focus. | 2024-10-24 | 1 | -0/+2 | |
|/ | |||||
* | Add `modified_key` to `keyboard::Event::KeyReleased` | 2024-10-02 | 1 | -0/+1 | |
| | |||||
* | added physical_key to KeyReleased event | 2024-09-26 | 1 | -0/+1 | |
| | |||||
* | Bump version to `0.13.0` :tada: | 2024-09-18 | 1 | -1/+1 | |
| | |||||
* | Merge pull request #2551 from airstrike/mouse-interactions | 2024-09-13 | 1 | -0/+11 | |
|\ | | | | | Expose additional mouse interaction cursors | ||||
| * | Add `Copy` and `Help` variants to `mouse::Interaction` | 2024-09-13 | 1 | -0/+2 | |
| | | |||||
| * | Rename `ResizingDiagonal*` to `ResizingDiagonally*` | 2024-09-13 | 1 | -2/+2 | |
| | | |||||
| * | Expose additional mouse interaction cursors | 2024-08-16 | 1 | -0/+9 | |
| | | |||||
* | | Add `modified_key` to `keyboard::Event` | 2024-09-13 | 1 | -3/+7 | |
| | | |||||
* | | Add `physical_key` to `keyboard::Event` | 2024-09-13 | 1 | -2/+258 | |
| | | | | | | | | Co-authored-by: Exidex <16986685+Exidex@users.noreply.github.com> | ||||
* | | 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 | |
| | | |||||
* | | add option for undecorated_shadow on windows (#2285) | 2024-09-05 | 1 | -0/+4 | |
|/ | | | | | * add option for undecorated_shadow on windows * formated | ||||
* | Add `resize_events` subscription to `window` module | 2024-07-13 | 1 | -3/+3 | |
| | |||||
* | Remove `parent` from `PlatformSpecific` window settings | 2024-06-14 | 1 | -5/+1 | |
| | |||||
* | Introduce `window::Id` to `Event` subscriptions | 2024-06-10 | 1 | -21/+14 | |
| | | | | And remove `window::Id` from `Event` altogether. | ||||
* | Add `SpecificWith` variant to `window::Position` | 2024-05-10 | 1 | -0/+29 | |
| | |||||
* | Update `winit` to `0.30` | 2024-05-07 | 1 | -31/+27 | |
| | |||||
* | Introduce `opaque` widget helper | 2024-04-25 | 1 | -1/+3 | |
| | |||||
* | Use inclusive range for `is_private_use` function | 2024-02-26 | 1 | -1/+1 | |
| | |||||
* | Ignore `text` in `KeyPressed` with private use chars | 2024-02-26 | 1 | -1/+6 | |
| | | | | Apparently, macOS likes to use these for simple keys. | ||||
* | Decouple `Key` from modifiers and apply them to `text` | 2024-02-20 | 1 | -11/+34 | |
| | |||||
* | Point doc links to `0.12` branch | 2024-02-15 | 1 | -5/+5 | |
| | |||||
* | Introduce `with_transformation` to `Renderer` trait | 2024-02-02 | 1 | -0/+1 | |
| | |||||
* | feat(window): adds skip_taskbar for windows | 2024-01-21 | 1 | -0/+3 | |
| | |||||
* | Use `SmolStr` for `text` field in `KeyPressed` event | 2024-01-16 | 1 | -3/+1 | |
| | |||||
* | Refactor `KeyCode` into `Key` and `Location` | 2024-01-16 | 1 | -125/+344 | |
| | |||||
* | Fix `key_code` conversion for character keys | 2023-12-15 | 1 | -26/+26 | |
| | |||||
* | Update `winit` to `0.29.4` | 2023-12-15 | 1 | -211/+141 | |
| | |||||
* | Use actual floats for logical coordinates | 2023-11-30 | 1 | -16/+23 | |
| | |||||
* | Fix broken intra-doc links | 2023-11-29 | 1 | -1/+1 | |
| | |||||
* | Merge branch 'master' into feat/multi-window-support | 2023-11-29 | 1 | -14/+123 | |
|\ | |||||
| * | Fix majority of unresolved documentation links | 2023-09-09 | 1 | -1/+1 | |
| | | |||||
| * | Bump versions :tada: | 2023-07-28 | 1 | -13/+12 | |
| | | |||||
* | | refactored window storage; | 2023-07-21 | 1 | -5/+4 | |
| | | | | | | | | | | new helper window events (Destroyed, Created); clippy + fmt; | ||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-07-12 | 1 | -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.28 | 2023-05-25 | 1 | -0/+13 | |
| |\ | | | | | | | Update to winit 0.28 | ||||
| | * | Introduce `window::Level` enum | 2023-05-25 | 1 | -0/+13 | |
| | | | | | | | | | | | | ... and add `level` field to `window::Settings` | ||||
| * | | Merge pull request #1797 from bbb651/master | 2023-05-23 | 1 | -3/+1 | |
| |\ \ | | |/ | |/| | Make mouse::Button::Other take u16 instead of u8 | ||||
| | * | Make mouse::Button::Other take u16 instead of u8 | 2023-05-23 | 1 | -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-text | 2023-04-17 | 1 | -6/+16 | |
| |\| | |||||
| | * | Bump versions :tada: | 2023-04-13 | 1 | -6/+6 | |
| | | |