Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed glutin MW support and reverted glutin changes back to Iced master ↵ | 2023-02-28 | 1 | -3/+1 | |
| | | | | since it's being axed as we speak. | ||||
* | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-02-17 | 1 | -4/+24 | |
|\ | | | | | | | | | # Conflicts: # winit/src/window.rs | ||||
| * | add action to get window id | 2023-02-17 | 1 | -0/+4 | |
| | | |||||
| * | Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop` | 2023-02-17 | 1 | -8/+14 | |
| | | |||||
| * | update docs and change to SetAlwaysOnTop | 2023-02-17 | 1 | -4/+4 | |
| | | |||||
| * | add always on top action | 2023-02-17 | 1 | -0/+10 | |
| | | |||||
* | | Merged in iced master | 2023-02-15 | 1 | -2/+2 | |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-02-15 | 1 | -17/+17 | |
|\| | | | | | | | | | | | | | # Conflicts: # native/src/command/action.rs # native/src/window/action.rs # winit/src/window.rs | ||||
| * | Write missing `window::Action` helpers in `window` | 2023-01-31 | 1 | -1/+1 | |
| | | |||||
| * | Improve consistency of `window::Action` | 2023-01-31 | 1 | -8/+9 | |
| | | |||||
| * | Fix: Clippy lint 'uninlined_format_args' | 2023-01-27 | 1 | -6/+5 | |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into feat/multi-window-support | 2023-01-18 | 2 | -0/+45 | |
|\| | | | | | | | | | | | | | | | # Conflicts: # examples/events/src/main.rs # glutin/src/application.rs # native/src/window.rs # winit/src/window.rs | ||||
| * | Use `instant` instead of `wasm-timer` in `iced_core` | 2023-01-12 | 2 | -2/+3 | |
| | | |||||
| * | Use `instant` to fix Wasm target | 2023-01-12 | 2 | -2/+2 | |
| | | |||||
| * | Replace `Option<Instant>` with `RedrawRequest` enum | 2023-01-12 | 1 | -0/+38 | |
| | | |||||
| * | Draft `Shell:request_redraw` API | 2023-01-12 | 1 | -0/+6 | |
| | | | | | | | | ... and implement `TextInput` cursor blink :tada: | ||||
* | | Implemented window title update functionality for multiwindow. | 2023-01-09 | 3 | -9/+18 | |
| | | |||||
* | | introduce `window::spawn` and `window::close` | 2023-01-09 | 1 | -3/+12 | |
| | | |||||
* | | move window settings to `iced_native` | 2023-01-09 | 3 | -0/+86 | |
| | | |||||
* | | add `window::Id` to `Event` and `Action` | 2023-01-09 | 1 | -0/+3 | |
| | | |||||
* | | Allow closing the window from user code | 2023-01-09 | 1 | -1/+1 | |
| | | |||||
* | | what is this | 2023-01-09 | 1 | -1/+1 | |
| | | |||||
* | | Introduce opaque `window::Id` type | 2023-01-09 | 1 | -0/+16 | |
|/ | |||||
* | Rename `FocusWindow` to `GainFocus` in `window::Action` | 2023-01-02 | 1 | -3/+3 | |
| | |||||
* | Add `FocusWindow` to `window::Action` | 2023-01-02 | 1 | -0/+13 | |
| | |||||
* | Add `RequestUserAttention` to `window::Action` | 2023-01-02 | 2 | -5/+46 | |
| | |||||
* | Implement `window::close` action and remove `should_exit` | 2022-12-15 | 1 | -0/+4 | |
| | |||||
* | Remove mention of iOS and Android in `window::action` | 2022-12-13 | 1 | -1/+1 | |
| | |||||
* | add toggle decorations action | 2022-12-10 | 1 | -0/+7 | |
| | |||||
* | feat: Add window minimize support | 2022-10-11 | 1 | -0/+4 | |
| | |||||
* | feat: Add window maximize support | 2022-10-11 | 1 | -0/+8 | |
| | |||||
* | feat: Add window drag support from winit | 2022-10-11 | 1 | -0/+8 | |
| | | | | Exposes access to the winit window's window_drag method as an action. | ||||
* | Document that `window::Action::Move` is unsupported on Wayland | 2022-09-15 | 1 | -0/+2 | |
| | | | | | | | | | https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_outer_position notes that this isn't supported on Wayland. Wayland by design doesn't allow applications to position windows arbitrarily. GTK4 in comparison removed `gtk_window_move()` (which naturally didn't work on Wayland). | ||||
* | Implement `SetMode` and `FetchMode` window actions | 2022-08-18 | 2 | -2/+57 | |
| | |||||
* | Fix latest `clippy` lints | 2022-08-17 | 1 | -1/+1 | |
| | |||||
* | Make `Command` implementations platform-specific | 2021-09-02 | 2 | -3/+20 | |
| | | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) | ||||
* | Add window::Event::Moved | 2021-07-26 | 1 | -0/+8 | |
| | |||||
* | Add `CloseRequested` variant to `window::Event` | 2021-03-30 | 1 | -0/+6 | |
| | |||||
* | Split `window::Event::Focused` into two variants | 2021-01-15 | 1 | -4/+7 | |
| | |||||
* | add focus event | 2021-01-15 | 1 | -0/+3 | |
| | |||||
* | Refactor `Viewport` and `Compositor` | 2020-05-20 | 1 | -60/+0 | |
| | |||||
* | Rename `window::Backend` to `Compositor` | 2020-05-19 | 1 | -2/+2 | |
| | |||||
* | Draft first working version of `iced_glow` :tada: | 2020-05-19 | 1 | -3/+8 | |
| | |||||
* | Rename `MouseCursor` to `mouse::Interaction` | 2020-04-30 | 1 | -2/+2 | |
| | |||||
* | Remove `scale_factor` from `iced_wgpu::Viewport` | 2020-02-09 | 1 | -1/+1 | |
| | |||||
* | Remove unused `window::renderer` module | 2020-02-09 | 1 | -55/+0 | |
| | |||||
* | Allow `iced_wgpu` to render to any `TextureView` | 2020-02-09 | 2 | -38/+90 | |
| | |||||
* | Increase precision of `scale_factor` in `Windowed` | 2020-02-07 | 1 | -2/+2 | |
| | |||||
* | Update `winit` to `0.20` | 2020-02-07 | 1 | -6/+6 | |
| | |||||
* | Produce new window file events in `iced_winit` | 2020-01-16 | 1 | -3/+3 | |
| |