Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename `iced_native` to `iced_runtime` | 2023-03-05 | 1 | -147/+0 | |
| | |||||
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -2/+2 | |
| | |||||
* | 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 | |
| | |||||
* | 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 | |
| | |||||
* | 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 | 1 | -5/+25 | |
| | |||||
* | 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 | 1 | -2/+45 | |
| | |||||
* | Make `Command` implementations platform-specific | 2021-09-02 | 1 | -0/+18 | |
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!) |