summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant depth bias fields in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-271-3/+0
|
* Update `wgpu` in `integration` exampleLibravatar Héctor Ramón Jiménez2020-08-272-38/+56
|
* Update styling exampleLibravatar Kaiden422020-08-251-28/+19
| | | | Also run `cargo fmt`
* added FillMode enum style for the Rule widgetLibravatar Billy Messenger2020-08-221-1/+1
|
* widget Rule addedLibravatar Billy Messenger2020-08-221-5/+30
|
* Add `Keyboard` variant to `canvas::Event`Libravatar Héctor Ramón Jiménez2020-08-102-0/+2
|
* Improve `Menu` API to facilitate external controlLibravatar Héctor Ramón Jiménez2020-07-232-2/+2
|
* Update `README` of examplesLibravatar Héctor Ramón Jiménez2020-07-162-6/+7
|
* Simplify `pick_list` exampleLibravatar Héctor Ramón Jiménez2020-07-101-12/+4
|
* Style `PickList` in `game_of_life` exampleLibravatar Héctor Ramón Jiménez2020-07-103-16/+75
|
* Add `Preset` selector to `game_of_life` exampleLibravatar Héctor Ramón Jiménez2020-07-102-12/+209
|
* Rename `ComboBox` to `PickList`Libravatar Héctor Ramón Jiménez2020-07-103-10/+8
|
* Remove unnecessary lifetime in `Widget` traitLibravatar Héctor Ramón Jiménez2020-07-102-2/+2
|
* Merge branch 'master' into feature/overlayLibravatar Héctor Ramón Jiménez2020-07-102-12/+35
|\
| * Update `pane_grid` GIFsLibravatar Héctor Ramón Jiménez2020-07-091-2/+2
| |
| * Simplify style of `pane_grid` exampleLibravatar Héctor Ramón Jiménez2020-07-091-7/+6
| |
| * Add a `TitleBar` to `pane_grid` exampleLibravatar Héctor Ramón Jiménez2020-07-091-11/+35
| |
| * Merge branch 'master' into feature/pane-grid-titlebarLibravatar Héctor Ramón Jiménez2020-07-085-73/+115
| |\
| * \ Merge branch 'intuitive-pane-grid-resize' into feature/pane-grid-titlebarLibravatar Héctor Ramón Jiménez2020-06-084-59/+44
| |\ \
| * | | Draft first-class `TitleBar` in `pane_grid`Libravatar Héctor Ramón Jiménez2020-06-041-1/+1
| | | |
* | | | Position `Menu` layer based on available spaceLibravatar Héctor Ramón Jiménez2020-07-081-4/+0
| | | |
* | | | Implement `Widget::overlay` for `Scrollable`Libravatar Héctor Ramón Jiménez2020-07-081-4/+10
| | | |
* | | | Draft `ComboBox` and `Menu` layerLibravatar Héctor Ramón Jiménez2020-07-081-120/+76
| | | |
* | | | Draft `combo_box` example to test overlay logicLibravatar Héctor Ramón Jiménez2020-07-083-0/+192
| | | |
* | | | Introduce `Widget::overlay` :tada:Libravatar Héctor Ramón Jiménez2020-07-083-4/+4
| |_|/ |/| |
* | | Decouple `cursor_position` from `Cache`Libravatar Héctor Ramón Jiménez2020-06-231-3/+12
| | | | | | | | | | | | | | | | | | Instead, we ask explicitly for it in the different `update` and `draw` methods. This way, the runtime can derive the logical position of the cursor from the source of truth.
* | | Increase precision in `color_palette` exampleLibravatar Héctor Ramón Jiménez2020-06-131-16/+22
| | |
* | | Reduce slider `step` in `progress_bar` exampleLibravatar Héctor Ramón Jiménez2020-06-131-6/+9
| | |
* | | Use generic `Slider` in `tour` exampleLibravatar Héctor Ramón Jiménez2020-06-131-40/+37
| | |
* | | Add `step` member to slider widgetsLibravatar Sebastian Zivota2020-06-113-27/+51
| | | | | | | | | | | | | | | | | | Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method.
* | | Request a redraw only on relevant eventsLibravatar Héctor Ramón Jiménez2020-06-091-9/+12
| |/ |/|
* | Add `leeway` support to `PaneGrid::on_resize`Libravatar Héctor Ramón Jiménez2020-06-081-1/+1
| |
* | Add on_release message to Slider (#378)Libravatar Duncan Freeman2020-06-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | * Add on_finish callback to Slider * Fix formatting * Rename Slider's on_finish to on_release, make the message simply an event without data * Satisfy Clone impl requirement on Message in integration test * Only call on_release after dragging a slider
* | Removed empty bind group from integration example (#390)Libravatar Richard2020-06-081-24/+5
| |
* | Clear frames explicitly in `integration` exampleLibravatar Héctor Ramón Jiménez2020-06-052-56/+37
| |
* | Add a comment of how to clear the display to `integration` exampleLibravatar hatoo2020-06-031-0/+23
|/
* Attempt to appease rustfmtLibravatar Cedric Hutchings2020-06-021-1/+1
|
* Prevent gratuitous resizing in integration exampleLibravatar Cedric Hutchings2020-06-021-0/+2
| | | If I didn't miss anything, that `resized` variable is never set back to `false`, meaning that swapchain recreation is retriggered every frame after the first resize.
* Revert "Target physical pixels for quads in `iced_glow`"Libravatar Héctor Ramón Jiménez2020-05-281-2/+2
| | | | This reverts commit 45511a442f707e93fe6e568d2100756b63af7362.
* Use `Sandbox` in `tour` exampleLibravatar Héctor Ramón Jiménez2020-05-281-22/+14
|
* Target physical pixels for quads in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-271-2/+2
|
* Simplify `integration` example with `Program`Libravatar Héctor Ramón Jiménez2020-05-213-116/+67
|
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-217-44/+47
|
* Refactor `Viewport` and `Compositor`Libravatar Héctor Ramón Jiménez2020-05-201-22/+35
|
* Rename `window::Backend` to `Compositor`Libravatar Héctor Ramón Jiménez2020-05-191-1/+1
|
* Draft new `iced_graphics` crate :tada:Libravatar Héctor Ramón Jiménez2020-05-191-3/+4
|
* Draft first working version of `iced_glow` :tada:Libravatar Héctor Ramón Jiménez2020-05-192-27/+44
|
* Update `README` of `game_of_life` exampleLibravatar Héctor Ramón Jiménez2020-05-042-2/+26
|
* Adapt `color_palette` to new `canvas` APILibravatar Héctor Ramón Jiménez2020-05-041-21/+27
|
* Merge branch 'master' into feature/canvas-interactionLibravatar Héctor Ramón Jiménez2020-05-045-0/+470
|\