summaryrefslogtreecommitdiffstats
path: root/src/window (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-283-21/+0
|
* Improve `window::Position` APILibravatar Héctor Ramón Jiménez2021-07-212-10/+37
|
* Remove DPI from docs in `window::Settings::position`Libravatar Héctor Ramón Jiménez2021-07-211-16/+5
|
* doneLibravatar TimUntersberger2021-06-251-1/+16
|
* wipLibravatar TimUntersberger2021-06-251-0/+7
|
* Run cargo fmtLibravatar Dispersia2021-04-121-8/+10
|
* use Mode::Hidden insteadLibravatar Cory Forsstrom2021-04-091-0/+3
|
* Fix DimensionsMismatch error messageLibravatar sum-elier2020-11-011-1/+1
| | | | | | The values passed to write! were shifted 1 to the left. Fixes #591
* Fixes #539: Allow windows to be set always_on_topLibravatar Tom2020-09-281-1/+6
|
* Add 'transparent' in window settingLibravatar Katherine Philip2020-08-171-0/+5
|
* Move `Icon` to `iced` crate and introduce `Error`Libravatar Héctor Ramón Jiménez2020-07-012-4/+138
|
* Add support for setting window iconLibravatar Francesco Pasa2020-07-011-1/+6
| | | | | | This adds a new property from Settings::window::iconand a Icon struct which can be converted to winit::window::Icon. It also adds code to display this icon in Application::run. Due to the fact that the Icon struct is non copyable, I also had to remove the Copy trait from all Settings, both in `iced` and `iced_winit`.
* Add `min_size` and `max_size` to `window::Settings`Libravatar Héctor Ramón Jiménez2020-06-251-1/+23
|
* Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-162-0/+31
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.