Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Increase precision in `color_palette` example | 2020-06-13 | 1 | -16/+22 | |
| | |||||
* | Reduce slider `step` in `progress_bar` example | 2020-06-13 | 1 | -6/+9 | |
| | |||||
* | Use generic `Slider` in `tour` example | 2020-06-13 | 1 | -40/+37 | |
| | |||||
* | Add `step` member to slider widgets | 2020-06-11 | 3 | -27/+51 | |
| | | | | | | 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. | ||||
* | Request a redraw only on relevant events | 2020-06-09 | 1 | -9/+12 | |
| | |||||
* | Add `leeway` support to `PaneGrid::on_resize` | 2020-06-08 | 1 | -1/+1 | |
| | |||||
* | Add on_release message to Slider (#378) | 2020-06-08 | 1 | -1/+1 | |
| | | | | | | | | | | | * Add on_finish callback to Slider * Fix formatting * Rename Slider's on_finish to on_release, make the message simply an event without data * Satisfy Clone impl requirement on Message in integration test * Only call on_release after dragging a slider | ||||
* | Removed empty bind group from integration example (#390) | 2020-06-08 | 1 | -24/+5 | |
| | |||||
* | Clear frames explicitly in `integration` example | 2020-06-05 | 2 | -56/+37 | |
| | |||||
* | Add a comment of how to clear the display to `integration` example | 2020-06-03 | 1 | -0/+23 | |
| | |||||
* | Attempt to appease rustfmt | 2020-06-02 | 1 | -1/+1 | |
| | |||||
* | Prevent gratuitous resizing in integration example | 2020-06-02 | 1 | -0/+2 | |
| | | | If I didn't miss anything, that `resized` variable is never set back to `false`, meaning that swapchain recreation is retriggered every frame after the first resize. | ||||
* | Revert "Target physical pixels for quads in `iced_glow`" | 2020-05-28 | 1 | -2/+2 | |
| | | | | This reverts commit 45511a442f707e93fe6e568d2100756b63af7362. | ||||
* | Use `Sandbox` in `tour` example | 2020-05-28 | 1 | -22/+14 | |
| | |||||
* | Target physical pixels for quads in `iced_glow` | 2020-05-27 | 1 | -2/+2 | |
| | |||||
* | Simplify `integration` example with `Program` | 2020-05-21 | 3 | -116/+67 | |
| | |||||
* | Implement `iced_glutin` :tada: | 2020-05-21 | 7 | -44/+47 | |
| | |||||
* | Refactor `Viewport` and `Compositor` | 2020-05-20 | 1 | -22/+35 | |
| | |||||
* | Rename `window::Backend` to `Compositor` | 2020-05-19 | 1 | -1/+1 | |
| | |||||
* | Draft new `iced_graphics` crate :tada: | 2020-05-19 | 1 | -3/+4 | |
| | |||||
* | Draft first working version of `iced_glow` :tada: | 2020-05-19 | 2 | -27/+44 | |
| | |||||
* | Update `README` of `game_of_life` example | 2020-05-04 | 2 | -2/+26 | |
| | |||||
* | Adapt `color_palette` to new `canvas` API | 2020-05-04 | 1 | -21/+27 | |
| | |||||
* | Merge branch 'master' into feature/canvas-interaction | 2020-05-04 | 5 | -0/+470 | |
|\ | |||||
| * | Use only `iced` dependency for `color_palette` | 2020-05-04 | 2 | -6/+3 | |
| | | | | | | | | `Point` and `Size` are now properly re-exported. | ||||
| * | Add screenshot to `README` of `color_palette` | 2020-05-04 | 1 | -1/+7 | |
| | | |||||
| * | Add screenshot of `color_palette` example | 2020-05-04 | 2 | -1/+1 | |
| | | |||||
| * | Mention `color_palette` in examples `README` | 2020-05-04 | 1 | -0/+1 | |
| | | |||||
| * | Reuse triangle path with transforms in `color_palette` | 2020-05-01 | 1 | -43/+28 | |
| | | |||||
| * | Use `Path::rectangle` directly in `color_palette` | 2020-05-01 | 1 | -6/+3 | |
| | | |||||
| * | Move application implementation in `color_palette` | 2020-05-01 | 1 | -206/+206 | |
| | | |||||
| * | Introduce `Theme` type in `color_palette` example | 2020-05-01 | 1 | -103/+88 | |
| | | |||||
| * | Improve `generate_theme` in `color_palette` | 2020-05-01 | 1 | -27/+15 | |
| | | |||||
| * | Remove `update_component` in `color_palette` | 2020-05-01 | 1 | -92/+4 | |
| | | | | | | | | We can use `ColorSpace::new` instead | ||||
| * | Abstract into ColorPicker and ColorSpace trait | 2020-04-27 | 1 | -312/+323 | |
| | | | | | | | | | | | | | | Each color type implements ColorSpace to define its own representation and update methods. View sliders are implemented on the ColorPicker struct. | ||||
| * | Use Path::rectangle and Size for drawing swatches | 2020-04-24 | 1 | -42/+21 | |
| | | |||||
| * | Replace text input fields for simple text | 2020-04-24 | 1 | -75/+20 | |
| | | |||||
| * | Do not re-export Palette from iced_core | 2020-04-24 | 2 | -4/+2 | |
| | | |||||
| * | Hex label text alignment | 2020-04-24 | 1 | -4/+6 | |
| | | |||||
| * | TextInput fields with color encodings. Draw shades. | 2020-04-24 | 1 | -21/+266 | |
| | | |||||
| * | More theme colors and gradient of lightness | 2020-04-24 | 1 | -9/+67 | |
| | | |||||
| * | Use canvas to draw color palette for example | 2020-04-24 | 2 | -10/+98 | |
| | | |||||
| * | Add example program: color palette | 2020-04-24 | 3 | -0/+273 | |
| | | | | | | | | | | | | | | | | | | | | | | Sliders for many color spaces update as any other sliders are moved around. Color is space is clamped to sRGB, so Lab and Lch color spaces cannot be fully expressed. TODO: - Real-time manipulation of base color to create a color scheme. - Show slider value under each slider - Show output values in text boxes for each color space | ||||
* | | Update GIF of `game_of_life` example | 2020-05-03 | 1 | -2/+2 | |
| | | |||||
* | | Allow erasing cells in `game_of_life` | 2020-05-03 | 1 | -5/+30 | |
| | | |||||
* | | Fix "1 cells" overlay in `game_of_life` | 2020-05-03 | 1 | -3/+6 | |
| | | |||||
* | | Render stats as an overlay in `game_of_life` | 2020-05-03 | 1 | -82/+103 | |
| | | | | | | | | Also allow toggling the grid lines | ||||
* | | Draw grid in `game_of_life` | 2020-05-03 | 1 | -18/+73 | |
| | | |||||
* | | Reorganize `view` code in `game_of_life` | 2020-05-03 | 1 | -71/+102 | |
| | | |||||
* | | Simplify logic and limit ticks in `game_of_life` | 2020-05-02 | 1 | -73/+33 | |
| | |