summaryrefslogtreecommitdiffstats
path: root/native/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #138 from hecrj/feature/empty-widgetLibravatar Héctor Ramón2019-12-313-0/+113
|\ | | | | `Space` widget
| * Rename `Empty` widget to `Space`Libravatar Héctor Ramón Jiménez2019-12-302-32/+33
| |
| * Implement `Empty` widgetLibravatar Héctor Ramón Jiménez2019-12-302-0/+106
| | | | | | | | It can be useful if you want to fill some space with nothing.
| * Implement `Default` for `MouseCursor`Libravatar Héctor Ramón Jiménez2019-12-301-0/+6
| |
* | Merge pull request #137 from hecrj/feature/fill-portionLibravatar Héctor Ramón2019-12-311-2/+2
|\ \ | | | | | | Add `Length::FillPortion` variant
| * | Add `Length::FillPortion` variantLibravatar Héctor Ramón Jiménez2019-12-301-2/+2
| |/ | | | | | | | | It allows to specify the amount of available space an element should take relative to other elements.
* / Subtract size of previous elements in flex layoutLibravatar Héctor Ramón Jiménez2019-12-301-5/+9
|/
* 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
| | |