summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| * Stop using Travis CILibravatar Héctor Ramón Jiménez2019-12-192-16/+1
| |
| * Use latest `window_clipboard` changesLibravatar Héctor Ramón Jiménez2019-12-193-6/+1
| |
| * Implement clipboard pasting in `TextInput`Libravatar Héctor Ramón Jiménez2019-12-181-19/+88
| |
| * Add xcb libraries to Travis CILibravatar Héctor Ramón Jiménez2019-12-181-1/+1
| |
| * Allow clipboard access in `Widget::on_event`Libravatar Héctor Ramón Jiménez2019-12-1820-26/+89
| |
* | Merge pull request #131 from hecrj/fix/web-subscription-missingLibravatar Héctor Ramón2019-12-196-4/+59
|\ \ | | | | | | Fix `Subscription` missing in `iced_web`
| * | Fix `web::Hasher` doc commentLibravatar Héctor Ramón Jiménez2019-12-191-1/+1
| | |
| * | Check `iced` builds when targetting Wasm in CILibravatar Héctor Ramón Jiménez2019-12-181-1/+12
| | |
| * | Fix missing `Subscription` type in `iced_web`Libravatar Héctor Ramón Jiménez2019-12-185-3/+47
| |/
* | Merge pull request #130 from hecrj/fix/resize-measure-cacheLibravatar Héctor Ramón2019-12-191-5/+17
|\ \ | | | | | | Resize text measure cache to avoid panic
| * | Resize text measure cache to avoid panicLibravatar Héctor Ramón Jiménez2019-12-181-5/+17
| |/ | | | | | | | | | | | | This should not be really necessary, as we are not really drawing anything with the measure brush... But we are using `glyph_brush` in an unconventional way, so that may be the cause. We need to redesign `wgpu_glyph` or come up with an alternative.
* | Merge pull request #128 from Gohla/fix_unnecessary_boundLibravatar Héctor Ramón2019-12-181-1/+1
|\ \ | | | | | | Remove unnecessary bound in iced_web Container
| * | Fix unnecessary bound in web.Libravatar Gabriel Konat2019-12-181-1/+1
| |/
* | Merge pull request #127 from Gohla/web_stylingLibravatar Héctor Ramón2019-12-185-7/+26
|\ \ | |/ |/| Add several missing style attributes in iced_web
| * Add several missing style attributes in iced_web.Libravatar Gabriel Konat2019-12-185-7/+26
|/
* Merge pull request #122 from hecrj/feature/event-subscriptionsLibravatar Héctor Ramón2019-12-1620-39/+726
|\ | | | | Event subscriptions
| * Port `todos` to `async_std`Libravatar Héctor Ramón Jiménez2019-12-141-11/+16
| |
| * Fix `Widget::width` for `Checkbox`Libravatar Héctor Ramón Jiménez2019-12-141-1/+1
| |
| * Log broadcast error as an error instead of a warningLibravatar 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-1412-123/+225
| |
| * Make `iced_native` subscription input opaqueLibravatar Héctor Ramón Jiménez2019-12-144-28/+36
| |
| * Move native events subscription to `iced_native`Libravatar Héctor Ramón Jiménez2019-12-142-35/+32
| |
| * Remove unnecessary clone in `subscription::Map`Libravatar Héctor Ramón Jiménez2019-12-141-1/+1
| |
| * Hash `Duration` of `time::Every` in `stopwatch`Libravatar Héctor Ramón Jiménez2019-12-141-0/+1
| |