summaryrefslogtreecommitdiffstats
path: root/src/settings.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-281-1/+0
|
* Add setting to try OpenGL ES firstLibravatar Richard2022-01-191-0/+12
|
* Fix a few doc linksLibravatar Imbris2021-11-171-0/+2
|
* Introduce explicit `id` field to `Settings`Libravatar Héctor Ramón Jiménez2021-08-111-2/+11
| | | | ... and use it to set the application id of the window on Unix systems, instead of relying on the title of the application.
* Introduce `text_multithreading` to `Settings`Libravatar Héctor Ramón Jiménez2021-07-221-5/+15
|
* Add support for graceful exits in `Application`Libravatar Héctor Ramón Jiménez2021-03-301-4/+11
| | | | | - `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-6/+4
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Move `Icon` to `iced` crate and introduce `Error`Libravatar Héctor Ramón Jiménez2020-07-011-1/+1
|
* Add support for setting window iconLibravatar Francesco Pasa2020-07-011-1/+1
| | | | | | 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-6/+1
|
* Make default text size configurable in `Settings`Libravatar Héctor Ramón Jiménez2020-06-191-3/+24
|
* Revert "Merge pull request #371 from myfreeweb/window-alpha"Libravatar Héctor Ramón Jiménez2020-06-011-26/+2
| | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6.
* Add custom window background/clear color (incl. transparency) support, fixes ↵Libravatar Greg V2020-06-011-2/+26
| | | | | | | | | | | | #272 wgpu would currently ignore the alpha: https://github.com/gfx-rs/wgpu/issues/687 glow (and naively patched wgpu) requires premultiplied alpha, so if you don't multiply the RGB by the A right now, the semi-transparent color would be wrong (too bright). winit with_transparent doesn't seem necessary.
* add helper for settings flags initLibravatar Rob Ede2020-04-061-0/+16
|
* Improve docs for `Sandbox` and `Application`Libravatar Héctor Ramón Jiménez2020-04-021-2/+4
|
* Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-3/+9
|
* Rename `Settings::use_antialiasing` to `antialiasing`Libravatar Héctor Ramón Jiménez2020-02-181-2/+2
|
* Rename `Settings::antialiasing` to `use_antialiasing`Libravatar Héctor Ramón Jiménez2020-02-151-1/+1
|
* Implement MSAA for `triangle` pipeline in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-02-151-0/+9
|
* Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-161-25/+3
| | | | | 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.
* Write missing docs and reenable deny statementsLibravatar Héctor Ramón Jiménez2020-01-091-10/+4
|
* Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-8/+0
|
* Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-011-0/+4
|
* Rename `Settings::background_color` to `background`Libravatar Héctor Ramón Jiménez2019-12-291-3/+3
|
* Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-291-1/+17
|
* Add `decorations` to `settings::Window`Libravatar Héctor Ramón Jiménez2019-12-031-4/+12
|
* Modify src/settings.rs to keep original APILibravatar hatoo2019-12-021-16/+4
|
* Remove platform-specific logic from icedLibravatar hatoo2019-12-011-0/+53
| | | | Make Window.platform_specific use iced_winit::settings::PlatformSpecific
* Add platform specific settingsLibravatar hatoo2019-11-301-48/+0
|
* Add `decorations` to SettingLibravatar hatoo2019-11-301-0/+5
|
* Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-251-0/+43