summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add default padding to `Button`Libravatar Héctor Ramón Jiménez2020-01-221-0/+2
|
* Make `image` support optional in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-01-201-1/+3
| | | | | This reduces binary size when image rendering is not necessary a considerable amount.
* Move `Debugger` and `Windowed` to a better locationLibravatar Héctor Ramón Jiménez2020-01-101-1/+2
| | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`.
* Fix drawing empty `Quad` on empty `ProgressBar`Libravatar Héctor Ramón Jiménez2020-01-081-13/+17
|
* Allow `Checkbox` style to change based on its stateLibravatar Héctor Ramón Jiménez2020-01-081-2/+2
|
* Always show scroller if scrollbar is visibleLibravatar Héctor Ramón Jiménez2020-01-071-35/+38
|
* Implement styling for `Checkbox`Libravatar Héctor Ramón Jiménez2020-01-071-15/+16
|
* Implement styling for `Radio`Libravatar Héctor Ramón Jiménez2020-01-071-12/+14
|
* Implement styling for `ProgressBar`Libravatar Héctor Ramón Jiménez2020-01-071-14/+13
|
* Implement styling for `Slider`Libravatar Héctor Ramón Jiménez2020-01-071-21/+36
|
* Implement styling for `Scrollable`Libravatar Héctor Ramón Jiménez2020-01-061-12/+21
|
* Draft `styling` exampleLibravatar Héctor Ramón Jiménez2020-01-061-1/+0
|
* Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2020-01-052-0/+52
|\
| * Move `DEFAULT_HEIGHT` constant to `Renderer`Libravatar Héctor Ramón Jiménez2020-01-031-0/+2
| | | | | | | | Also fixes some minor documentation issues.
| * change(widget): make height adjustable at widget levelLibravatar Songtronix2020-01-022-7/+3
| | | | | | | | addtionally rename Progressbar to ProgressBar
| * change(widget): custom coloring for progressbarLibravatar Songtronix2020-01-021-3/+9
| |
| * add(widget): primitive progressbar widgetLibravatar Songtronix2020-01-022-0/+44
| |
* | Fix styling in `button::Renderer` implementationLibravatar Héctor Ramón Jiménez2020-01-051-27/+37
| |
* | Add border and shadow styling to `Button`Libravatar Héctor Ramón Jiménez2020-01-051-4/+4
| |
* | Add border styling to `Container`Libravatar Héctor Ramón Jiménez2020-01-051-18/+19
| |
* | Draft basic styling for `TextInput`Libravatar Héctor Ramón Jiménez2020-01-011-13/+19
| |
* | Add `border_width` and `border_color` to `Quad`Libravatar Héctor Ramón Jiménez2019-12-317-110/+91
| |
* | Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2019-12-312-0/+9
|\|
| * Rename `Empty` widget to `Space`Libravatar Héctor Ramón Jiménez2019-12-302-3/+3
| |
| * Implement `Empty` widgetLibravatar Héctor Ramón Jiménez2019-12-302-0/+9
| | | | | | | | It can be useful if you want to fill some space with nothing.
* | Draft basic styling for `Container`Libravatar Héctor Ramón Jiménez2019-12-312-0/+47
| |
* | Add `Renderer::Defaults` and style inheritanceLibravatar Héctor Ramón Jiménez2019-12-305-9/+28
| |
* | Draft `Style` and `StyleSheet` for `Button`Libravatar Héctor Ramón Jiménez2019-12-292-14/+15
|/
* Fix cursor positioning in `TextInput` on overflowLibravatar Héctor Ramón Jiménez2019-12-211-10/+47
|
* Put `svg` rendering behind a feature gateLibravatar Héctor Ramón Jiménez2019-12-151-1/+3
| | | | This reduces binary size when SVG supoprt is not needed.
* Rerasterize SVGs when resized and refactor a bitLibravatar Héctor Ramón Jiménez2019-12-152-0/+23
|
* Merged svg pipeline into imageLibravatar Malte Veerman2019-12-122-16/+0
|
* Ran cargo_fmt over changed files.Libravatar Malte Veerman2019-12-111-9/+3
|
* Added an `Icon` widget to native.Libravatar Malte Veerman2019-12-112-0/+22
|
* Place `TextInput` cursor position on clickLibravatar Héctor Ramón Jiménez2019-12-051-16/+21
|
* Implemented `From<Color` for `Background`Libravatar Malte Veerman2019-12-041-2/+2
|
* Merge branch 'master' into feature/image-from-bytesLibravatar Héctor Ramón Jiménez2019-12-042-57/+65
|\
| * Merge pull request #95 from Friz64/scrolling-behaviourLibravatar Héctor Ramón2019-12-041-56/+64
| |\ | | | | | | Make scrolling behave like you'd expect it to
| | * Unify logic by introducing `scrollable::Scrollbar`Libravatar Héctor Ramón Jiménez2019-12-031-49/+61
| | |
| | * Address suggestionsLibravatar Friz642019-12-021-73/+29
| | |
| | * Finalize workLibravatar Friz642019-12-021-14/+18
| | |
| | * First implementationLibravatar Friz642019-12-021-24/+60
| | |
| * | Fix `TextInput` inner border radius in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-12-031-1/+1
| |/
* / Allow to load an image from memoryLibravatar Héctor Ramón Jiménez2019-11-291-4/+8
|/ | | | | New `image::Handle` opaque type uniquely identifying some `image::Data`, allowing reliable caching.
* Fix `iced_native` widget examplesLibravatar Héctor Ramón Jiménez2019-11-241-3/+3
|
* Write docs for `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-221-4/+6
|
* Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez2019-11-2110-251/+129
| | | | Also made fields private and improved `Renderer` traits.
* Draw proper checkmark for `Checkbox` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-141-8/+9
|
* Remove default styling of `Button`Libravatar Héctor Ramón Jiménez2019-11-131-22/+23
| | | | | - A background will only show if explicitly set. - `iced_wgpu` won't apply a `min_width` of 100 units anymore.
* Draft `Font` type and implement `Text::font`Libravatar Héctor Ramón Jiménez2019-11-132-20/+12
|