Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add `Application::Executor` associated type | 2020-01-20 | 1 | -7/+11 | |
| | |||||
* | Create `iced_futures` and wire everything up | 2020-01-19 | 1 | -39/+18 | |
| | |||||
* | Merge pull request #162 from hecrj/feature/window-file-events | 2020-01-16 | 1 | -13/+25 | |
|\ | | | | | Window file events | ||||
| * | Produce new window file events in `iced_winit` | 2020-01-16 | 1 | -10/+21 | |
| | | |||||
| * | Add file events to `iced_native::window::Event` | 2020-01-16 | 1 | -3/+4 | |
| | | |||||
* | | Expose `window::Mode` in `iced` | 2020-01-16 | 1 | -3/+3 | |
| | | | | | | | | | | Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side. | ||||
* | | Add `Application::mode` to `iced_winit` | 2020-01-16 | 1 | -1/+30 | |
|/ | |||||
* | Make layout bounds explicit in `UserInterface` | 2020-01-10 | 1 | -35/+39 | |
| | |||||
* | Move `Debugger` and `Windowed` to a better location | 2020-01-10 | 1 | -4/+4 | |
| | | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`. | ||||
* | Produce `window::Event::Resized` in `iced_winit` | 2020-01-10 | 1 | -4/+7 | |
| | |||||
* | Remove `background` from `Settings` | 2020-01-05 | 1 | -6/+2 | |
| | |||||
* | Allow configuration of default font | 2020-01-01 | 1 | -3/+5 | |
| | |||||
* | Draft basic styling for `Container` | 2019-12-31 | 1 | -2/+2 | |
| | |||||
* | Rename `Settings::background_color` to `background` | 2019-12-29 | 1 | -1/+1 | |
| | |||||
* | Add `background_color` to `Settings` | 2019-12-29 | 1 | -2/+6 | |
| | |||||
* | Allow clipboard access in `Widget::on_event` | 2019-12-18 | 1 | -4/+10 | |
| | |||||
* | Write docs for subscriptions and reorganize a bit | 2019-12-14 | 1 | -106/+18 | |
| | |||||
* | Make `iced_native` subscription input opaque | 2019-12-14 | 1 | -1/+1 | |
| | |||||
* | Remove unnecessary event loop proxy `Mutex` | 2019-12-14 | 1 | -6/+1 | |
| | | | | I am not sure why I had to use it in the first place... | ||||
* | Consume `Recipe` when building a `Stream` | 2019-12-14 | 1 | -0/+1 | |
| | |||||
* | Implement `Subscription::map` and `from_recipe` | 2019-12-10 | 1 | -6/+14 | |
| | |||||
* | Allow listening to runtime events in subscriptions | 2019-12-08 | 1 | -7/+41 | |
| | |||||
* | Merge branch 'master' into feature/event-subscriptions | 2019-12-08 | 1 | -0/+2 | |
|\ | |||||
| * | Add `ModifiersState` to `keyboard::Event::Input` | 2019-12-06 | 1 | -0/+2 | |
| | | |||||
* | | Use `oneshot` and `future::select` to cancel streams | 2019-12-07 | 1 | -26/+24 | |
| | | |||||
* | | Draft first version of event subscriptions :tada: | 2019-12-05 | 1 | -2/+77 | |
|/ | |||||
* | Merge pull request #94 from hatoo/improve-setting | 2019-12-03 | 1 | -11/+25 | |
|\ | | | | | Improve window setting | ||||
| * | Refactor window creation in `iced_winit` | 2019-12-03 | 1 | -19/+11 | |
| | | |||||
| * | Add platform specific settings | 2019-11-30 | 1 | -0/+21 | |
| | | |||||
| * | Add `decorations` to Setting | 2019-11-30 | 1 | -0/+1 | |
| | | |||||
* | | Process events only when necessary | 2019-11-28 | 1 | -6/+12 | |
|/ | | | | | Additionally, this also fixes a bug where the old size was being used for layouting after a resize. | ||||
* | Allow `Application` configuration with `Settings` | 2019-11-25 | 1 | -5/+7 | |
| | |||||
* | Stop emitting private use characters on macOS | 2019-11-24 | 1 | -1/+14 | |
| | |||||
* | Write docs for `iced_winit` | 2019-11-22 | 1 | -2/+55 | |
| | |||||
* | Support async actions in `iced_winit` | 2019-11-17 | 1 | -14/+52 | |
| | |||||
* | Split text measurements cache from rendering cache | 2019-11-11 | 1 | -3/+3 | |
| | | | | | This speeds up layouting in the most common scenario considerably! :tada: | ||||
* | Implement `Container` widget | 2019-11-11 | 1 | -5/+5 | |
| | | | | Remove `align_self` and `justify_content` methods | ||||
* | Allow applications to control the window title | 2019-11-09 | 1 | -0/+13 | |
| | | | | `iced_winit` will change the window title dynamically at runtime! | ||||
* | Apply HiDPI to text, images, and clip primitives | 2019-11-05 | 1 | -41/+33 | |
| | | | | | Quads are a bit trickier to handle. We may need to change the shaders a bit. | ||||
* | Implement debug view and load system fonts | 2019-11-03 | 1 | -10/+50 | |
| | |||||
* | Draft `Metrics` and improve `Target` abstraction | 2019-11-02 | 1 | -5/+13 | |
| | |||||
* | Handle some `TextInput` events | 2019-10-30 | 1 | -2/+23 | |
| | |||||
* | Handle touchpad scroll events | 2019-10-29 | 1 | -2/+21 | |
| | |||||
* | Provide `Renderer` to `Widget::on_event` | 2019-10-29 | 1 | -1/+2 | |
| | | | | | This allows us to implement configurable event processing that adapts to different rendering strategies. | ||||
* | Draft `Scrollable` widget (no clipping yet!) | 2019-10-25 | 1 | -0/+11 | |
| | |||||
* | Set initial window size to 1280x1024 for now | 2019-10-23 | 1 | -0/+4 | |
| | | | | This will be configurable when calling `Application::run` in the future. | ||||
* | Make `Renderer` immutable in `UserInterface::build` | 2019-10-11 | 1 | -3/+3 | |
| | |||||
* | Rename `Renderer::Primitive` to `Renderer::Output` | 2019-10-11 | 1 | -1/+1 | |
| | |||||
* | Handle window resizes in `iced_winit` | 2019-10-11 | 1 | -10/+38 | |
| | |||||
* | Update mouse cursor icon properly in `iced_winit` | 2019-10-10 | 1 | -2/+11 | |
| |