summaryrefslogtreecommitdiffstats
path: root/glutin/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add setting to try OpenGL ES firstLibravatar Richard2022-01-191-4/+16
|
* Export `iced_winit::conversion` in `iced_glutin`Libravatar Richard2022-01-191-0/+1
|
* Split `quad::Pipeline` into `core` and `compatibility`Libravatar Richard2022-01-191-0/+1
|
* Invalidate widget tree from `Responsive` widgetLibravatar Héctor Ramón Jiménez2022-01-111-4/+10
| | | | ... by introducing a new `invalidate_widgets` method to `Shell`
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-031-2/+2
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Fix imports in `application` modulesLibravatar Héctor Ramón Jiménez2021-11-291-1/+1
|
* Allow `Application::run` to return on native platformsLibravatar Andreas Hofstadler2021-11-291-2/+5
|
* Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-181-5/+24
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-18/+6
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-151-19/+6
| | | | | | 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-022-0/+3
|
* Implement and expose `read` and `write` helpers for `clipboard`Libravatar Héctor Ramón Jiménez2021-09-021-1/+4
|
* Handle `clipboard::Action` in `iced_winit` shellLibravatar Héctor Ramón Jiménez2021-09-021-5/+18
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-2/+1
| | | | | | | | | 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!)
* Introduce explicit `id` field to `Settings`Libravatar Héctor Ramón Jiménez2021-08-111-0/+1
| | | | ... and use it to set the application id of the window on Unix systems, instead of relying on the title of the application.
* Fix glow and multiple windows usageLibravatar yamadapc2021-08-031-1/+11
| | | | The context might not be current at redraw
* Draft `conversion::menu_message` in `iced_winit`Libravatar Héctor Ramón Jiménez2021-07-131-0/+10
| | | | ... and wire it up to the runtime loop
* Store and synchronize `Menu` in `application::State`Libravatar Héctor Ramón Jiménez2021-07-121-5/+8
|
* Use `winit` and `glutin` forks in `iced-rs` orgLibravatar Richard2021-06-251-2/+8
|
* 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
|
* Add support for graceful exits in `Application`Libravatar Héctor Ramón Jiménez2021-03-301-2/+11
| | | | | - `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method
* Convert `ScaleFactorChanged` into `Resized` events in `iced_glutin`Libravatar Héctor Ramón Jiménez2021-03-241-1/+16
| | | | ... instead of just dropping them when calling `to_static`.
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-112-1/+2
|
* Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-101-2/+2
|
* Update `window_clipboard` to `0.2`Libravatar Héctor Ramón Jiménez2021-03-101-1/+1
|
* Update graphs in crate docsLibravatar Héctor Ramón Jiménez2020-11-261-0/+2
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-2/+0
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Batch event processing in `UserInterface::update`Libravatar Héctor Ramón Jiménez2020-11-121-18/+18
|
* Introduce `event::Status` to `Subscription`Libravatar Héctor Ramón Jiménez2020-11-121-2/+2
|
* Return `event::Status` in `UserInterface::update`Libravatar Héctor Ramón Jiménez2020-11-121-18/+21
|
* Write missing documentation in `iced_winit`Libravatar Héctor Ramón Jiménez2020-11-061-1/+2
|
* Remove a bit of code duplication in both shellsLibravatar Héctor Ramón Jiménez2020-11-051-62/+33
|
* Drop `UserInterface` manually after exit requestLibravatar Héctor Ramón Jiménez2020-11-051-0/+3
|
* Update `iced_glutin` with new event loop logicLibravatar Héctor Ramón Jiménez2020-11-051-163/+216
|
* Draft strategy to reuse `view` result in event loopLibravatar Héctor Ramón Jiménez2020-11-051-1/+2
|
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-082-6/+16
|
* Decouple `cursor_position` from `Cache`Libravatar Héctor Ramón Jiménez2020-06-231-4/+14
| | | | | | Instead, we ask explicitly for it in the different `update` and `draw` methods. This way, the runtime can derive the logical position of the cursor from the source of truth.
* Relayout when `Application::scale_factor` changesLibravatar Héctor Ramón Jiménez2020-06-231-0/+13
|
* Add `scale_factor` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-191-1/+17
|
* Add `background_color` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-121-0/+5
|
* Request a redraw only on relevant eventsLibravatar Héctor Ramón Jiménez2020-06-091-0/+4
|
* Write documentation for `iced_glutin`Libravatar Héctor Ramón Jiménez2020-05-282-5/+19
|
* Use built-in OpenGL multisampling in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-221-0/+1
|
* Introduce `Program` and `State`Libravatar Héctor Ramón Jiménez2020-05-212-402/+175
|
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-212-0/+444