Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement setter for filter_method property of viewer | 2024-03-11 | 1 | -0/+6 | |
| | |||||
* | Prioritize release events in `scrollable` | 2024-03-11 | 1 | -22/+16 | |
| | |||||
* | Use integer coordinates for input caret | 2024-03-10 | 2 | -2/+3 | |
| | | | | | This should stop the caret from changing thickness in screens with an integral scale factor. | ||||
* | fix some comments | 2024-03-09 | 1 | -1/+1 | |
| | | | | Signed-off-by: rustrover <seekseat@126.com> | ||||
* | fix: make pane_grid appearance items visible to others. | 2024-03-08 | 1 | -3/+3 | |
| | |||||
* | Rename `container::box_` to `rounded_box` | 2024-03-08 | 1 | -1/+1 | |
| | |||||
* | Fix `mouse_interaction` and `on_event` for `Scrollable` | 2024-03-08 | 1 | -2/+2 | |
| | |||||
* | Rename `transparentize` to `scale_alpha` | 2024-03-08 | 1 | -3/+3 | |
| | |||||
* | Inline helper functions in `widget` modules | 2024-03-08 | 4 | -669/+553 | |
| | |||||
* | Make default height of `Slider` consistent with `Checkbox` | 2024-03-08 | 2 | -2/+2 | |
| | |||||
* | Fix handle of `PickList` being rendered too much to the left | 2024-03-08 | 1 | -1/+1 | |
| | |||||
* | Make `PickList` padding consistent with `Button` | 2024-03-08 | 2 | -13/+10 | |
| | |||||
* | Make `Checkbox`, `Radio`, and `Toggler` default sizes consistent | 2024-03-08 | 3 | -5/+5 | |
| | |||||
* | Improve default padding of `Button` widget | 2024-03-08 | 1 | -1/+9 | |
| | |||||
* | Reduce default `Rail::width` of `Slider` widget | 2024-03-08 | 1 | -2/+2 | |
| | |||||
* | Remove obsolete `shadow_offset` field from `button::Appearance` | 2024-03-07 | 1 | -3/+0 | |
| | |||||
* | Fix consistency of `with_background` for `button::Appearance` | 2024-03-07 | 1 | -5/+5 | |
| | |||||
* | Implement additional helpers for `Border` and `container::Appearance` | 2024-03-07 | 9 | -16/+34 | |
| | |||||
* | Implement `button::DefaultStyle` for `Color` | 2024-03-07 | 1 | -0/+6 | |
| | |||||
* | Implement `with_background` for `button::Appearance` | 2024-03-07 | 1 | -0/+10 | |
| | |||||
* | Make fields of `Style` structs public | 2024-03-07 | 2 | -4/+4 | |
| | |||||
* | Leverage `DefaultStyle` traits instead of `Default` | 2024-03-07 | 22 | -334/+310 | |
| | |||||
* | Rename `positive` and `destructive` to `success` and `danger` in `button` | 2024-03-07 | 1 | -4/+4 | |
| | |||||
* | Fix broken links in documentation | 2024-03-07 | 5 | -13/+7 | |
| | |||||
* | Move `Theme` type to `iced_core` | 2024-03-07 | 20 | -57/+32 | |
| | |||||
* | Use `Style` struct pattern instead of trait for all widgets | 2024-03-06 | 22 | -253/+449 | |
| | |||||
* | Try `Style` newtype instead of trait for `Svg` widget | 2024-03-06 | 2 | -13/+25 | |
| | |||||
* | Simplify theming for `PickList`, `ComboBox`, and `Menu` widgets | 2024-03-06 | 9 | -307/+421 | |
| | |||||
* | Simplify theming for `PaneGrid` widget | 2024-03-06 | 1 | -551/+522 | |
| | |||||
* | Simplify theming for `TextEditor` widget | 2024-03-06 | 2 | -20/+105 | |
| | |||||
* | Simplify theming for `Svg` widget | 2024-03-06 | 2 | -22/+55 | |
| | |||||
* | Simplify theming for `Toggler` widget | 2024-03-06 | 2 | -21/+112 | |
| | |||||
* | Simplify theming for `Rule` widget | 2024-03-05 | 2 | -31/+132 | |
| | |||||
* | Improve default styling of `Slider` widget | 2024-03-05 | 2 | -20/+16 | |
| | |||||
* | Simplify theming for `ProgressBar` widget | 2024-03-05 | 2 | -24/+86 | |
| | |||||
* | Reduce default size of `checkbox` to `15.0` | 2024-03-05 | 2 | -5/+5 | |
| | |||||
* | Simplify theming for `Radio` widget | 2024-03-05 | 2 | -22/+86 | |
| | |||||
* | Move style types of `slider` to `iced_widget` | 2024-03-05 | 3 | -29/+136 | |
| | |||||
* | Simplify theming for `QRCode` widget | 2024-03-05 | 2 | -22/+48 | |
| | |||||
* | Simplify theming for `TextInput` widget | 2024-03-05 | 6 | -885/+855 | |
| | |||||
* | Simplify theming for `Scrollable` widget | 2024-03-05 | 5 | -227/+342 | |
| | |||||
* | Simplify theming for `Container` widget | 2024-03-05 | 10 | -72/+178 | |
| | |||||
* | Simplify theming for `Checkbox` widget | 2024-03-05 | 2 | -22/+192 | |
| | |||||
* | Simplify theming for `Button` widget | 2024-03-04 | 2 | -149/+235 | |
| | |||||
* | Enhnace `Themer` to allow derivation from current `Theme` | 2024-03-04 | 2 | -66/+80 | |
| | |||||
* | Simplify theming for `Text` widget | 2024-03-04 | 2 | -3/+3 | |
| | |||||
* | Try new approach to theming for `Slider` | 2024-03-04 | 2 | -623/+483 | |
| | |||||
* | Merge pull request #2303 from GyulyVGC/master | 2024-02-28 | 1 | -15/+17 | |
|\ | | | | | [Minor Fix] Scrollbar style when cursor is over scrollable area | ||||
| * | Fix scrollbar style when cursor is over `scrollable` | 2024-02-28 | 1 | -15/+17 | |
| | | |||||
* | | Capture select all command in `TextInput` | 2024-02-28 | 1 | -0/+2 | |
| | |