Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Draft `iced_test` crate and test `todos` example | 2024-12-10 | 18 | -62/+639 | |
| | |||||
* | Merge pull request #2675 from chrismanning/tooltip-hover-render | 2024-12-06 | 1 | -0/+3 | |
|\ | | | | | Request redraw in tooltip widget when cursor is hovering | ||||
| * | Request redraw in `tooltip` when `State` changes | 2024-12-06 | 1 | -1/+2 | |
| | | |||||
| * | Request redraw in tooltip widget when cursor is hovering | 2024-11-24 | 1 | -0/+2 | |
| | | |||||
* | | Merge pull request #2681 from xosxos/patch-1 | 2024-12-03 | 1 | -6/+14 | |
|\ \ | | | | | | | fix: add an initial state to the `system_information` example | ||||
| * | | Avoid using `Message` to drive logic in `system_information` example | 2024-12-03 | 1 | -7/+11 | |
| | | | |||||
| * | | fix: add run_with(Example::new) | 2024-12-03 | 1 | -1/+5 | |
|/ / | | | | | The example was not running the `update` method and was stuck on the loading screen (at least on macos). This fixes is on my system. | ||||
* | | Merge pull request #2683 from T-256/master | 2024-12-02 | 1 | -3/+2 | |
|\ \ | | | | | | | Call `OnPress::get` only when button is pressed | ||||
| * | | Fix `widget::button` format | 2024-12-02 | 1 | -2/+1 | |
| | | | |||||
| * | | Call `OnPress::get` only when button is pressed | 2024-12-02 | 1 | -2/+2 | |
|/ / | |||||
* | | Run `cargo fmt` | 2024-12-02 | 4 | -12/+5 | |
| | | |||||
* | | Fix new `clippy` lints | 2024-12-02 | 48 | -122/+123 | |
|/ | |||||
* | Merge pull request #2673 from iced-rs/feature/pin-widget | 2024-11-24 | 4 | -2/+329 | |
|\ | | | | | `pin` widget | ||||
| * | Make `pin` widget `Fill` parent by default | 2024-11-22 | 3 | -10/+6 | |
| | | |||||
| * | Implement `pin` widget | 2024-11-22 | 4 | -2/+333 | |
|/ | |||||
* | Use `Task::run` in `download_progress` example | 2024-11-22 | 2 | -43/+44 | |
| | |||||
* | Merge pull request #2672 from ids1024/screenshot | 2024-11-22 | 5 | -32/+22 | |
|\ | | | | | Remove `surface` argument of `Compositor::screenshot` | ||||
| * | Remove `surface` argument of `Compositor::screenshot` | 2024-11-21 | 5 | -32/+22 | |
| | | | | | | | | | | | | | | | | This argument was completely ignored by the wgpu renderer, and used only for the `clip_mask` by the `tiny_skia` renderer. I believe creating a new clip mask is correct. This way it's possible to render offscreen without needing a surface. | ||||
* | | Honor clones of `task::Handle` with `abort_on_drop` | 2024-11-22 | 1 | -21/+42 | |
|/ | |||||
* | Merge pull request #2668 from edwloef/master | 2024-11-13 | 1 | -2/+2 | |
|\ | | | | | Fix docs of `Scrollable::with_direction` and `Scrollable::direction` | ||||
| * | Fix docs of `Scrollable::with_direction` and `Scrollable::direction` | 2024-11-11 | 1 | -2/+2 | |
| | | |||||
* | | Merge pull request #2662 from iced-rs/reactive-rendering | 2024-11-13 | 60 | -1771/+2180 | |
|\ \ | |/ |/| | Reactive Rendering | ||||
| * | Fix cross-axis compression in `layout::flex` | 2024-11-08 | 1 | -1/+52 | |
| | | |||||
| * | Fix event capturing order in `pane_grid` | 2024-11-06 | 1 | -38/+41 | |
| | | |||||
| * | Rename `Overlay::on_event` to `update` | 2024-11-06 | 14 | -26/+25 | |
| | | |||||
| * | Fix `pick_list` not requesting a redraw when open | 2024-11-05 | 1 | -8/+15 | |
| | | |||||
| * | Fix `text_editor` capturing mouse release events | 2024-11-05 | 1 | -2/+4 | |
| | | |||||
| * | Implement `reactive-rendering` for `text_editor` | 2024-11-05 | 1 | -147/+170 | |
| | | |||||
| * | Fix `hover` widget not redrawing when hovered | 2024-11-05 | 1 | -1/+9 | |
| | | |||||
| * | Unify `shader::Program` API with `canvas::Program` | 2024-11-05 | 3 | -57/+34 | |
| | | |||||
| * | Replace `reactive-rendering` feature with `unconditional-rendering` | 2024-11-05 | 3 | -6/+8 | |
| | | |||||
| * | Fix deferred layout on resize after drawing | 2024-11-05 | 3 | -73/+49 | |
| | | |||||
| * | Implement `reactive-rendering` for `pane_grid` | 2024-11-05 | 2 | -35/+105 | |
| | | |||||
| * | Implement `reactive-rendering` for `canvas` | 2024-11-05 | 9 | -142/+244 | |
| | | |||||
| * | Implement `reactive-rendering` for `combo_box` | 2024-11-05 | 1 | -3/+17 | |
| | | |||||
| * | Rename `Widget::on_event` to `update` | 2024-11-05 | 37 | -67/+67 | |
| | | |||||
| * | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 44 | -705/+556 | |
| | | |||||
| * | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 15 | -114/+89 | |
| | | |||||
| * | Implement `reactive-rendering` for `scrollable` | 2024-11-05 | 1 | -294/+331 | |
| | | |||||
| * | Implement `reactive-rendering` for `menu` | 2024-11-05 | 1 | -6/+37 | |
| | | |||||
| * | Implement `reactive-rendering` for `pick_list` | 2024-11-05 | 1 | -23/+34 | |
| | | |||||
| * | Request a redraw when a window is resized | 2024-11-05 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | If we do not request it, macOS does not get any `RedrawRequested` events. Shouldn't `winit` [take care of this]? Probably a bug. [take care of this]: https://docs.rs/winit/0.30.5/winit/event/enum.WindowEvent.html#variant.RedrawRequested | ||||
| * | Implement `reactive-rendering` for `toggler` | 2024-11-05 | 1 | -17/+32 | |
| | | |||||
| * | Implement `reactive-rendering` for `radio` | 2024-11-05 | 1 | -11/+32 | |
| | | |||||
| * | Implement `reactive-rendering` for `checkbox` | 2024-11-05 | 1 | -14/+35 | |
| | | |||||
| * | Fix `WindowManager::is_idle` in `iced_winit` | 2024-11-05 | 1 | -1/+1 | |
| | | |||||
| * | Implement `reactive-rendering` for `text_input` | 2024-11-05 | 4 | -89/+202 | |
| | | | | | | | | ... and fix the redraw queue logic in `iced_winit`. | ||||
| * | Implement `reactive-rendering` for `slider` | 2024-11-05 | 2 | -132/+160 | |
| | | |||||
| * | Remove `TODO` about reactive rendering in `iced_winit` | 2024-11-05 | 1 | -5/+0 | |
| | | |||||
| * | Draft `reactive-rendering` feature for `button` | 2024-11-05 | 6 | -86/+156 | |
|/ |