summaryrefslogtreecommitdiffstats
path: root/winit/src/application.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Initialize runtime values in `application::run`Libravatar Héctor Ramón Jiménez2020-11-051-45/+47
|
* Use static noop `Waker` in `application::run`Libravatar Héctor Ramón Jiménez2020-11-051-4/+7
|
* Draft strategy to reuse `view` result in event loopLibravatar Héctor Ramón Jiménez2020-11-051-151/+276
|
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-6/+9
|
* Fix cursor position after a `CursorLeft` eventLibravatar Héctor Ramón Jiménez2020-08-251-0/+5
|
* Handle `ScaleFactorChanged` in `iced_winit`Libravatar Héctor Ramón Jiménez2020-07-161-0/+12
|
* Decouple `cursor_position` from `Cache`Libravatar Héctor Ramón Jiménez2020-06-231-4/+18
| | | | | | 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-3/+37
|
* Add `background_color` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-121-1/+17
|
* 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-281-1/+3
|
* Write documentation for new `iced_winit` APILibravatar Héctor Ramón Jiménez2020-05-281-0/+7
|
* Introduce `Program` and `State`Libravatar Héctor Ramón Jiménez2020-05-211-323/+212
|
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-211-27/+5
|
* Refactor `Viewport` and `Compositor`Libravatar Héctor Ramón Jiménez2020-05-201-36/+29
|
* Rename `window::Backend` to `Compositor`Libravatar Héctor Ramón Jiménez2020-05-191-12/+20
|
* Draft first working version of `iced_glow` :tada:Libravatar Héctor Ramón Jiménez2020-05-191-2/+7
|
* Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2020-04-301-8/+8
|
* Remove `OutOfBounds` variant from `MouseCursor`Libravatar Héctor Ramón Jiménez2020-04-291-1/+1
|
* Write documentation for the `debug` featureLibravatar Héctor Ramón Jiménez2020-04-021-0/+3
|
* Improve docs for `Sandbox` and `Application`Libravatar Héctor Ramón Jiménez2020-04-021-1/+1
|
* Clarify return policy of `Application::run`Libravatar Héctor Ramón Jiménez2020-04-021-2/+2
|
* Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-5/+16
|
* Remove redundant closure in `Application::run`Libravatar Héctor Ramón Jiménez2020-03-291-1/+1
|
* Convert `WindowEvent` from a reference in `iced_winit`Libravatar Héctor Ramón Jiménez2020-03-271-1/+1
|
* Update `winit` to `0.22`Libravatar Héctor Ramón Jiménez2020-03-091-6/+3
|
* Quit application when `Cmd+Q` is pressed on macOSLibravatar Héctor Ramón Jiménez2020-02-191-0/+13
|
* Enter executor context only on `Recipe` creationLibravatar Héctor Ramón Jiménez2020-02-161-3/+2
|
* Wrap application initialization with `Runtime::enter`Libravatar Héctor Ramón Jiménez2020-02-161-2/+2
|
* Remove event conversion from `iced_winit::Application`Libravatar Héctor Ramón Jiménez2020-02-091-113/+32
|
* Remove `scale_factor` from `iced_wgpu::Viewport`Libravatar Héctor Ramón Jiménez2020-02-091-2/+1
|
* Allow `iced_wgpu` to render to any `TextureView`Libravatar Héctor Ramón Jiménez2020-02-091-16/+23
|
* Increase precision of `scale_factor` in `Windowed`Libravatar Héctor Ramón Jiménez2020-02-071-2/+2
|
* Implement an opaque `Size` typeLibravatar Héctor Ramón Jiménez2020-02-071-32/+23
| | | | It immutably ties physical and logical sizes to a specific scale factor.
* Keep `is_private_use_character` filter for nowLibravatar Héctor Ramón Jiménez2020-02-071-1/+0
|
* Update `winit` to `0.20`Libravatar Héctor Ramón Jiménez2020-02-071-20/+35
|
* Add `Application::Executor` associated typeLibravatar Héctor Ramón Jiménez2020-01-201-7/+11
|
* Create `iced_futures` and wire everything upLibravatar Héctor Ramón Jiménez2020-01-191-39/+18
|
* Merge pull request #162 from hecrj/feature/window-file-eventsLibravatar Héctor Ramón2020-01-161-13/+25
|\ | | | | Window file events
| * Produce new window file events in `iced_winit`Libravatar Héctor Ramón Jiménez2020-01-161-10/+21
| |
| * Add file events to `iced_native::window::Event`Libravatar Héctor Ramón Jiménez2020-01-161-3/+4
| |
* | Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-161-3/+3
| | | | | | | | | | Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side.
* | Add `Application::mode` to `iced_winit`Libravatar Héctor Ramón Jiménez2020-01-161-1/+30
|/
* Make layout bounds explicit in `UserInterface`Libravatar Héctor Ramón Jiménez2020-01-101-35/+39
|
* Move `Debugger` and `Windowed` to a better locationLibravatar Héctor Ramón Jiménez2020-01-101-4/+4
| | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`.
* Produce `window::Event::Resized` in `iced_winit`Libravatar Héctor Ramón Jiménez2020-01-101-4/+7
|
* Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-6/+2
|
* Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-011-3/+5
|
* Draft basic styling for `Container`Libravatar Héctor Ramón Jiménez2019-12-311-2/+2
|