Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement `Widget::draw` for `image::Viewer` | 2021-10-28 | 2 | -5/+17 | |
| | |||||
* | 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 | 2 | -59/+30 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `PaneGrid` | 2021-10-25 | 8 | -50/+143 | |
| | | | | | | ... 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 | 4 | -148/+229 | |
| | |||||
* | Implement `Widget::draw` for `Image` | 2021-10-25 | 1 | -1/+4 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Checkbox` | 2021-10-21 | 1 | -0/+13 | |
| | |||||
* | Implement `Widget::draw` for `Checkbox` | 2021-10-21 | 3 | -23/+75 | |
| | |||||
* | Remove `Renderer` trait for `Checkbox` | 2021-10-21 | 2 | -42/+22 | |
| | |||||
* | 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 | 3 | -93/+75 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `TextInput` | 2021-10-20 | 1 | -0/+13 | |
| | |||||
* | Implement `Widget::draw` for `TextInput` | 2021-10-20 | 10 | -204/+338 | |
| | |||||
* | 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 | 2 | -40/+18 | |
| | |||||
* | 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 | 6 | -9/+106 | |
| | |||||
* | Implement `Widget::draw` for `Button` | 2021-10-18 | 1 | -7/+60 | |
| | |||||
* | Wire up styling to `Button` in `iced_native` | 2021-10-18 | 2 | -29/+12 | |
| | |||||
* | Draw styling in `Widget::draw` for `Container` | 2021-10-18 | 1 | -8/+36 | |
| | |||||
* | Wire up `container` styling to `iced_native` | 2021-10-18 | 8 | -55/+28 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 31 | -133/+140 | |
| | |||||
* | Draw scrollbar in `Widget::draw` for `Scrollable` | 2021-10-18 | 5 | -115/+119 | |
| | |||||
* | Introduce `fill_rectangle` to `Renderer` trait | 2021-10-18 | 2 | -1/+14 | |
| | |||||
* | Implement `Widget::draw` for `Scrollable` | 2021-10-14 | 4 | -51/+116 | |
| | | | | 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 | 5 | -10/+66 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 34 | -1141/+383 | |
| | |||||
* | Refactor alignment types into an `alignment` module | 2021-09-20 | 12 | -85/+106 | |
| | |||||
* | Introduce and use `CrossAlign` enum for `Column` and `Row` | 2021-09-20 | 10 | -46/+58 | |
| | |||||
* | Improve readability of Align::Fill branching | 2021-09-20 | 1 | -34/+22 | |
| | |||||
* | Calc fill cross and use for all children | 2021-09-20 | 1 | -29/+55 | |
| | |||||
* | Add Align::Fill variant | 2021-09-20 | 2 | -13/+55 | |
| | |||||
* | Merge pull request #1047 from iced-rs/revert-menus | 2021-09-15 | 2 | -3/+3 | |
|\ | | | | | Revert system menus support | ||||
| * | Revert system menus support | 2021-09-15 | 2 | -3/+3 | |
| | | | | | | | | | | | | 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`. | ||||
* | | Use `Option` to encode empty text case in hit test methods | 2021-09-15 | 3 | -29/+32 | |
|/ | |||||
* | Write missing docs and `Debug` implementations for `native` | 2021-09-13 | 4 | -2/+51 | |
| | |||||
* | Hide implementation details of `Command` in `iced_futures` | 2021-09-02 | 1 | -40/+25 | |
| |