summaryrefslogtreecommitdiffstats
path: root/src/window (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-091-1/+1
|
* Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-4/+5
| | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* Introduce `window::Level` enumLibravatar Héctor Ramón Jiménez2023-05-251-5/+5
| | | | ... and add `level` field to `window::Settings`
* Enable `doc_auto_cfg` when generating documentationLibravatar Héctor Ramón Jiménez2023-05-111-3/+0
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-171-159/+50
|\
| * add action set icon while running (#1590)Libravatar Night_Hunter2023-04-121-159/+50
|/ | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Re-export `settings::PlatformSpecific` from `iced_winit` directlyLibravatar Héctor Ramón Jiménez2023-03-143-42/+3
|
* Added macOS platform specific optionsLibravatar Casper Storm2023-03-143-1/+46
|
* Remove logging large bytes arraysLibravatar Cory Forsstrom2023-02-231-1/+7
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-9/+6
|
* Merge pull request #1174 from daladim/icon_from_fileLibravatar Héctor Ramón2022-09-231-0/+57
|\ | | | | Added convenience functions for window::icon::Icon
| * Added convenience functions for window::icon::IconLibravatar daladim2022-03-011-0/+57
| |
* | Remove `window::Mode` and introduce `Settings::visible`Libravatar Héctor Ramón Jiménez2022-08-182-12/+5
|/ | | | Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows.
* 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.