summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-1251-396/+256
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-1245-282/+380
|
* Merge pull request #2503 from iced-rs/task-abort-on-dropLibravatar Héctor Ramón2024-07-121-5/+40
|\ | | | | Add `abort_on_drop` to `task::Handle`
| * Add `abort_on_drop` to `task::Handle`Libravatar Héctor Ramón Jiménez2024-07-121-5/+40
|/ | | | You may not want to worry about aborting tasks manually.
* Merge pull request #2502 from iced-rs/button-on-press-withLibravatar Héctor Ramón2024-07-121-4/+35
|\ | | | | Add `on_press_with` method for `Button`
| * Add `on_press_with` method for `Button`Libravatar Héctor Ramón Jiménez2024-07-121-4/+35
|/ | | | | | This allows using a closure to produce the message only when the `Button` is actually pressed. Useful when generating the message may be expensive.
* Finish `window::open` only when window fully opensLibravatar Héctor Ramón Jiménez2024-07-111-25/+22
| | | | | ... and run initial `Task` after `window::open` for applications. This fixes certain race conditions.
* Make window visible after surface creation in `iced_winit`Libravatar Héctor Ramón Jiménez2024-07-111-1/+11
|
* Merge pull request #2269 from dtzxporter/scrollbar-disabledLibravatar Héctor Ramón2024-07-114-215/+328
|\ | | | | Add a configuration to scrollable to always show the scrollbar. Adds a disabled style for scrollbar.
| * Fix broken doc links in `widget::scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-4/+4
| |
| * Add support for embedded scrollbars for `scrollable`Libravatar Héctor Ramón Jiménez2024-07-114-211/+324
|/ | | | Co-authored-by: dtzxporter <dtzxporter@users.noreply.github.com>
* Merge pull request #2500 from iced-rs/builtin-text-stylesLibravatar Héctor Ramón2024-07-111-0/+28
|\ | | | | Add some built-in text styles for each `Palette` color
| * Add some built-in text styles for each `Palette` colorLibravatar Héctor Ramón Jiménez2024-07-111-0/+28
| |
* | Merge pull request #2488 from vladh/remove-scrollable-commentLibravatar Héctor Ramón2024-07-111-1/+0
|\ \ | |/ |/| doc: remove extraneous comment
| * doc: remove extraneous commentLibravatar Vlad-Stefan Harbuz2024-07-021-1/+0
| |
* | Merge pull request #2499 from iced-rs/scrollable-alignment-helpersLibravatar Héctor Ramón2024-07-111-0/+26
|\ \ | | | | | | Add `align_x` and `align_y` helpers to `Scrollable`
| * | Add `align_x` and `align_y` helpers to `Scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-0/+26
| | |
* | | Merge pull request #2498 from iced-rs/iced-widgetLibravatar Héctor Ramón2024-07-117-30/+56
|\ \ \ | | | | | | | | Add `iced` widget helper to display the iced logo :comet:
| * | | Add `iced` widget helper to display the iced logo :comet:Libravatar Héctor Ramón Jiménez2024-07-117-30/+56
| |/ /
* | | Merge pull request #2497 from iced-rs/stream-try-channelLibravatar Héctor Ramón2024-07-111-0/+21
|\ \ \ | |/ / |/| | Introduce `stream::try_channel` helper
| * | Introduce `stream::try_channel` helperLibravatar Héctor Ramón Jiménez2024-07-111-0/+21
|/ /
* | Merge pull request #2496 from iced-rs/abortable-tasksLibravatar Héctor Ramón2024-07-102-19/+62
|\ \ | | | | | | Abortable `Task`
| * | Introduce `Task::abortable` :tada:Libravatar Héctor Ramón Jiménez2024-07-102-1/+44
| | |
| * | Move docs of `future` and `stream` in `Task`Libravatar Héctor Ramón Jiménez2024-07-101-18/+18
|/ /
* | Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez2024-07-0910-197/+70
| | | | | | | | | | If you need to run a `Task` during boot, use `run_with` instead!
* | Implement `Default` for `combo_box::State`Libravatar Héctor Ramón Jiménez2024-07-091-0/+9
| |
* | Merge pull request #2321 from PgBiel/select-allLibravatar Héctor Ramón2024-07-083-0/+28
|\ \ | | | | | | Add "Select All" functionality on Ctrl+A to TextEditor
| * | add SelectAll to TextEditorLibravatar PgBiel2024-07-083-0/+28
|/ /
* | Allow future in `stream::channel` to returnLibravatar Héctor Ramón Jiménez2024-07-081-3/+2
| |
* | Merge pull request #2493 from iced-rs/hide-subscription-internalsLibravatar Héctor Ramón2024-07-0513-249/+271
|\ \ | | | | | | Hide `Subscription` internals
| * | Expose `from_recipe` and `into_recipes` in `advanced::subscription`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
| | |
| * | Fix `wasm_bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2024-07-051-1/+1
| | |
| * | Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez2024-07-0511-247/+269
|/ / | | | | | | .. and introduce `stream::channel` helper
* | Merge pull request #2492 from iced-rs/hide-internal-task-constructorsLibravatar Héctor Ramón2024-07-0511-134/+138
|\ \ | | | | | | Hide internal `Task` constructors
| * | Hide internal `Task` constructorsLibravatar Héctor Ramón Jiménez2024-07-0511-134/+138
|/ /
* / Simplify `subscription::channel` exampleLibravatar Héctor Ramón Jiménez2024-07-021-29/+14
|/
* Merge pull request #2485 from vladh/add-quad-border-docLibravatar Héctor Ramón2024-06-301-1/+1
|\ | | | | doc: clarify Quad border alignment
| * doc: clarify Quad border alignmentLibravatar Vlad-Stefan Harbuz2024-06-291-1/+1
| |
* | Merge pull request #2487 from vladh/fix-reconcile-typoLibravatar Héctor Ramón2024-06-302-4/+4
|\ \ | | | | | | doc: fix "Reconciles" typo
| * | doc: fix "Reconciles" typoLibravatar Vlad-Stefan Harbuz2024-06-302-4/+4
|/ /
* | Fix `window::open_events` subscribing to closed eventsLibravatar Héctor Ramón Jiménez2024-06-281-1/+1
| | | | | | | | Fixes #2481.
* | Remove unnecessary `Send` bound in `runtime::Action`Libravatar Héctor Ramón Jiménez2024-06-211-1/+1
| | | | | | | | This may fix compilation errors in older versions of Rust.
* | Merge pull request #2475 from vladh/impl-copy-fill-strokeLibravatar Héctor Ramón2024-06-214-4/+4
|\ \ | |/ |/| Implement Copy on Fill and Stroke
| * Implement Copy on Fill and StrokeLibravatar Vlad-Stefan Harbuz2024-06-214-4/+4
| |
* | Fix fonts not being loaded at startupLibravatar Héctor Ramón Jiménez2024-06-211-1/+9
|/
* Fix `application` sometimes exiting at startupLibravatar Héctor Ramón Jiménez2024-06-201-0/+4
|
* Inline documentation for `application` and `daemon` functionsLibravatar Héctor Ramón Jiménez2024-06-201-2/+7
|
* Merge pull request #2470 from ryankopf/masterLibravatar Héctor Ramón2024-06-201-0/+51
|\ | | | | feat: Add methods for window settings in Application
| * Add `window` method to `Application`Libravatar Héctor Ramón Jiménez2024-06-201-1/+8
| |
| * feat: Add methods for window settings in ApplicationLibravatar ryankopf2024-06-201-0/+44
|/ | | | This commit adds new methods to the `Application` struct for setting various window settings such as resizable, decorations, position, and level. These methods allow for more customization and control over the appearance and behavior of the application window.