Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make `pin` widget `Fill` parent by default | 2024-11-22 | 2 | -8/+4 | |
| | |||||
* | Implement `pin` widget | 2024-11-22 | 3 | -1/+310 | |
| | |||||
* | 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 | |
| | | |||||
* | | Fix event capturing order in `pane_grid` | 2024-11-06 | 1 | -38/+41 | |
| | | |||||
* | | Rename `Overlay::on_event` to `update` | 2024-11-06 | 8 | -15/+14 | |
| | | |||||
* | | 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 | |
| | | |||||
* | | Fix deferred layout on resize after drawing | 2024-11-05 | 2 | -14/+16 | |
| | | |||||
* | | Implement `reactive-rendering` for `pane_grid` | 2024-11-05 | 2 | -35/+105 | |
| | | |||||
* | | Implement `reactive-rendering` for `canvas` | 2024-11-05 | 5 | -48/+142 | |
| | | |||||
* | | Implement `reactive-rendering` for `combo_box` | 2024-11-05 | 1 | -3/+17 | |
| | | |||||
* | | Rename `Widget::on_event` to `update` | 2024-11-05 | 31 | -56/+56 | |
| | | |||||
* | | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 33 | -584/+440 | |
| | | |||||
* | | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 11 | -90/+67 | |
| | | |||||
* | | 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 | |
| | | |||||
* | | 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 | |
| | | |||||
* | | Implement `reactive-rendering` for `text_input` | 2024-11-05 | 2 | -59/+168 | |
| | | | | | | | | ... and fix the redraw queue logic in `iced_winit`. | ||||
* | | Implement `reactive-rendering` for `slider` | 2024-11-05 | 1 | -132/+158 | |
| | | |||||
* | | Draft `reactive-rendering` feature for `button` | 2024-11-05 | 1 | -44/+68 | |
|/ | |||||
* | Add `relabel` helper to `pane_grid::State` | 2024-10-24 | 1 | -14/+15 | |
| | |||||
* | Rename `state::Widget` to `pane_grid::Memory` | 2024-10-24 | 2 | -16/+15 | |
| | |||||
* | Fix `responsive` diffing when `Tree` is emptied by ancestors | 2024-10-24 | 1 | -1/+4 | |
| | |||||
* | Remove duplicated `maximized` state in `pane_grid` | 2024-10-24 | 2 | -45/+59 | |
| | |||||
* | Keep `Pane` associated to state / layout after swap | 2024-10-24 | 1 | -2/+18 | |
| | | | | | | | State continuity is dependent on keeping a node associated to it's original `Pane` id. When splitting -> swapping nodes, we need to assign it back to the original `Pane` to enforce continuity. | ||||
* | Retain widget state against incoming panes | 2024-10-24 | 2 | -125/+135 | |
| | | | | | | | | | | We can associate each state with a `Pane` and compare that against the new panes to remove states w/ respective panes which no longer exist. Because we always increment `Pane`, new states are always added to the end, so this retain + add new state approach will ensure continuity when panes are added & removed | ||||
* | Use BTreeMap for Ord iteration of panes | 2024-10-24 | 1 | -4/+4 | |
| | | | | | This ensures continuity in how panes are iterated on when building widget state | ||||
* | Update button Catalog and Style documentation (#2590) | 2024-10-17 | 1 | -0/+51 | |
| | | | | | | | | | | | | | | | * Update button Catalog and Style documentation * Clarified button documentation * fix code typo * Run `cargo fmt` * Fixed docs to pass tests --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | ||||
* | Fix new elided lifetime lint in the `beta` toolchain | 2024-10-17 | 2 | -2/+2 | |
| | |||||
* | Merge pull request #2632 from leo030303/fix_delete_key_bug | 2024-10-14 | 1 | -1/+3 | |
|\ | | | | | Fixed bug where delete key wasn't working in the text editor | ||||
| * | Fix `Binding::Delete` not triggering in `text_editor` | 2024-10-14 | 1 | -1/+3 | |
| | | |||||
* | | Add `PartialEq` derives for widget styles | 2024-10-14 | 12 | -18/+18 | |
| | | |||||
* | | Fix `mouse::Cursor` fighting in `stack` widget | 2024-10-04 | 1 | -4/+2 | |
| | | |||||
* | | Fix `responsive`, `component`, and `lazy` always returning an `overlay` | 2024-10-04 | 3 | -61/+80 | |
| | | |||||
* | | Implement `Overlay::operate` for `responsive::Overlay` | 2024-10-04 | 1 | -0/+11 | |
|/ | |||||
* | Merge pull request #2623 from boondocklabs/markdown-lifetime | 2024-10-02 | 1 | -2/+2 | |
|\ | | | | | Change lifetime of markdown IntoIterator Item, as it does not need to live as long as the returned Element | ||||
| * | Change lifetime of markdown view IntoIterator Item, as it does not need to ↵ | 2024-10-01 | 1 | -2/+2 | |
| | | | | | | | | live as long as the returned Element. | ||||
* | | Merge pull request #2606 from tvolk131/qr_code_fixed_size | 2024-10-02 | 1 | -8/+16 | |
|\ \ | | | | | | | feat: set total size of QRCode | ||||
| * | | Make `cell_size` and `total_size` generic over `Pixels` in `qr_code` | 2024-10-02 | 1 | -6/+8 | |
| | | | |||||
| * | | feat: set total size of QRCode | 2024-09-24 | 1 | -5/+11 | |
| |/ | |||||
* | | Merge pull request #2611 from tarkah/fix/ignore-out-of-viewport-text | 2024-10-02 | 2 | -22/+16 | |
|\ \ | | | | | | | Don't fill out of viewport text | ||||
| * | | Cull widget draw calls in `column` and `row` | 2024-10-02 | 2 | -22/+16 | |
| |/ | |||||
* / | Fix various typos | 2024-09-29 | 5 | -9/+9 | |
|/ | | | | Using https://github.com/crate-ci/typos |