summaryrefslogtreecommitdiffstats
path: root/native/src/program (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-181-4/+13
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-14/+3
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-3/+4
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-4/+3
|
* Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-101-2/+2
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-18/+2
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Batch event processing in `UserInterface::update`Libravatar Héctor Ramón Jiménez2020-11-121-9/+8
|
* Return `event::Status` in `UserInterface::update`Libravatar Héctor Ramón Jiménez2020-11-121-8/+12
|
* Finish wiring overlays to `UserInterface`Libravatar Héctor Ramón Jiménez2020-07-081-1/+3
|
* Draft `Widget::overlay` idempotencyLibravatar Héctor Ramón Jiménez2020-07-081-2/+2
|
* Decouple `cursor_position` from `Cache`Libravatar Héctor Ramón Jiménez2020-06-231-5/+8
| | | | | | 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.
* Request a redraw only on relevant eventsLibravatar Héctor Ramón Jiménez2020-06-091-4/+7
|
* Write documentation for new `iced_native` APILibravatar Héctor Ramón Jiménez2020-05-281-0/+31
|
* Introduce `Program` and `State`Libravatar Héctor Ramón Jiménez2020-05-211-0/+154