Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 1 | -10/+44 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Fix overflow of graphics primitives in overlays | 2021-11-21 | 1 | -1/+1 | |
| | | | | ... by using `overlay_bounds` instead of `viewport` as clip bounds for overlay layer in `UserInterface::draw` | ||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 1 | -2/+2 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Remove `widget` module re-exports in `iced_native` | 2021-10-31 | 1 | -3/+3 | |
| | |||||
* | Fix overlay layering in `UserInterface::draw` | 2021-10-28 | 1 | -32/+52 | |
| | | | | ... by properly implementing the Painter's algorithm. | ||||
* | Implement `Widget::mouse_interaction` for `PaneGrid` | 2021-10-25 | 1 | -13/+9 | |
| | | | | | | ... and fix rendering of drag interaction in `PaneGrid` by introducing an explicit `with_translation` method to `Renderer` and simplifying the `with_layer` and `Clip` primitive. | ||||
* | Introduce `mouse_interaction` method to `Widget` trait | 2021-10-18 | 1 | -3/+22 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 1 | -3/+4 | |
| | |||||
* | Implement `Widget::draw` for `Scrollable` | 2021-10-14 | 1 | -9/+13 | |
| | | | | Rendering the scroller is still WIP | ||||
* | Implement `Widget::draw` for `Text` | 2021-10-14 | 1 | -0/+3 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 1 | -21/+13 | |
| | |||||
* | docs: update all 0.2 github links to 0.3 | 2021-06-14 | 1 | -1/+1 | |
| | |||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -7/+9 | |
| | |||||
* | Update example links to point to `0.2` branch | 2020-11-26 | 1 | -1/+1 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -25/+4 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Batch event processing in `UserInterface::update` | 2020-11-12 | 1 | -43/+52 | |
| | |||||
* | Return `event::Status` in `UserInterface::update` | 2020-11-12 | 1 | -46/+51 | |
| | |||||
* | Make `Overlay::on_event` return `event::Status` | 2020-11-12 | 1 | -1/+1 | |
| | |||||
* | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 1 | -1/+1 | |
| | |||||
* | Relayout `UserInterface` on resize in `iced_winit` | 2020-11-05 | 1 | -0/+17 | |
| | |||||
* | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 1 | -1/+7 | |
| | | | | | This should eventually allow us to only generate primitives that are visible. | ||||
* | Rename `overlay::Content` trait to `Overlay` | 2020-07-10 | 1 | -2/+2 | |
| | | | | The `Overlay` struct is now `overlay::Element`. | ||||
* | Finish wiring overlays to `UserInterface` | 2020-07-08 | 1 | -81/+113 | |
| | |||||
* | Draft `Widget::overlay` idempotency | 2020-07-08 | 1 | -61/+67 | |
| | |||||
* | Draft `ComboBox` and `Menu` layer | 2020-07-08 | 1 | -8/+8 | |
| | |||||
* | Introduce `Layer` trait | 2020-07-08 | 1 | -34/+115 | |
| | |||||
* | Decouple `cursor_position` from `Cache` | 2020-06-23 | 1 | -19/+27 | |
| | | | | | | 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. | ||||
* | Draft new `iced_graphics` crate :tada: | 2020-05-19 | 1 | -1/+3 | |
| | |||||
* | Remove inconsistent `input` module in `iced_native` | 2020-04-30 | 1 | -3/+1 | |
| | |||||
* | Revert "Merge pull request #289 from hecrj/fix/cursor-events" | 2020-04-17 | 1 | -9/+2 | |
| | | | | | | | | `winit` seems to produce `CursorEntered` and `CursorLeft` events after wheel scrolling for no apparent reason (?). This causes annoying flickering when hovering some widgets on a scrollable. I should investigate this further. We are rolling back the fix for the time being. | ||||
* | Make cursor unavailable on leave in `iced_winit` | 2020-04-12 | 1 | -2/+9 | |
| | | | | | | | For now, we just set the cursor position to some negative coordinates. This is a temporary hack until we are able to encode cursor availability. Layers and/or multi-window support will make this apparent. | ||||
* | Add example to `iced_native::UserInterface` | 2020-04-02 | 1 | -0/+7 | |
| | |||||
* | Fix documentation examples of `UserInterface` | 2020-02-09 | 1 | -2/+2 | |
| | |||||
* | Remove event conversion from `iced_winit::Application` | 2020-02-09 | 1 | -2/+2 | |
| | |||||
* | Take `IntoIterator` instead of `Iterator` | 2020-01-16 | 1 | -1/+1 | |
| | |||||
* | Make layout bounds explicit in `UserInterface` | 2020-01-10 | 1 | -8/+22 | |
| | |||||
* | Add `Renderer::Defaults` and style inheritance | 2019-12-30 | 1 | -54/+4 | |
| | |||||
* | Allow clipboard access in `Widget::on_event` | 2019-12-18 | 1 | -3/+7 | |
| | |||||
* | Uncomment missing debug implementations rule | 2019-11-22 | 1 | -0/+1 | |
| | |||||
* | Merge branch 'master' into improvement/docs | 2019-11-22 | 1 | -5/+1 | |
|\ | |||||
| * | Remove `dbg!` in `UserInterface` | 2019-11-20 | 1 | -5/+1 | |
| | | |||||
* | | Move widgets from `core` to `native` and `web` | 2019-11-21 | 1 | -6/+5 | |
|/ | | | | Also made fields private and improved `Renderer` traits. | ||||
* | Split text measurements cache from rendering cache | 2019-11-11 | 1 | -2/+2 | |
| | | | | | This speeds up layouting in the most common scenario considerably! :tada: | ||||
* | Draft custom layout engine based on `druid` | 2019-11-11 | 1 | -14/+15 | |
| | |||||
* | Draft new layout API | 2019-11-10 | 1 | -19/+14 | |
| | |||||
* | Provide `Renderer` to `Widget::on_event` | 2019-10-29 | 1 | -2/+4 | |
| | | | | | This allows us to implement configurable event processing that adapts to different rendering strategies. | ||||
* | Draft `Scrollable` widget (no clipping yet!) | 2019-10-25 | 1 | -1/+1 | |
| | |||||
* | Make `Renderer` immutable in `UserInterface::build` | 2019-10-11 | 1 | -1/+1 | |
| | |||||
* | Rename `Renderer::Primitive` to `Renderer::Output` | 2019-10-11 | 1 | -7/+7 | |
| | |||||
* | Add `Renderer` and `Primitive` concepts | 2019-10-05 | 1 | -9/+53 | |
| |