gtk4/subclass/
window_group.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3// rustdoc-stripper-ignore-next
4//! Traits intended for subclassing [`WindowGroup`].
5
6use crate::{prelude::*, subclass::prelude::*, WindowGroup};
7
8pub trait WindowGroupImpl: ObjectImpl + ObjectSubclass<Type: IsA<WindowGroup>> {}
9
10unsafe impl<T: WindowGroupImpl> IsSubclassable<T> for WindowGroup {}