summaryrefslogtreecommitdiffstats
path: root/examples/integration/src/controls.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-3/+8
|
* Add `step` member to slider widgetsLibravatar Sebastian Zivota2020-06-111-15/+24
| | | | | | 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.
* 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
* Simplify `integration` example with `Program`Libravatar Héctor Ramón Jiménez2020-05-211-40/+37
|
* remove explicit lifetimes in integration exampleLibravatar Kai Mast2020-03-271-4/+1
|
* Add `integration` exampleLibravatar Héctor Ramón Jiménez2020-02-091-0/+102
It showcases how to integrate iced in an existing graphical application.