summaryrefslogtreecommitdiffstats
path: root/winit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-181-5/+22
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-21/+6
|
* Update `winit` and `glutin`Libravatar Héctor Ramón Jiménez2021-10-121-1/+1
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-154-320/+2
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Implement `move_to` and `resize` commands for `window`Libravatar Héctor Ramón Jiménez2021-09-023-9/+44
|
* Hide implementation details of `Command` in `iced_futures`Libravatar Héctor Ramón Jiménez2021-09-021-2/+2
|
* Implement and expose `read` and `write` helpers for `clipboard`Libravatar Héctor Ramón Jiménez2021-09-021-0/+14
|
* Handle `clipboard::Action` in `iced_winit` shellLibravatar Héctor Ramón Jiménez2021-09-023-10/+37
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-022-6/+29
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-08-301-1/+1
| | | | Fixes #1005 and closes #1007.
* Merge pull request #1000 from PolyMeilex/wgpu-0.10Libravatar Héctor Ramón2021-08-251-13/+12
|\ | | | | wgpu: Update to 0.10
| * Rename `SwapChainError` to `SurfaceError` in `iced_graphics`Libravatar Héctor Ramón Jiménez2021-08-251-1/+1
| |
| * Remove `SwapChain` associated type from `Compositor`Libravatar Héctor Ramón Jiménez2021-08-201-11/+9
| |
| * wgpu: Update to 0.10Libravatar Poly2021-08-191-1/+2
| |
* | Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-08-191-1/+1
|/
* Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-08-162-7/+7
|
* Fix minor formatting nitpicksLibravatar Héctor Ramón Jiménez2021-08-121-0/+3
|
* Convert empty struct `PlatformSpecific` into empty typeLibravatar Héctor Ramón Jiménez2021-08-121-1/+1
|
* Add PlatformSpecific winit settings for macOSLibravatar Andrew Bentley2021-08-123-6/+32
|
* Introduce explicit `id` field to `Settings`Libravatar Héctor Ramón Jiménez2021-08-112-1/+13
| | | | ... and use it to set the application id of the window on Unix systems, instead of relying on the title of the application.
* Match winit unix targets for wayland app_idLibravatar Paul Delafosse2021-08-111-1/+7
|
* Add wayland app_idLibravatar Paul Delafosse2021-08-111-0/+6
| | | | see: https://github.com/wayland-project/wayland-protocols/blob/4ed0cafeefd9f81b974465ca495cbd9118508cdb/stable/xdg-shell/xdg-shell.xml#L640
* Merge pull request #667 from BillyDM/wgpu_outdatedframeLibravatar Héctor Ramón2021-08-051-11/+27
|\ | | | | Don't panic when wgpu swapchain frame is outdated
| * redo custom error for Compositor::draw()Libravatar Billy Messenger2021-07-221-6/+6
| |
| * add custom error for Compositor::draw()Libravatar Billy Messenger2021-07-221-15/+26
| |
| * Merge branch 'master' of https://github.com/hecrj/iced into wgpu_outdatedframeLibravatar Billy Messenger2021-07-2211-45/+619
| |\
| * | don't panic when swapchain frame is outdatedLibravatar Billy Messenger2020-12-161-10/+15
| | |
* | | Add window::Event::MovedLibravatar Cory Forsstrom2021-07-261-0/+6
| |/ |/|
* | Merge pull request #929 from TimUntersberger/winit-improvLibravatar Héctor Ramón2021-07-224-3/+84
|\ \ | | | | | | feat: add position to window settings
| * | Improve `window::Position` APILibravatar Héctor Ramón Jiménez2021-07-214-6/+82
| | |
| * | doneLibravatar TimUntersberger2021-06-251-2/+3
| | |
| * | wipLibravatar TimUntersberger2021-06-251-0/+4
| | |
* | | Update `winit` and `glutin` dependenciesLibravatar Héctor Ramón Jiménez2021-07-202-14/+7
| | | | | | | | | | | | ... and remove crates.io patch
* | | Write documentation for `menu` method in `Application`Libravatar Héctor Ramón Jiménez2021-07-191-1/+3
| | |
* | | Replace `content` with `title` in `menu` moduleLibravatar Héctor Ramón Jiménez2021-07-191-6/+4
| | |
* | | Implement `conversion::menu_message`Libravatar Héctor Ramón Jiménez2021-07-131-6/+44
| | |
* | | Force `Application::Message` to implement `Clone`Libravatar Héctor Ramón Jiménez2021-07-131-1/+4
| | | | | | | | | | | | | | | | | | A `Message` should represent an application event (e.g. user interactions, command results, subscription results...). Therefore, it should always consist of pure, cloneable data.
* | | Use `Menu::default` for root level menu in `conversion::menu`Libravatar Héctor Ramón Jiménez2021-07-131-6/+9
| | |
* | | Draft `conversion::menu_message` in `iced_winit`Libravatar Héctor Ramón Jiménez2021-07-132-0/+21
| | | | | | | | | | | | ... and wire it up to the runtime loop
* | | Generate unique identifiers for entries in `conversion::menu`Libravatar Héctor Ramón Jiménez2021-07-131-12/+30
| | |
* | | Store and synchronize `Menu` in `application::State`Libravatar Héctor Ramón Jiménez2021-07-123-4/+20
| | |
* | | Simplify `Hotkey` conversion in `conversion::menu`Libravatar Héctor Ramón Jiménez2021-07-121-6/+1
| | |
* | | Use `bitflags` for `keyboard::Modifiers`Libravatar Héctor Ramón Jiménez2021-07-121-10/+12
| | |
* | | Make `Menu` API a bit more functionalLibravatar Héctor Ramón Jiménez2021-07-121-4/+5
| | |
* | | Initial menu implementationLibravatar Richard2021-07-054-3/+233
| | |
* | | Update `winit` and `glutin` to latest `master`Libravatar Héctor Ramón Jiménez2021-06-301-1/+1
|/ /
* | Use `winit` and `glutin` forks in `iced-rs` orgLibravatar Richard2021-06-252-3/+13
| |
* | Use new enum variant and new winit repoLibravatar Richard2021-06-251-2/+3
| |
* | Added events for url handling and create exampleLibravatar Richard2021-06-251-0/+3
| |
* | Bump winit to 0.25Libravatar Imbris2021-06-231-1/+1
| |