summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2020-01-0520-9/+818
|\
| * Merge pull request #141 from Songtronix/songtronix/progressbar-widgetLibravatar Héctor Ramón2020-01-0411-6/+308
| |\ | | | | | | Progress bar widget
| | * Expose `ProgressBar` in `iced` crateLibravatar Héctor Ramón Jiménez2020-01-042-3/+2
| | |
| | * 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-032-19/+22
| | | | | | | | | | | | Also fixes some minor documentation issues.
| | * add(web): support password fieldLibravatar Songtronix2020-01-031-0/+14
| | |
| | * change(widget): make height adjustable at widget levelLibravatar Songtronix2020-01-025-59/+61
| | | | | | | | | | | | addtionally rename Progressbar to ProgressBar
| | * change(widget): custom coloring for progressbarLibravatar Songtronix2020-01-023-15/+64
| | |
| | * add(widget): primitive progressbar widgetLibravatar Songtronix2020-01-029-5/+239
| | |
| * | Merge pull request #140 from artursapek/artur/canvasLibravatar Héctor Ramón2020-01-039-2/+512
| |\ \ | | |/ | |/| Mesh2D primitive for rendering arbitrary geometry in `iced_wgpu`
| | * Remove empty `geometry` file in `iced_native`Libravatar Héctor Ramón Jiménez2020-01-021-0/+0
| | |
| | * Rename `Geometry2D` to `Mesh2D` and move it to `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-01-0212-198/+184
| | |
| | * Implement Geometry2D primitiveLibravatar Artur Sapek2020-01-0113-4/+528
| |/
* | Fix styling in `button::Renderer` implementationLibravatar Héctor Ramón Jiménez2020-01-051-27/+37
| |
* | Implement `Default` for `text_input::Style`Libravatar Héctor Ramón Jiménez2020-01-051-0/+11
| |
* | Implement `Default` for `container::Style`Libravatar Héctor Ramón Jiménez2020-01-052-1/+13
| |
* | Add border and shadow styling to `Button`Libravatar Héctor Ramón Jiménez2020-01-058-32/+58
| |
* | Add border styling to `Container`Libravatar Héctor Ramón Jiménez2020-01-052-18/+23
| |
* | Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-055-34/+9
| |
* | Draft basic styling for `TextInput`Libravatar Héctor Ramón Jiménez2020-01-0110-36/+143
| |
* | Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-018-14/+39
| |
* | Move styling to a brand new `iced_style` crateLibravatar Héctor Ramón Jiménez2020-01-0110-121/+154
| |
* | Add `border_width` and `border_color` to `Quad`Libravatar Héctor Ramón Jiménez2019-12-3117-128/+180
| |
* | 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-3115-12/+225
|\|
| * Merge pull request #138 from hecrj/feature/empty-widgetLibravatar Héctor Ramón2019-12-3110-3/+202
| |\ | | | | | | `Space` widget
| | * Rename `Empty` widget to `Space`Libravatar Héctor Ramón Jiménez2019-12-308-67/+67
| | |
| | * Implement `Empty` widgetLibravatar Héctor Ramón Jiménez2019-12-308-4/+191
| | | | | | | | | | | | It can be useful if you want to fill some space with nothing.
| | * Implement `Default` for `iced_wgpu::Primitive`Libravatar Héctor Ramón Jiménez2019-12-301-0/+6
| | |
| | * 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-314-4/+14
| |\ \ | | | | | | | | Add `Length::FillPortion` variant
| | * | Add `Length::FillPortion` variantLibravatar Héctor Ramón Jiménez2019-12-304-4/+14
| | |/ | | | | | | | | | | | | 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-316-11/+126
| |
* | Add `Renderer::Defaults` and style inheritanceLibravatar Héctor Ramón Jiménez2019-12-3032-150/+224
| |
* | Rename `Settings::background_color` to `background`Libravatar Héctor Ramón Jiménez2019-12-293-6/+6
| |
* | Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-296-14/+55
| |
* | Draft `Style` and `StyleSheet` for `Button`Libravatar Héctor Ramón Jiménez2019-12-2915-114/+275
|/
* Use crates version of `surf` as a dev dependencyLibravatar Héctor Ramón Jiménez2019-12-281-1/+1
|
* Fix `Command::batch` documentationLibravatar Héctor Ramón Jiménez2019-12-281-1/+1
|
* Use personal fork of `winit` until `0.20` landsLibravatar Héctor Ramón Jiménez2019-12-241-1/+1
| | | | Fixes #135
* Merge pull request #134 from hecrj/fix/invisible-svg-panicLibravatar Héctor Ramón2019-12-211-0/+4
|\ | | | | Avoid rasterizing SVG when a dimension is 0
| * Avoid rasterizing SVG when a dimension is 0Libravatar Héctor Ramón Jiménez2019-12-211-0/+4
|/
* 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-213-27/+95
|
* Implement `Command::map`Libravatar Héctor Ramón Jiménez2019-12-191-0/+25
|
* Merge pull request #132 from hecrj/feature/read-clipboardLibravatar Héctor Ramón2019-12-1920-60/+172
|\ | | | | Clipboard access