summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #68 from hecrj/feature/application-settingsLibravatar Héctor Ramón2019-11-254-10/+56
|\ | | | | Allow `Application` configuration with `Settings`
| * Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-254-10/+56
| |
* | Update debug view GIF in `README`Libravatar Héctor Ramón Jiménez2019-11-251-1/+1
|/
* Merge pull request #66 from hecrj/feature/new-web-tourLibravatar Héctor Ramón2019-11-242-6/+16
|\ | | | | Make `tour` work with `iced_web` again
| * Spawn `Command` futures in `iced_web`Libravatar Héctor Ramón Jiménez2019-11-242-2/+2
| |
| * Make `tour` work with `iced_web` again :tada:Libravatar Héctor Ramón Jiménez2019-11-231-4/+14
| | | | | | | | | | - Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation
* | Fix `examples` link in documentationLibravatar Héctor Ramón Jiménez2019-11-231-1/+1
|/
* Write docs for `iced` and `iced_native`Libravatar Héctor Ramón Jiménez2019-11-224-6/+480
|
* Implement `iced::Sandbox` trait for simple appsLibravatar Héctor Ramón Jiménez2019-11-213-68/+118
|
* Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez2019-11-213-15/+53
| | | | Also made fields private and improved `Renderer` traits.
* Support async actions in `iced_winit`Libravatar Héctor Ramón Jiménez2019-11-172-9/+17
|
* Draft `Font` type and implement `Text::font`Libravatar Héctor Ramón Jiménez2019-11-131-1/+2
|
* Implement `Container` widgetLibravatar Héctor Ramón Jiménez2019-11-111-2/+2
| | | | Remove `align_self` and `justify_content` methods
* Allow applications to control the window titleLibravatar Héctor Ramón Jiménez2019-11-091-0/+6
| | | | `iced_winit` will change the window title dynamically at runtime!
* Implement debug view and load system fontsLibravatar Héctor Ramón Jiménez2019-11-031-1/+1
|
* Draft `TextInput` widget structureLibravatar Héctor Ramón Jiménez2019-10-301-2/+3
| | | | Also started a `todos` example to showcase it!
* Draft `Scrollable` widget (no clipping yet!)Libravatar Héctor Ramón Jiménez2019-10-251-2/+2
|
* Connect `iced_web` with `iced` properlyLibravatar Héctor Ramón Jiménez2019-10-233-10/+38
|
* Move `winit` logic from `iced` to `iced_winit`Libravatar Héctor Ramón Jiménez2019-10-091-105/+17
| | | | | | | | | | - Added new `renderer::Windowed` trait. This shoud allow users to easily try different renderers by simply changing one line. - Renamed `UserInterface` traits to `Application`, as the `run` method takes total control of the current thread. - Moved `MouseCursor` back to `iced_native`. The new `renderer::Windowed` trait returns one on `draw`. - Split `iced_native` renderer in multiple modules, for consistency.
* Make `iced_core::Button` customizableLibravatar Héctor Ramón Jiménez2019-10-081-1/+2
| | | | | | | Now it supports: - Any kind of content - Custom border radius - Custom background
* Initialize renderer primitive properlyLibravatar Héctor Ramón Jiménez2019-10-071-2/+8
|
* Use `log` crate instead of `dbg!`Libravatar Héctor Ramón Jiménez2019-10-071-4/+0
|
* Draft basic text rendering using `wgpu_glyph`Libravatar Héctor Ramón Jiménez2019-10-051-8/+26
|
* Add `Renderer` and `Primitive` conceptsLibravatar Héctor Ramón Jiménez2019-10-051-6/+4
|
* Count redraws and add a couple of TODOsLibravatar Héctor Ramón Jiménez2019-10-041-5/+16
|
* Draft UI event loopLibravatar Héctor Ramón Jiménez2019-10-031-2/+39
|
* Clear the window properly on redrawLibravatar Héctor Ramón Jiménez2019-10-031-2/+14
|
* Initialize `wgpu`Libravatar Héctor Ramón Jiménez2019-10-031-0/+2
| | | | We only enable the `vulkan` feature for now.
* Open a window using `winit`Libravatar Héctor Ramón Jiménez2019-10-031-2/+29
|
* Start `iced_winit` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-10-031-0/+23
|
* Create `iced_core` and `iced_native`Libravatar Héctor Ramón Jiménez2019-09-2033-4117/+0
|
* Remove generic `Color` in widgetsLibravatar Héctor Ramón Jiménez2019-09-196-105/+73
|
* Unify `web` and `ggez` tour examples :tada:Libravatar Héctor Ramón Jiménez2019-09-1913-18/+42
|
* Draft nodes for missing widgetsLibravatar Héctor Ramón Jiménez2019-09-154-12/+24
|
* Draft widget nodes and wire interactionLibravatar Héctor Ramón Jiménez2019-09-152-4/+8
|
* Rethink workspace structureLibravatar Héctor Ramón Jiménez2019-09-1432-0/+4109
|
* Switch to workspace layoutLibravatar Héctor Ramón Jiménez2019-09-1032-4109/+0
|
* Fix link in `Image` docsLibravatar Héctor Ramón Jiménez2019-09-051-1/+1
|
* Ask users to share use casesLibravatar Héctor Ramón Jiménez2019-09-056-3/+31
|
* Improve tour exampleLibravatar Héctor Ramón Jiménez2019-09-0412-48/+93
|
* Fix docs for `image`Libravatar Héctor Ramón Jiménez2019-09-032-15/+15
|
* Fix docs for `progress_bar`Libravatar Héctor Ramón Jiménez2019-09-031-19/+16
|
* Apply latest changes to `Image` and `ProgressBar`Libravatar Héctor Ramón Jiménez2019-09-033-10/+10
|
* Merge branch 'image_and_progress-bar'Libravatar Héctor Ramón Jiménez2019-09-033-0/+248
|\
| * Fix `Image` and `ProgressBar` doc examplesLibravatar Héctor Ramón Jiménez2019-09-032-29/+17
| |
| * migrated Image and ProgressBar widgetsLibravatar debris2019-08-223-0/+260
| |
* | Improve wording in `UserInterface::build` (2)Libravatar Héctor Ramón Jiménez2019-09-031-1/+1
| |
* | Improve wording in `UserInterface::build`Libravatar Héctor Ramón Jiménez2019-09-031-1/+1
| |
* | Remove `Default` constraint for checkbox `Color`Libravatar Héctor Ramón Jiménez2019-09-021-1/+1
| |
* | Add conversion for `MouseButton` in `winit`Libravatar Héctor Ramón Jiménez2019-09-023-180/+184
| |