Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Show `pane_grid` doc example in multiple places | 2024-09-19 | 2 | -14/+117 | |
| | |||||
* | Show `markdown` doc example in multiple places | 2024-09-19 | 1 | -1/+130 | |
| | |||||
* | Show `keyed_column` doc example in multiple places | 2024-09-19 | 3 | -8/+68 | |
| | |||||
* | Show `image` doc example in multiple places | 2024-09-19 | 2 | -7/+50 | |
| | |||||
* | Show `container` doc example in multiple places | 2024-09-19 | 3 | -11/+65 | |
| | |||||
* | Show `combo_box` doc example in multiple places | 2024-09-19 | 2 | -5/+166 | |
| | |||||
* | Show `checkbox` doc example in multiple places | 2024-09-19 | 4 | -11/+89 | |
| | |||||
* | Show `canvas` doc example in multiple places | 2024-09-19 | 2 | -11/+126 | |
| | |||||
* | Add quick example to `widget::button` module | 2024-09-19 | 2 | -14/+48 | |
| | |||||
* | Merge pull request #2583 from iced-rs/fix/scrolling-direction-with-trackpad | 2024-09-18 | 1 | -1/+1 | |
|\ | | | | | Fix scrolling direction with trackpad in `scrollable` | ||||
| * | Fix scrolling direction with trackpad in `scrollable` | 2024-09-18 | 1 | -1/+1 | |
| | | |||||
* | | Implement some `From` traits for `text_input::Id` | 2024-09-18 | 1 | -12/+27 | |
|/ | |||||
* | Bump version to `0.13.0` :tada: | 2024-09-18 | 1 | -1/+1 | |
| | |||||
* | Merge pull request #2565 from kiedtl/slider_mouse_wheel | 2024-09-13 | 2 | -2/+38 | |
|\ | | | | | slider: handle mouse wheel events | ||||
| * | Use `mouse::Cursor::is_over` in `slider` | 2024-09-13 | 2 | -4/+4 | |
| | | |||||
| * | Enable `slider` scrolling only when `Ctrl` is pressed | 2024-09-13 | 2 | -32/+36 | |
| | | |||||
| * | slider: handle mouse wheel events | 2024-09-02 | 2 | -0/+32 | |
| | | |||||
* | | Document how the state of a `Component` can be managed | 2024-09-13 | 1 | -0/+13 | |
| | | |||||
* | | Add `on_open` handler to `combo_box` widget | 2024-09-13 | 1 | -7/+20 | |
| | | | | | | | | Co-authored-by: Wail Abou <abou.w@hotmail.com> | ||||
* | | Fix priority of `Binding::Delete` in `text_editor` | 2024-09-13 | 1 | -1/+3 | |
| | | | | | | | | Co-authored-by: Trevor Campbell <trevor@shartrec.com> | ||||
* | | Set `Limits::width` in `TextEditor` layout | 2024-09-13 | 1 | -1/+1 | |
| | | |||||
* | | Take `Into<Pixels>` in `TextEditor::width` | 2024-09-13 | 1 | -2/+2 | |
| | | | | | | | | Since a `Shrink` width would not make sense. | ||||
* | | feat: add width setter | 2024-09-13 | 1 | -0/+6 | |
| | | |||||
* | | Add `label` method to `Toggler` | 2024-09-11 | 2 | -8/+11 | |
| | | |||||
* | | Add disabled state and `on_toggle` handler to `Toggler` | 2024-09-11 | 2 | -14/+48 | |
| | | | | | | | | Co-authored-by: Your Name here only <krishnsundaram@gmail.com> | ||||
* | | Merge pull request #2450 from breynard0/master | 2024-09-10 | 1 | -14/+35 | |
|\ \ | | | | | | | Add `on_scroll` handler to `mouse_area` widget | ||||
| * | | Simplify signatures of `on_move` and `on_scroll` for `mouse_area` | 2024-09-10 | 1 | -10/+7 | |
| | | | |||||
| * | | Use `cursor` changes to notify mouse events in `mouse_area` | 2024-09-10 | 1 | -5/+10 | |
| | | | | | | | | | | | | Fixes #2433. | ||||
| * | | Add `on_scroll` handler to `mouse_area` widget | 2024-09-10 | 1 | -3/+22 | |
| | | | |||||
* | | | Improve slider widget styling. (#2444) | 2024-09-10 | 2 | -22/+26 | |
|/ / | | | | | | | | | | | | | | | | | | | | | | | * Overhaul slider styling * Add `border` attribute to `Rail` * Replace `color` attribute with `background` for handle * Replace `colors` with `backgrounds` for the Rail. * code consistency * remove unused import | ||||
* | | Render border above active progress for progress_bar widget. (#2443) | 2024-09-10 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | * Render border above active progress for progress_bar widget. * Fix gap showing between border and background. * Include border style in active bar and make the border color transparent. | ||||
* | | Notify all `scrollable::Viewport` changes | 2024-09-10 | 1 | -14/+44 | |
| | | | | | | | | Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | ||||
* | | Implement `scroll_by` operation for `scrollable` | 2024-09-10 | 2 | -31/+60 | |
| | | | | | | | | | | `scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position. | ||||
* | | Add `mouse::Button` to `mouse::Click` | 2024-09-09 | 2 | -2/+6 | |
| | | |||||
* | | Enable horizontal scrolling without shift modifier | 2024-09-08 | 1 | -6/+20 | |
| | | | | | | | | Fixes #2359. | ||||
* | | Implement mouse wheel transactions for `scrollable` | 2024-09-08 | 1 | -9/+34 | |
| | | | | | | | | | | | | See https://wiki.mozilla.org/Gecko:Mouse_Wheel_Scrolling#Mouse_wheel_transaction Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | ||||
* | | Simplify type signature of `TextInput` methods | 2024-09-07 | 1 | -21/+11 | |
| | | |||||
* | | Add `*_maybe` helper methods for `TextInput` | 2024-09-07 | 1 | -0/+39 | |
| | | |||||
* | | Deprecate the `component` widget | 2024-09-05 | 3 | -0/+14 | |
| | | |||||
* | | Flag `lazy` feature types directly | 2024-09-05 | 5 | -5/+6 | |
| | | | | | | | | Co-authored-by: JL710 <76447362+JL710@users.noreply.github.com> | ||||
* | | Fix `toggler` example | 2024-09-04 | 1 | -1/+1 | |
| | | |||||
* | | Add `text::Wrapping` support | 2024-09-04 | 9 | -11/+69 | |
| | | | | | | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | ||||
* | | Allow interactions on disabled `text_input` | 2024-09-04 | 1 | -19/+28 | |
|/ | | | | Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | ||||
* | Implement `From<Style>` for `container::StyleFn` | 2024-09-02 | 1 | -0/+6 | |
| | | | | Co-authored-by: wiiznokes <78230769+wiiznokes@users.noreply.github.com> | ||||
* | Introduce `container::background` style helper | 2024-09-02 | 1 | -0/+5 | |
| | |||||
* | Merge pull request #2535 from bungoboingo/text-input-alignment | 2024-08-24 | 1 | -10/+69 | |
|\ | | | | | Implement `align_x` for `TextInput` | ||||
| * | Implement `align_x` for `TextInput` | 2024-08-24 | 1 | -10/+69 | |
| | | | | | | | | Co-authored-by: Shan <shankern@protonmail.com> | ||||
* | | Merge pull request #2555 from mtkennerly/feature/pane-grid-compact-controls | 2024-08-24 | 3 | -69/+309 | |
|\ \ | | | | | | | Add compact variant for pane grid controls | ||||
| * | | Add compact variant for pane grid controls | 2024-08-22 | 3 | -69/+309 | |
| |/ | |||||
* | | Fix ambiguous `rich_text` link in `widget::markdown` | 2024-08-22 | 1 | -1/+1 | |
| | |