summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added tracing to multi_window applicationsLibravatar Bingus2023-01-137-36/+94
|
* Removed glutin's individual multi_window state since 0.30+ doesn't have its ↵Libravatar bungoboingo2023-01-092-232/+5
| | | | own event crate anymore
* FormattingLibravatar bungoboingo2023-01-094-25/+81
|
* Implemented window title update functionality for multiwindow.Libravatar bungoboingo2023-01-0914-235/+262
|
* Fix multi-window example for Glutin on MacOSLibravatar Bingus2023-01-093-75/+90
|
* Fixed issue with window ID on winitLibravatar bungoboingo2023-01-093-51/+62
|
* merged in iced masterLibravatar bungoboingo2023-01-095-5/+45
|
* remove `windows` method (use commands instead)Libravatar Richard2023-01-096-73/+8
|
* update `glutin\multi_window` to new surface apiLibravatar Richard2023-01-092-98/+294
|
* update `iced_glutin` to use new surface apiLibravatar Richard2023-01-092-87/+254
|
* update `glutin` to 0.30Libravatar Richard2023-01-091-2/+2
|
* introduce `window::spawn` and `window::close`Libravatar Richard2023-01-095-71/+123
|
* move window settings to `iced_native`Libravatar Richard2023-01-0911-69/+62
|
* use `glutin/multi_window` branchLibravatar Richard2023-01-094-23/+29
|
* copy `multi_window::Event` from `iced_winit`Libravatar Richard2023-01-092-14/+491
|
* implement `multi_window` for `iced_glutin`Libravatar Richard2023-01-093-9/+561
|
* add `window::Id` to `Event` and `Action`Libravatar Richard2023-01-0911-79/+100
|
* Introduce `multi_window` to `iced_glutin`Libravatar Richard2023-01-094-1/+26
|
* Split `Surface` and `Window`Libravatar Richard2023-01-091-47/+35
|
* Introduce `close_requested` for `multi-window`Libravatar Richard2023-01-094-4/+26
|
* Allow closing the window from user codeLibravatar Richard2023-01-094-23/+76
|
* create multi-windowed `pane_grid` exampleLibravatar Richard2023-01-091-101/+278
|
* add `window::Id` to `view`Libravatar Richard2023-01-092-12/+35
|
* duplicate `pane_grid` example to `multi_window`Libravatar Richard2023-01-092-27/+355
|
* fix: temporarily add `window::Id` toLibravatar Richard2023-01-091-18/+35
| | | | events internaly
* what is thisLibravatar Richard2023-01-093-154/+285
|
* Fix `multi_window` exampleLibravatar Richard2023-01-091-0/+58
|
* Introduce opaque `window::Id` typeLibravatar Richard2023-01-096-12/+48
|
* Synchronize window list with `windows` methodLibravatar Richard2023-01-092-15/+79
|
* fix: temporalily remove the unsafe pointer `HWND`Libravatar Richard2023-01-092-5/+5
|
* Internally wrap `Message` with a `Event` enumLibravatar Richard2023-01-091-15/+28
|
* Use map of windows internallyLibravatar Richard2023-01-091-11/+19
|
* Unify `Application` and `Program`Libravatar Richard2023-01-092-21/+35
| | | | | Instead of creating a separate `multi_window::Program`, the new `multi_window::Application` unifies both traits
* Introduce `multi_window` in `iced_winit`Libravatar Richard2023-01-095-1/+959
|
* Introduce `multi_window` from `pure`Libravatar Richard2023-01-094-0/+205
|
* Merge pull request #1550 from bungoboingo/feat/multidirectional-scrollingLibravatar Héctor Ramón2023-01-0912-521/+1043
|\ | | | | [Feature] Multidirectional scrolling
| * Avoid dragging scroll area when touching scrollbars for `Scrollable`Libravatar Héctor Ramón Jiménez2023-01-081-1/+4
| |
| * Remove `PartialOrd` implementation for `Rectangle`Libravatar Héctor Ramón Jiménez2023-01-082-7/+3
| | | | | | | | | | A `PartialOrd` implementation is unclear for this type, since it has a position besides its dimensions.
| * Enable horizontal scrolling with `Shift+MouseWheel`Libravatar Héctor Ramón Jiménez2023-01-081-1/+17
| |
| * Add some missing `spacing` to `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-01-081-0/+2
| |
| * Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-086-69/+75
| |
| * Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-299-691/+618
| | | | | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
| * Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-2912-563/+1135
| |
* | Merge pull request #1565 from bungoboingo/feat/tracingLibravatar Héctor Ramón2023-01-0917-24/+276
|\ \ | | | | | | [Feature] Profiling
| * | Add newline at EOF to `.gitignore`Libravatar Héctor Ramón Jiménez2023-01-091-1/+1
| | |
| * | Restructured everything to make profiling a feature of iced_winit.Libravatar bungoboingo2023-01-0923-251/+181
| | |
| * | Initial profiling support for Iced.Libravatar Bingus2023-01-0920-35/+357
|/ /
* | Merge pull request #1639 from iced-rs/fix/limits-clampLibravatar Héctor Ramón2023-01-051-7/+9
|\ \ | | | | | | Stop using `f32::clamp` altogether in `layout::Limits`
| * | Stop using `f32::clamp` altogether in `layout::Limits`Libravatar Héctor Ramón Jiménez2023-01-051-7/+9
| | |
* | | Merge pull request #1633 from pop-os/standardize-checkbox-functionsLibravatar Héctor Ramón2023-01-052-3/+3
|\ \ \ | | | | | | | | use same name & order for checkbox::new and helper