mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-17 23:14:23 +00:00
352 lines
10 KiB
Rust
352 lines
10 KiB
Rust
use crate::errors::{LayerShikaError, Result};
|
|
use crate::rendering::egl::context::EGLContext;
|
|
use crate::rendering::femtovg::popup_window::PopupWindow;
|
|
use layer_shika_domain::value_objects::popup_config::PopupConfig;
|
|
use layer_shika_domain::value_objects::popup_positioning_mode::PopupPositioningMode;
|
|
use layer_shika_domain::value_objects::popup_request::PopupRequest;
|
|
use log::info;
|
|
use slab::Slab;
|
|
use slint::{platform::femtovg_renderer::FemtoVGRenderer, PhysicalSize, WindowSize};
|
|
use smithay_client_toolkit::reexports::protocols_wlr::layer_shell::v1::client::zwlr_layer_surface_v1::ZwlrLayerSurfaceV1;
|
|
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
use wayland_client::{
|
|
backend::ObjectId,
|
|
protocol::{wl_compositor::WlCompositor, wl_display::WlDisplay, wl_seat::WlSeat},
|
|
Connection, Proxy, QueueHandle,
|
|
};
|
|
use wayland_protocols::wp::fractional_scale::v1::client::wp_fractional_scale_manager_v1::WpFractionalScaleManagerV1;
|
|
use wayland_protocols::wp::viewporter::client::wp_viewporter::WpViewporter;
|
|
use wayland_protocols::xdg::shell::client::xdg_wm_base::XdgWmBase;
|
|
|
|
use super::popup_surface::PopupSurface;
|
|
use super::surface_state::WindowState;
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub struct CreatePopupParams {
|
|
pub last_pointer_serial: u32,
|
|
pub reference_x: f32,
|
|
pub reference_y: f32,
|
|
pub width: f32,
|
|
pub height: f32,
|
|
pub positioning_mode: PopupPositioningMode,
|
|
}
|
|
|
|
pub struct PopupContext {
|
|
compositor: WlCompositor,
|
|
xdg_wm_base: Option<XdgWmBase>,
|
|
seat: WlSeat,
|
|
fractional_scale_manager: Option<WpFractionalScaleManagerV1>,
|
|
viewporter: Option<WpViewporter>,
|
|
display: WlDisplay,
|
|
}
|
|
|
|
impl PopupContext {
|
|
#[must_use]
|
|
pub fn new(
|
|
compositor: WlCompositor,
|
|
xdg_wm_base: Option<XdgWmBase>,
|
|
seat: WlSeat,
|
|
fractional_scale_manager: Option<WpFractionalScaleManagerV1>,
|
|
viewporter: Option<WpViewporter>,
|
|
display: WlDisplay,
|
|
_connection: Rc<Connection>,
|
|
) -> Self {
|
|
Self {
|
|
compositor,
|
|
xdg_wm_base,
|
|
seat,
|
|
fractional_scale_manager,
|
|
viewporter,
|
|
display,
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ActivePopup {
|
|
surface: PopupSurface,
|
|
window: Rc<PopupWindow>,
|
|
request: PopupRequest,
|
|
last_serial: u32,
|
|
}
|
|
|
|
impl Drop for ActivePopup {
|
|
fn drop(&mut self) {
|
|
info!("ActivePopup being dropped - cleaning up resources");
|
|
}
|
|
}
|
|
|
|
struct PendingPopup {
|
|
request: PopupRequest,
|
|
width: f32,
|
|
height: f32,
|
|
}
|
|
|
|
struct PopupManagerState {
|
|
popups: Slab<ActivePopup>,
|
|
scale_factor: f32,
|
|
output_size: PhysicalSize,
|
|
current_popup_key: Option<usize>,
|
|
pending_popup: Option<PendingPopup>,
|
|
}
|
|
|
|
impl PopupManagerState {
|
|
fn new(initial_scale_factor: f32) -> Self {
|
|
Self {
|
|
popups: Slab::new(),
|
|
scale_factor: initial_scale_factor,
|
|
output_size: PhysicalSize::new(0, 0),
|
|
current_popup_key: None,
|
|
pending_popup: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct PopupManager {
|
|
context: PopupContext,
|
|
state: RefCell<PopupManagerState>,
|
|
}
|
|
|
|
impl PopupManager {
|
|
#[must_use]
|
|
pub fn new(context: PopupContext, initial_scale_factor: f32) -> Self {
|
|
Self {
|
|
context,
|
|
state: RefCell::new(PopupManagerState::new(initial_scale_factor)),
|
|
}
|
|
}
|
|
|
|
pub fn set_pending_popup(&self, request: PopupRequest, width: f32, height: f32) {
|
|
self.state.borrow_mut().pending_popup = Some(PendingPopup {
|
|
request,
|
|
width,
|
|
height,
|
|
});
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn take_pending_popup(&self) -> Option<(PopupRequest, f32, f32)> {
|
|
self.state
|
|
.borrow_mut()
|
|
.pending_popup
|
|
.take()
|
|
.map(|p| (p.request, p.width, p.height))
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn scale_factor(&self) -> f32 {
|
|
self.state.borrow().scale_factor
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn output_size(&self) -> PhysicalSize {
|
|
self.state.borrow().output_size
|
|
}
|
|
|
|
pub fn update_scale_factor(&self, scale_factor: f32) {
|
|
self.state.borrow_mut().scale_factor = scale_factor;
|
|
}
|
|
|
|
pub fn update_output_size(&self, output_size: PhysicalSize) {
|
|
self.state.borrow_mut().output_size = output_size;
|
|
}
|
|
|
|
pub fn close_current_popup(&self) {
|
|
let key = self.state.borrow_mut().current_popup_key.take();
|
|
if let Some(key) = key {
|
|
self.destroy_popup(key);
|
|
}
|
|
}
|
|
|
|
#[must_use]
|
|
pub fn current_popup_key(&self) -> Option<usize> {
|
|
self.state.borrow().current_popup_key
|
|
}
|
|
|
|
pub fn create_popup(
|
|
self: &Rc<Self>,
|
|
queue_handle: &QueueHandle<WindowState>,
|
|
parent_layer_surface: &ZwlrLayerSurfaceV1,
|
|
params: CreatePopupParams,
|
|
request: PopupRequest,
|
|
) -> Result<Rc<PopupWindow>> {
|
|
let xdg_wm_base = self.context.xdg_wm_base.as_ref().ok_or_else(|| {
|
|
LayerShikaError::WindowConfiguration {
|
|
message: "xdg-shell not available for popups".into(),
|
|
}
|
|
})?;
|
|
|
|
let scale_factor = self.scale_factor();
|
|
info!(
|
|
"Creating popup window with scale factor {scale_factor}, reference=({}, {}), size=({} x {}), mode={:?}",
|
|
params.reference_x,
|
|
params.reference_y,
|
|
params.width,
|
|
params.height,
|
|
params.positioning_mode
|
|
);
|
|
|
|
let output_size = self.output_size();
|
|
#[allow(clippy::cast_precision_loss)]
|
|
let output_logical_size = (
|
|
output_size.width as f32 / scale_factor,
|
|
output_size.height as f32 / scale_factor,
|
|
);
|
|
|
|
let popup_config = PopupConfig::new(
|
|
params.reference_x,
|
|
params.reference_y,
|
|
params.width,
|
|
params.height,
|
|
params.positioning_mode,
|
|
output_logical_size.0,
|
|
output_logical_size.1,
|
|
);
|
|
|
|
#[allow(clippy::cast_possible_truncation)]
|
|
#[allow(clippy::cast_sign_loss)]
|
|
let popup_size = PhysicalSize::new(
|
|
(params.width * scale_factor) as u32,
|
|
(params.height * scale_factor) as u32,
|
|
);
|
|
|
|
info!("Popup physical size: {popup_size:?}");
|
|
|
|
let popup_surface = PopupSurface::create(&super::popup_surface::PopupSurfaceParams {
|
|
compositor: &self.context.compositor,
|
|
xdg_wm_base,
|
|
parent_layer_surface,
|
|
fractional_scale_manager: self.context.fractional_scale_manager.as_ref(),
|
|
viewporter: self.context.viewporter.as_ref(),
|
|
queue_handle,
|
|
popup_config,
|
|
physical_size: popup_size,
|
|
scale_factor,
|
|
});
|
|
|
|
popup_surface.grab(&self.context.seat, params.last_pointer_serial);
|
|
|
|
let context = EGLContext::builder()
|
|
.with_display_id(self.context.display.id())
|
|
.with_surface_id(popup_surface.surface.id())
|
|
.with_size(popup_size)
|
|
.build()?;
|
|
|
|
let renderer = FemtoVGRenderer::new(context)
|
|
.map_err(|e| LayerShikaError::FemtoVGRendererCreation { source: e })?;
|
|
|
|
let popup_window = PopupWindow::new(renderer);
|
|
popup_window.set_scale_factor(scale_factor);
|
|
popup_window.set_size(WindowSize::Logical(slint::LogicalSize::new(
|
|
params.width,
|
|
params.height,
|
|
)));
|
|
|
|
let mut state = self.state.borrow_mut();
|
|
let key = state.popups.insert(ActivePopup {
|
|
surface: popup_surface,
|
|
window: Rc::clone(&popup_window),
|
|
request,
|
|
last_serial: params.last_pointer_serial,
|
|
});
|
|
popup_window.set_popup_manager(Rc::downgrade(self), key);
|
|
state.current_popup_key = Some(key);
|
|
|
|
info!("Popup window created successfully with key {key}");
|
|
|
|
Ok(popup_window)
|
|
}
|
|
|
|
pub fn render_popups(&self) -> Result<()> {
|
|
let state = self.state.borrow();
|
|
for (_key, popup) in &state.popups {
|
|
popup.window.render_frame_if_dirty()?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub const fn has_xdg_shell(&self) -> bool {
|
|
self.context.xdg_wm_base.is_some()
|
|
}
|
|
|
|
pub fn mark_all_popups_dirty(&self) {
|
|
let state = self.state.borrow();
|
|
for (_key, popup) in &state.popups {
|
|
popup.window.request_redraw();
|
|
}
|
|
}
|
|
|
|
pub fn find_popup_key_by_surface_id(&self, surface_id: &ObjectId) -> Option<usize> {
|
|
self.state
|
|
.borrow()
|
|
.popups
|
|
.iter()
|
|
.find_map(|(key, popup)| (popup.surface.surface.id() == *surface_id).then_some(key))
|
|
}
|
|
|
|
pub fn find_popup_key_by_fractional_scale_id(
|
|
&self,
|
|
fractional_scale_id: &ObjectId,
|
|
) -> Option<usize> {
|
|
self.state.borrow().popups.iter().find_map(|(key, popup)| {
|
|
popup
|
|
.surface
|
|
.fractional_scale
|
|
.as_ref()
|
|
.filter(|fs| fs.id() == *fractional_scale_id)
|
|
.map(|_| key)
|
|
})
|
|
}
|
|
|
|
pub fn get_popup_window(&self, key: usize) -> Option<Rc<PopupWindow>> {
|
|
self.state
|
|
.borrow()
|
|
.popups
|
|
.get(key)
|
|
.map(|popup| Rc::clone(&popup.window))
|
|
}
|
|
|
|
pub fn destroy_popup(&self, key: usize) {
|
|
if let Some(popup) = self.state.borrow_mut().popups.try_remove(key) {
|
|
info!("Destroying popup with key {key}");
|
|
|
|
popup.surface.destroy();
|
|
}
|
|
}
|
|
|
|
pub fn find_popup_key_by_xdg_popup_id(&self, xdg_popup_id: &ObjectId) -> Option<usize> {
|
|
self.state
|
|
.borrow()
|
|
.popups
|
|
.iter()
|
|
.find_map(|(key, popup)| (popup.surface.xdg_popup.id() == *xdg_popup_id).then_some(key))
|
|
}
|
|
|
|
pub fn find_popup_key_by_xdg_surface_id(&self, xdg_surface_id: &ObjectId) -> Option<usize> {
|
|
self.state.borrow().popups.iter().find_map(|(key, popup)| {
|
|
(popup.surface.xdg_surface.id() == *xdg_surface_id).then_some(key)
|
|
})
|
|
}
|
|
|
|
pub fn update_popup_viewport(&self, key: usize, logical_width: i32, logical_height: i32) {
|
|
if let Some(popup) = self.state.borrow().popups.get(key) {
|
|
popup
|
|
.surface
|
|
.update_viewport_size(logical_width, logical_height);
|
|
}
|
|
}
|
|
|
|
pub fn get_popup_info(&self, key: usize) -> Option<(PopupRequest, u32)> {
|
|
self.state
|
|
.borrow()
|
|
.popups
|
|
.get(key)
|
|
.map(|popup| (popup.request.clone(), popup.last_serial))
|
|
}
|
|
|
|
pub fn mark_popup_configured(&self, key: usize) {
|
|
if let Some(popup) = self.state.borrow().popups.get(key) {
|
|
popup.window.mark_configured();
|
|
}
|
|
}
|
|
}
|