Commit graph

47 commits

Author SHA1 Message Date
Nathan Henrie
a88bf0fed7 Fix path to ferris.png
Fixes https://github.com/iced-rs/iced/issues/1156
2021-12-11 16:51:54 -07:00
Héctor Ramón Jiménez
e6627bb96d
Fix formatting with cargo fmt 2021-11-10 16:35:13 +07:00
Ram.Type-0
0245f289b2 Remove unnecessary String allocation
Remove unnecessary String allocation by passing &format! or &x.to_string as impl Into<String>
2021-11-02 00:05:25 +09:00
Héctor Ramón Jiménez
a0ad399622
Refactor alignment types into an alignment module 2021-09-20 15:14:08 +07:00
Héctor Ramón
d3d6f3efb3 Add some horizontal padding to toggler section in tour example 2021-06-03 20:35:26 +07:00
Kaiden42
be3ee9adf1 Add Toggler to tour example 2021-06-03 20:21:55 +07:00
Héctor Ramón Jiménez
f41eacc3dc Use f32 for border_width and border_radius 2020-11-23 00:31:50 +01:00
Héctor Ramón Jiménez
860de97b42 Update env_logger in tour and integration examples 2020-11-10 19:12:28 +01:00
Héctor Ramón Jiménez
d7a5e54455 Require Clone for Message early when needed
Prior to this change, the widgets that needed a `Clone` bound on `Message` to
implement the `Widget` trait could be created with a non-cloneable `Message`.

As a consequence, the compiler complained only when actually trying to use the
`Widget` trait. Normally, this happens when trying to `push` the widget in a
container or turn it into an `Element`.

Furthermore, the compiler error in this case does not mention `Message` nor the
`Clone` bound, but instead complains about a missing `From` implementation.
Thus, it can easily cause confusion!

This change introduces `Clone` bounds in the main implementation of the
widgets that need it to properly implement the `Widget` trait. As a
result, the compiler complains early when trying to create one of these widgets
with a non-cloneable `Message` and explicitly mentions that the `Message` needs
to implement `Clone`.
2020-10-17 08:10:30 +02:00
Héctor Ramón Jiménez
c1f79b40cf Make Application and Sandbox return a Result 2020-09-08 00:44:59 +02:00
Héctor Ramón Jiménez
4aed3ede92 Use generic Slider in tour example 2020-06-13 14:34:39 +02:00
Sebastian Zivota
c3643eaf6d Add step member to slider widgets
Both the native and the web slider now have a member `step` to control
the least possible change of the slider's value. It defaults to 1.0
for all sliders and can be adjusted with the step method.
2020-06-11 00:18:24 +02:00
Héctor Ramón Jiménez
e11b5c614f Revert "Target physical pixels for quads in iced_glow"
This reverts commit 45511a442f.
2020-05-28 22:57:30 +02:00
Héctor Ramón Jiménez
6de0a2c371 Use Sandbox in tour example 2020-05-28 22:50:40 +02:00
Héctor Ramón Jiménez
45511a442f Target physical pixels for quads in iced_glow 2020-05-27 23:17:21 +02:00
Héctor Ramón Jiménez
e0e4ee73fe Implement iced_glutin 🎉 2020-05-21 00:44:35 +02:00
Héctor Ramón Jiménez
4aed0fa4b6 Rename window::Backend to Compositor 2020-05-19 20:01:55 +02:00
Héctor Ramón Jiménez
d4743183d4 Draft first working version of iced_glow 🎉 2020-05-19 14:23:28 +02:00
Héctor Ramón Jiménez
3c47e3e229 Simplify Language conversion in tour 2020-04-06 20:12:16 +02:00
Dmitry Kashitsyn
1a9bfd9e73
Radiobutton label is now impl Into<String> 2020-04-05 12:43:18 +07:00
Héctor Ramón Jiménez
679d758627 Remove wasm_bindgen(start) from tour example 2020-02-06 05:23:05 +01:00
Héctor Ramón Jiménez
bc611cf51c Make image support optional in iced_wgpu
This reduces binary size when image rendering is not necessary a
considerable amount.
2020-01-20 11:19:42 +01:00
Héctor Ramón Jiménez
e2ec092aec Add README for tour example 2020-01-20 06:40:20 +01:00
Héctor Ramón Jiménez
7cea737115 Package examples and remove dev-dependencies 2020-01-20 06:27:01 +01:00
Héctor Ramón Jiménez
5286ef36b6 Make tour a simple example instead of a crate 2019-10-06 20:06:13 +02:00
Héctor Ramón Jiménez
ae56edc8cc Center tour example 2019-10-05 19:02:16 +02:00
Héctor Ramón Jiménez
957beeebf9 Merge branch 'master' into basic-renderer 2019-10-05 05:42:15 +02:00
Héctor Ramón Jiménez
e82e96e6ad Update welcome step of tour example 2019-10-05 05:32:56 +02:00
Héctor Ramón Jiménez
ef498eb1af Add some padding to the tour example 2019-10-05 05:17:59 +02:00
Héctor Ramón Jiménez
e1b9d42bf1 Start iced_winit and iced_wgpu 2019-10-03 00:01:45 +02:00
Héctor Ramón Jiménez
0a93be78b8 Merge branch 'master' into web 2019-09-21 13:51:03 +02:00
Héctor Ramón Jiménez
05889ecea8 Add wasm-pack link 2019-09-21 13:42:58 +02:00
Héctor Ramón Jiménez
86dede4c4c Make example work on web and update READMEs 2019-09-21 13:38:14 +02:00
Héctor Ramón Jiménez
b9e0f74948 Create iced_core and iced_native 2019-09-20 19:15:31 +02:00
Héctor Ramón Jiménez
b83a4b42dd Remove generic Color in widgets 2019-09-19 19:00:42 +02:00
Héctor Ramón Jiménez
f9de39ddaa Unify web and ggez tour examples 🎉 2019-09-19 15:01:12 +02:00
Héctor Ramón Jiménez
7bfcf4c0bc Remove extern crate and log dependency 2019-09-16 14:04:33 +02:00
Héctor Ramón Jiménez
a97401aed2 Rethink workspace structure 2019-09-14 19:16:06 +02:00
tgotwig
87007c7e32 Add log and env_logger
Relates #7
2019-09-14 14:10:28 +02:00
Héctor Ramón Jiménez
8b8f7563ad Switch to workspace layout 2019-09-10 19:41:49 +02:00
Héctor Ramón Jiménez
e6f9b5a16e Set cursor type only when necessary in tour 2019-09-05 21:17:23 +02:00
Héctor Ramón Jiménez
3838203dff Apply padding to root in tour example 2019-09-05 15:19:37 +02:00
Héctor Ramón Jiménez
9fb48137b0 Add a bit of padding to the tour example 2019-09-05 15:17:11 +02:00
Héctor Ramón Jiménez
247b27f4ca Allow tour window to be resized 2019-09-05 14:55:48 +02:00
Héctor Ramón Jiménez
3fb06f6666 Fix tour README links 2019-09-05 09:38:37 +02:00
Héctor Ramón Jiménez
b81ab91e67 Complete examples README 2019-09-05 09:37:54 +02:00
Héctor Ramón Jiménez
ced3ffc225 Move ggez example to tour 2019-09-05 07:23:03 +02:00