mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 15:13:13 -04:00
Add Window::set_theme (#2553)
* Add `Window::set_theme`
* typo
* fix linux build
* fix wayland
* review changes
* update docs
* update changelog
* pin `image` dep
* suppport falling back to system default
* fix linux
* default to dark on macOS and x11
* fix `setAppearance` definition
* add macOS notes
* update docs
* Update CHANGELOG.md
Co-authored-by: Markus Siglreithmaier <m.siglreith@gmail.com>
* update doc
* Revert "pin `image` dep"
This reverts commit 7517f7c506.
* Update theme example with Window::set_theme
* Fix Window::theme getter on macOS
Co-authored-by: Markus Siglreithmaier <m.siglreith@gmail.com>
Co-authored-by: Mads Marquart <mads@marquart.dk>
This commit is contained in:
@@ -100,8 +100,6 @@ pub struct PlatformSpecificWindowBuilderAttributes {
|
||||
pub override_redirect: bool,
|
||||
#[cfg(feature = "x11")]
|
||||
pub x11_window_types: Vec<XWindowType>,
|
||||
#[cfg(feature = "x11")]
|
||||
pub gtk_theme_variant: Option<String>,
|
||||
}
|
||||
|
||||
impl Default for PlatformSpecificWindowBuilderAttributes {
|
||||
@@ -120,8 +118,6 @@ impl Default for PlatformSpecificWindowBuilderAttributes {
|
||||
override_redirect: false,
|
||||
#[cfg(feature = "x11")]
|
||||
x11_window_types: vec![XWindowType::Normal],
|
||||
#[cfg(feature = "x11")]
|
||||
gtk_theme_variant: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -585,6 +581,11 @@ impl Window {
|
||||
x11_or_wayland!(match self; Window(window) => window.raw_display_handle())
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn set_theme(&self, theme: Option<Theme>) {
|
||||
x11_or_wayland!(match self; Window(window) => window.set_theme(theme))
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn theme(&self) -> Option<Theme> {
|
||||
x11_or_wayland!(match self; Window(window) => window.theme())
|
||||
|
||||
Reference in New Issue
Block a user