Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix scrollbar clipping in `Scrollable` draw logic | 2021-10-28 | 1 | -25/+32 | |
| | |||||
* | Implement `Widget::draw` for `ProgressBar` | 2021-10-28 | 5 | -82/+63 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `image::Viewer` | 2021-10-28 | 1 | -0/+18 | |
| | |||||
* | Implement `Widget::draw` for `image::Viewer` | 2021-10-28 | 3 | -12/+20 | |
| | |||||
* | Implement `Overlay::mouse_interaction` for `overlay::Menu` | 2021-10-28 | 1 | -0/+25 | |
| | |||||
* | Fix overlay layering in `UserInterface::draw` | 2021-10-28 | 1 | -32/+52 | |
| | | | | ... by properly implementing the Painter's algorithm. | ||||
* | Implement `Widget::draw` for `overlay::Menu` | 2021-10-28 | 1 | -21/+71 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `PickList` | 2021-10-28 | 1 | -0/+16 | |
| | |||||
* | Implement `Widget::draw` for `PickList` | 2021-10-28 | 1 | -1/+61 | |
| | |||||
* | Wire up style to `PickList` and `overlay::Menu` | 2021-10-28 | 4 | -87/+30 | |
| | |||||
* | Avoid flushing empty layers in `iced_wgpu` and `iced_glow` | 2021-10-25 | 2 | -0/+9 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `PaneGrid` | 2021-10-25 | 11 | -65/+166 | |
| | | | | | | ... 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. | ||||
* | Implement `Widget::draw` for `PaneGrid` | 2021-10-25 | 6 | -168/+232 | |
| | |||||
* | Implement `Widget::draw` for `Image` | 2021-10-25 | 3 | -2/+17 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Checkbox` | 2021-10-21 | 1 | -0/+13 | |
| | |||||
* | Implement `Widget::draw` for `Checkbox` | 2021-10-21 | 4 | -23/+79 | |
| | |||||
* | Remove `Renderer` trait for `Checkbox` | 2021-10-21 | 8 | -82/+40 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Radio` | 2021-10-20 | 1 | -0/+13 | |
| | |||||
* | Implement `Widget::draw` for `Radio` | 2021-10-20 | 1 | -2/+61 | |
| | |||||
* | Wire up styling to `Radio` in `iced_native` | 2021-10-20 | 11 | -135/+97 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `TextInput` | 2021-10-20 | 1 | -0/+13 | |
| | |||||
* | Implement `Widget::draw` for `TextInput` | 2021-10-20 | 16 | -340/+382 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Slider` | 2021-10-20 | 1 | -0/+18 | |
| | |||||
* | Implement `Widget::draw` for `Slider` | 2021-10-20 | 1 | -14/+81 | |
| | |||||
* | Wire up styling to `Slider` in `iced_native` | 2021-10-20 | 9 | -97/+31 | |
| | |||||
* | Remove `dbg!` leftover in `Renderer::fill_text` | 2021-10-18 | 1 | -2/+0 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Button` | 2021-10-18 | 1 | -1/+18 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Scrollable` | 2021-10-18 | 1 | -0/+39 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Row` | 2021-10-18 | 1 | -0/+21 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Column` | 2021-10-18 | 1 | -0/+21 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Container` | 2021-10-18 | 1 | -0/+14 | |
| | |||||
* | Introduce `mouse_interaction` method to `Widget` trait | 2021-10-18 | 10 | -21/+152 | |
| | |||||
* | Implement `Widget::draw` for `Button` | 2021-10-18 | 1 | -7/+60 | |
| | |||||
* | Wire up styling to `Button` in `iced_native` | 2021-10-18 | 12 | -96/+55 | |
| | |||||
* | Implement `Widget::draw` for `custom_widget` example | 2021-10-18 | 2 | -22/+19 | |
| | |||||
* | Draw styling in `Widget::draw` for `Container` | 2021-10-18 | 1 | -8/+36 | |
| | |||||
* | Wire up `container` styling to `iced_native` | 2021-10-18 | 17 | -99/+65 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 39 | -192/+166 | |
| | |||||
* | Draw scrollbar in `Widget::draw` for `Scrollable` | 2021-10-18 | 11 | -199/+135 | |
| | |||||
* | Introduce `fill_rectangle` to `Renderer` trait | 2021-10-18 | 3 | -1/+24 | |
| | |||||
* | Implement `Widget::draw` for `Scrollable` | 2021-10-14 | 5 | -53/+125 | |
| | | | | Rendering the scroller is still WIP | ||||
* | Implement `Widget::draw` for `Container` | 2021-10-14 | 1 | -1/+7 | |
| | |||||
* | Implement `Widget::draw` for `Row` | 2021-10-14 | 1 | -8/+3 | |
| | |||||
* | Implement `Widget::draw` for `Column` | 2021-10-14 | 1 | -1/+3 | |
| | |||||
* | Implement `Widget::draw` for `Text` | 2021-10-14 | 11 | -31/+127 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 71 | -3166/+681 | |
| | |||||
* | Merge pull request #1068 from sundy-li/patch-1 | 2021-10-13 | 1 | -1/+1 | |
|\ | | | | | Update README.md of integration_opengl | ||||
| * | Update README.md | 2021-10-04 | 1 | -1/+1 | |
| | | |||||
* | | Update `winit` and `glutin` | 2021-10-12 | 2 | -2/+2 | |
|/ | |||||
* | Merge pull request #1067 from akavel/deorient | 2021-10-01 | 2 | -5/+97 | |
|\ | | | | | Honor Exif orientation in `iced_wgpu::Image` |