Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename `Widget::on_event` to `update` | 2024-11-05 | 2 | -5/+5 | |
| | |||||
* | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 6 | -41/+49 | |
| | |||||
* | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 1 | -7/+17 | |
| | |||||
* | Introduce consecutive click distance like other toolkits such as gtk,qt, imgui. | 2024-10-14 | 1 | -1/+1 | |
| | |||||
* | Add `PartialEq` derives for widget styles | 2024-10-14 | 1 | -1/+1 | |
| | |||||
* | Merge pull request #2608 from ibaryshnikov/haskell | 2024-10-02 | 1 | -0/+6 | |
|\ | | | | | added physical_key to KeyReleased event | ||||
| * | Add `modified_key` to `keyboard::Event::KeyReleased` | 2024-10-02 | 1 | -0/+3 | |
| | | |||||
| * | added physical_key to KeyReleased event | 2024-09-26 | 1 | -0/+3 | |
| | | |||||
* | | Fix various typos | 2024-09-29 | 3 | -4/+4 | |
| | | | | | | | | Using https://github.com/crate-ci/typos | ||||
* | | Document `File{Dropped,Hovered,HoveredLeft}` as unsupported on wayland | 2024-09-29 | 1 | -0/+12 | |
|/ | | | | Blocked on https://github.com/rust-windowing/winit/issues/1881 | ||||
* | Fix flex layout of `Fill` elements in a `Shrink` cross axis | 2024-09-21 | 1 | -6/+7 | |
| | | | | | | Instead of collapsing, the `Fill` elements will fill the cross space allocated by the other `Shrink` elements present in the container. | ||||
* | Drop short-hand notation support for `color!` macro | 2024-09-20 | 1 | -20/+8 | |
| | | | | | | We'd need to use `stringify!` and `str::len` to properly support the short-hand notation; however, we want the macro to work in `const` contexts. | ||||
* | Show `text` doc examples in multiple places | 2024-09-19 | 1 | -2/+44 | |
| | |||||
* | Implement some `From` traits for `text_input::Id` | 2024-09-18 | 1 | -1/+7 | |
| | |||||
* | Remove outdated `window::Id::MAIN` reference in docs | 2024-09-18 | 1 | -3/+1 | |
| | |||||
* | Bump version to `0.13.0` :tada: | 2024-09-18 | 1 | -5/+5 | |
| | |||||
* | Merge pull request #2551 from airstrike/mouse-interactions | 2024-09-13 | 1 | -0/+7 | |
|\ | | | | | Expose additional mouse interaction cursors | ||||
| * | Add `Copy` and `Help` variants to `mouse::Interaction` | 2024-09-13 | 1 | -0/+2 | |
| | | |||||
| * | Rename `ResizingDiagonal*` to `ResizingDiagonally*` | 2024-09-13 | 1 | -2/+2 | |
| | | |||||
| * | Expose additional mouse interaction cursors | 2024-08-16 | 1 | -0/+5 | |
| | | |||||
* | | Fix broken doc links in `keyboard::key` | 2024-09-13 | 1 | -6/+6 | |
| | | |||||
* | | Add `modified_key` to `keyboard::Event` | 2024-09-13 | 1 | -0/+3 | |
| | | |||||
* | | Add `physical_key` to `keyboard::Event` | 2024-09-13 | 2 | -0/+537 | |
| | | | | | | | | Co-authored-by: Exidex <16986685+Exidex@users.noreply.github.com> | ||||
* | | Encourage use of `color!` macro in `Color::parse` docs | 2024-09-11 | 1 | -21/+26 | |
| | | |||||
* | | Rename `Color::from_hex` to `Color::parse` | 2024-09-11 | 1 | -51/+43 | |
| | | |||||
* | | Improve flexibility of `color!` macro | 2024-09-11 | 1 | -15/+46 | |
| | | |||||
* | | Add Color::from_hex | 2024-09-11 | 1 | -0/+69 | |
| | | |||||
* | | Add `override_redirect` for X11 windows | 2024-09-11 | 1 | -0/+6 | |
| | | | | | | | | | | This commit add the `override_redirect` boolean field to the `PlatformSpecific` struct for linux platform. This is a X11-specific flag allow bypassing window manager mapping for precise positioning of windows. | ||||
* | | Implement `scroll_by` operation for `scrollable` | 2024-09-10 | 3 | -5/+97 | |
| | | | | | | | | | | `scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position. | ||||
* | | Add `mouse::Button` to `mouse::Click` | 2024-09-09 | 1 | -2/+11 | |
| | | |||||
* | | add option for undecorated_shadow on windows (#2285) | 2024-09-05 | 1 | -0/+7 | |
| | | | | | | | | | | * add option for undecorated_shadow on windows * formated | ||||
* | | Add `text::Wrapping` support | 2024-09-04 | 5 | -3/+36 | |
| | | | | | | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | ||||
* | | Make `RichText` generic over data structure | 2024-08-22 | 2 | -2/+2 | |
|/ | | | | ... and decouple `markdown::parse` from theming | ||||
* | Rename `operation::chain` to `then` | 2024-08-15 | 2 | -6/+12 | |
| | | | | | ... and make `focus_*` operations generic over the output type. | ||||
* | Merge pull request #2536 from meithecatte/editor-clipping | 2024-08-12 | 1 | -6/+20 | |
|\ | | | | | text_editor: Avoid rendering text outside the border | ||||
| * | Make `Padding` affect `text_editor` clipping | 2024-08-12 | 1 | -6/+20 | |
| | | |||||
* | | Introduce `black_box` and `chain` in `widget::operation` | 2024-08-08 | 7 | -35/+200 | |
| | | |||||
* | | Implement `row::Wrapping` widget | 2024-08-06 | 1 | -6/+7 | |
| | | | | | | | | | | | | | | | | | | If you have a `Row`, simply call `Row::wrap` at the end to turn it into a `Row` that will wrap its contents. The original alignment of the `Row` is preserved per row wrapped. | ||||
* | | Introduce `Svg` struct in `core::svg` | 2024-08-04 | 4 | -21/+66 | |
| | | |||||
* | | Remove `todo!` in `core::renderer::null` | 2024-08-04 | 1 | -3/+1 | |
| | | |||||
* | | Introduce `Image` struct in `core::image` | 2024-08-04 | 3 | -20/+74 | |
| | | |||||
* | | Implement image support for `canvas` widget | 2024-08-04 | 1 | -0/+56 | |
| | | |||||
* | | Implement `From<&Handle>` for `image::Handle` | 2024-08-03 | 1 | -0/+6 | |
|/ | |||||
* | Implement `strikethrough` support for `rich_text` spans | 2024-07-28 | 1 | -0/+10 | |
| | |||||
* | Implement `underline` support for `rich_text` spans | 2024-07-28 | 1 | -0/+10 | |
| | |||||
* | Add `padding` to `text::Span` | 2024-07-28 | 2 | -10/+44 | |
| | |||||
* | Improve ergonomics of `span` background highlighting | 2024-07-28 | 1 | -27/+58 | |
| | |||||
* | Add background styling to span / rich text | 2024-07-28 | 3 | -2/+47 | |
| | |||||
* | Fix lints for Rust 1.80 | 2024-07-26 | 2 | -4/+4 | |
| | |||||
* | Add `placeholder` support to `text_editor` widget | 2024-07-24 | 2 | -0/+7 | |
| |