summaryrefslogtreecommitdiffstats
path: root/native/src/window (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-04-12add action set icon while running (#1590)Libravatar Night_Hunter2-1/+100
* set windows icon live action * change get icon to insto raw * remove mobile docs * format * fix format * add file methods to Icon * Rename action to `ChangeIcon` and tidy up `Icon` modules * Fix documentation of `icon::Error` * Remove unnecessary `\` in `icon` documentation * Remove `etc.` from `Icon` documentation --------- Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
2023-03-14Added simpler MW exampleLibravatar Bingus1-0/+2
2023-03-05Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez1-147/+0
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez5-131/+2
2023-02-28Removed glutin MW support and reverted glutin changes back to Iced master ↵Libravatar bungoboingo1-3/+1
since it's being axed as we speak.
2023-02-17add action to get window idLibravatar Night_Hunter1-0/+4
2023-02-17Rename `SetAlwaysOnTop` to `ChangeAlwaysOnTop`Libravatar Héctor Ramón Jiménez1-8/+14
2023-02-17update docs and change to SetAlwaysOnTopLibravatar Night_Hunter1-4/+4
2023-02-17add always on top actionLibravatar Night_Hunter1-0/+10
2023-02-15Merged in iced masterLibravatar Bingus1-2/+2
2023-01-31Write missing `window::Action` helpers in `window`Libravatar Héctor Ramón Jiménez1-1/+1
2023-01-31Improve consistency of `window::Action`Libravatar Héctor Ramón Jiménez1-8/+9
2023-01-27Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck1-6/+5
2023-01-12Use `instant` instead of `wasm-timer` in `iced_core`Libravatar Héctor Ramón Jiménez2-2/+3
2023-01-12Use `instant` to fix Wasm targetLibravatar Héctor Ramón Jiménez2-2/+2
2023-01-12Replace `Option<Instant>` with `RedrawRequest` enumLibravatar Héctor Ramón Jiménez1-0/+38
2023-01-12Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez1-0/+6
... and implement `TextInput` cursor blink :tada:
2023-01-09Implemented window title update functionality for multiwindow.Libravatar bungoboingo3-9/+18
2023-01-09introduce `window::spawn` and `window::close`Libravatar Richard1-3/+12
2023-01-09move window settings to `iced_native`Libravatar Richard3-0/+86
2023-01-09add `window::Id` to `Event` and `Action`Libravatar Richard1-0/+3
2023-01-09Allow closing the window from user codeLibravatar Richard1-1/+1
2023-01-09what is thisLibravatar Richard1-1/+1
2023-01-09Introduce opaque `window::Id` typeLibravatar Richard1-0/+16
2023-01-02Rename `FocusWindow` to `GainFocus` in `window::Action`Libravatar Héctor Ramón Jiménez1-3/+3
2023-01-02Add `FocusWindow` to `window::Action`Libravatar Night_Hunter1-0/+13
2023-01-02Add `RequestUserAttention` to `window::Action`Libravatar Night_Hunter2-5/+46
2022-12-15Implement `window::close` action and remove `should_exit`Libravatar Héctor Ramón Jiménez1-0/+4
2022-12-13Remove mention of iOS and Android in `window::action`Libravatar Héctor Ramón1-1/+1
2022-12-10add toggle decorations actionLibravatar Night_Hunter1-0/+7
2022-10-11feat: Add window minimize supportLibravatar Michael Aaron Murphy1-0/+4
2022-10-11feat: Add window maximize supportLibravatar Michael Aaron Murphy1-0/+8
2022-10-11feat: Add window drag support from winitLibravatar Michael Aaron Murphy1-0/+8
Exposes access to the winit window's window_drag method as an action.
2022-09-15Document that `window::Action::Move` is unsupported on WaylandLibravatar Ian Douglas Scott1-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).
2022-08-18Implement `SetMode` and `FetchMode` window actionsLibravatar Héctor Ramón Jiménez2-2/+57
2022-08-17Fix latest `clippy` lintsLibravatar Héctor Ramón Jiménez1-1/+1
2021-09-02Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2-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!)
2021-07-26Add window::Event::MovedLibravatar Cory Forsstrom1-0/+8
2021-03-30Add `CloseRequested` variant to `window::Event`Libravatar Héctor Ramón Jiménez1-0/+6
2021-01-15Split `window::Event::Focused` into two variantsLibravatar Héctor Ramón Jiménez1-4/+7
2021-01-15add focus eventLibravatar cossonleo1-0/+3
2020-05-20Refactor `Viewport` and `Compositor`Libravatar Héctor Ramón Jiménez1-60/+0
2020-05-19Rename `window::Backend` to `Compositor`Libravatar Héctor Ramón Jiménez1-2/+2
2020-05-19Draft first working version of `iced_glow` :tada:Libravatar Héctor Ramón Jiménez1-3/+8
2020-04-30Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez1-2/+2
2020-02-09Remove `scale_factor` from `iced_wgpu::Viewport`Libravatar Héctor Ramón Jiménez1-1/+1
2020-02-09Remove unused `window::renderer` moduleLibravatar Héctor Ramón Jiménez1-55/+0
2020-02-09Allow `iced_wgpu` to render to any `TextureView`Libravatar Héctor Ramón Jiménez2-38/+90
2020-02-07Increase precision of `scale_factor` in `Windowed`Libravatar Héctor Ramón Jiménez1-2/+2
2020-02-07Update `winit` to `0.20`Libravatar Héctor Ramón Jiménez1-6/+6