summaryrefslogtreecommitdiffstats
path: root/native/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `Renderer::Defaults` and style inheritanceLibravatar Héctor Ramón Jiménez2019-12-3018-70/+69
|
* Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-292-4/+6
|
* Draft `Style` and `StyleSheet` for `Button`Libravatar Héctor Ramón Jiménez2019-12-293-35/+25
|
* Fix sneaky bug with padding in flex layoutLibravatar Héctor Ramón Jiménez2019-12-211-6/+3
|
* Fix scroll percentage calculation in `Scrollable`Libravatar Héctor Ramón Jiménez2019-12-211-1/+2
|
* Fix sneaky overflow in `TextInput` when pastingLibravatar Héctor Ramón Jiménez2019-12-211-3/+16
|
* Move cursor position to start on left boundary clickLibravatar Héctor Ramón Jiménez2019-12-211-0/+2
|
* Fix cursor positioning in `TextInput` on overflowLibravatar Héctor Ramón Jiménez2019-12-212-17/+48
|
* Implement clipboard pasting in `TextInput`Libravatar Héctor Ramón Jiménez2019-12-181-19/+88
|
* Allow clipboard access in `Widget::on_event`Libravatar Héctor Ramón Jiménez2019-12-1814-19/+55
|
* Merge pull request #122 from hecrj/feature/event-subscriptionsLibravatar Héctor Ramón2019-12-164-2/+80
|\ | | | | Event subscriptions
| * Fix `Widget::width` for `Checkbox`Libravatar Héctor Ramón Jiménez2019-12-141-1/+1
| |
| * Write docs for subscriptions and reorganize a bitLibravatar Héctor Ramón Jiménez2019-12-142-3/+29
| |
| * Make `iced_native` subscription input opaqueLibravatar Héctor Ramón Jiménez2019-12-142-23/+31
| |
| * Move native events subscription to `iced_native`Libravatar Héctor Ramón Jiménez2019-12-141-0/+25
| |
| * Implement `Subscription::map` and `from_recipe`Libravatar Héctor Ramón Jiménez2019-12-101-3/+3
| |
| * Allow listening to runtime events in subscriptionsLibravatar Héctor Ramón Jiménez2019-12-082-3/+11
| |
| * Merge branch 'master' into feature/event-subscriptionsLibravatar Héctor Ramón Jiménez2019-12-085-34/+277
| |\
| * | Draft first version of event subscriptions :tada:Libravatar Héctor Ramón Jiménez2019-12-052-4/+15
| | |
* | | Update `Svg` documentationLibravatar Héctor Ramón Jiménez2019-12-151-2/+9
| | |
* | | Rerasterize SVGs when resized and refactor a bitLibravatar Héctor Ramón Jiménez2019-12-151-12/+89
| | |
* | | Renamed `Icon` widget to `Svg` and gave it separate width and height.Libravatar Malte Veerman2019-12-123-86/+106
| | | | | | | | | | | | The aspect ratio is now preserved like in the `Image` widget.
* | | Merged svg pipeline into imageLibravatar Malte Veerman2019-12-121-23/+6
| | |
* | | Ran cargo_fmt over changed files.Libravatar Malte Veerman2019-12-111-12/+9
| | |
* | | Added an `Icon` widget to native.Libravatar Malte Veerman2019-12-112-0/+106
| | |
* | | Add `Button::height` and `Button::min_height`Libravatar Héctor Ramón Jiménez2019-12-091-2/+23
| |/ |/|
* | Change `TextInput` word-jump modifier key on macOSLibravatar Héctor Ramón Jiménez2019-12-071-2/+14
| |
* | Implement `TextInput::password` for secure dataLibravatar Héctor Ramón Jiménez2019-12-071-11/+54
| |
* | Consider word bounds in `TextInput` cursor jumpsLibravatar Héctor Ramón Jiménez2019-12-061-42/+43
| |
* | Use `unicode-segmentation` for `text_input::Value`Libravatar Héctor Ramón Jiménez2019-12-061-18/+33
| |
* | Implement word movement in `TextInput`Libravatar Héctor Ramón Jiménez2019-12-061-7/+76
| |
* | Add `ModifiersState` to `keyboard::Event::Input`Libravatar Héctor Ramón Jiménez2019-12-064-2/+23
| |
* | Support `Home` and `End` keys for `TextInput`Libravatar Héctor Ramón Jiménez2019-12-051-0/+6
| |
* | Remove unnecessary use of `abs`Libravatar Héctor Ramón Jiménez2019-12-051-1/+1
| |
* | Place `TextInput` cursor position on clickLibravatar Héctor Ramón Jiménez2019-12-052-3/+79
|/
* Make `Button::background` genericLibravatar Héctor Ramón Jiménez2019-12-051-2/+2
|
* Update `Image::hash_layout` to hash new `Handle`Libravatar Héctor Ramón Jiménez2019-12-041-1/+7
|
* Merge branch 'master' into feature/image-from-bytesLibravatar Héctor Ramón Jiménez2019-12-044-55/+142
|\
| * Merge pull request #95 from Friz64/scrolling-behaviourLibravatar Héctor Ramón2019-12-042-55/+129
| |\ | | | | | | Make scrolling behave like you'd expect it to
| | * Correct documentation oversightLibravatar Friz642019-12-031-2/+5
| | |
| | * Unify logic by introducing `scrollable::Scrollbar`Libravatar Héctor Ramón Jiménez2019-12-032-122/+108
| | |
| | * Address suggestionsLibravatar Friz642019-12-023-58/+75
| | |
| | * Support null rendererLibravatar Friz642019-12-021-1/+11
| | |
| | * Move scrolling percentage logic to separate functionLibravatar Friz642019-12-021-10/+23
| | |
| | * Finalize workLibravatar Friz642019-12-021-28/+41
| | |
| | * First implementationLibravatar Friz642019-12-023-26/+58
| | |
| * | Added path to image hash so it updates when path changesLibravatar Nicholas Pienta2019-12-011-0/+1
| |/
| * Add `From` impls for `Length`, `Point`, and `Size`Libravatar Nikolai Vazquez2019-11-291-0/+12
| |
* | Rename `image::Handle::from_bytes` to `from_memory`Libravatar Héctor Ramón Jiménez2019-12-041-1/+4
| | | | | | | | | | Also, replace `image` example with a new `pokedex` example using the PokéAPI.
* | Fix typo in `image::Handle` docsLibravatar Héctor Ramón Jiménez2019-11-301-1/+1
| |