summaryrefslogtreecommitdiffstats
path: root/native (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement styling for `Slider`Libravatar Héctor Ramón Jiménez2020-01-072-10/+47
|
* Implement styling for `Scrollable`Libravatar Héctor Ramón Jiménez2020-01-062-5/+22
|
* Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2020-01-053-1/+179
|\
| * Hash `height` of `ProgressBar` in `hash_layout`Libravatar Héctor Ramón Jiménez2020-01-031-0/+1
| |
| * Move `DEFAULT_HEIGHT` constant to `Renderer`Libravatar Héctor Ramón Jiménez2020-01-031-19/+20
| | | | | | | | Also fixes some minor documentation issues.
| * change(widget): make height adjustable at widget levelLibravatar Songtronix2020-01-022-45/+50
| | | | | | | | addtionally rename Progressbar to ProgressBar
| * change(widget): custom coloring for progressbarLibravatar Songtronix2020-01-021-5/+36
| |
| * add(widget): primitive progressbar widgetLibravatar Songtronix2020-01-023-1/+140
| |
* | Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-2/+1
| |
* | Draft basic styling for `TextInput`Libravatar Héctor Ramón Jiménez2020-01-013-9/+29
| |
* | Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-011-1/+3
| |
* | Fix `Widget::draw` for `Space` widgetLibravatar Héctor Ramón Jiménez2019-12-311-0/+1
| |
* | Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2019-12-315-7/+124
|\|
| * 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
| |/
* | Draft basic styling for `Container`Libravatar Héctor Ramón Jiménez2019-12-311-9/+39
| |
* | 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-165-3/+82
|\ | | | | 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-083-3/+12
| |
| * Merge branch 'master' into feature/event-subscriptionsLibravatar Héctor Ramón Jiménez2019-12-087-34/+289
| |\
| * | Draft first version of event subscriptions :tada:Libravatar Héctor Ramón Jiménez2019-12-053-5/+16
| | |
* | | 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-092-2/+24
| |/ |/|
* | Update native `CHANGELOG`Libravatar Héctor Ramón Jiménez2019-12-081-0/+2
| |
* | 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
| |