chore(wayland): window state handling

This commit is contained in:
Ashley Wulber 2025-09-25 15:39:14 -04:00
parent e73bbddbca
commit bc85d82426
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
4 changed files with 18 additions and 1 deletions

View file

@ -1,8 +1,12 @@
#![allow(missing_docs)]
use cctk::sctk::reexports::csd_frame::WindowState;
/// window events
#[derive(Debug, PartialEq, Clone)]
pub enum WindowEvent {
/// Window suggested bounds.
SuggestedBounds(Option<crate::Size>),
/// Window state
WindowState(WindowState),
}