// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial /*! This module contains the builtin image related items. When adding an item or a property, it needs to be kept in sync with different place. Lookup the [`crate::items`] module documentation. */ use super::{ImageFit, ImageRendering, Item, ItemConsts, ItemRc, RenderingResult}; use crate::input::{ FocusEvent, FocusEventResult, InputEventFilterResult, InputEventResult, KeyEvent, KeyEventResult, MouseEvent, }; use crate::item_rendering::CachedRenderingData; use crate::item_rendering::ItemRenderer; use crate::layout::{LayoutInfo, Orientation}; use crate::lengths::{LogicalLength, LogicalPoint, LogicalRect, LogicalSize}; #[cfg(feature = "rtti")] use crate::rtti::*; use crate::window::WindowAdapter; use crate::{Brush, Coord, Property}; use alloc::rc::Rc; use const_field_offset::FieldOffsets; use core::pin::Pin; use i_slint_core_macros::*; #[repr(C)] #[derive(FieldOffsets, Default, SlintElement)] #[pin] /// The implementation of the `Image` element pub struct ImageItem { pub source: Property, pub x: Property, pub y: Property, pub width: Property, pub height: Property, pub image_fit: Property, pub image_rendering: Property, pub cached_rendering_data: CachedRenderingData, } impl Item for ImageItem { fn init(self: Pin<&Self>, _window_adapter: &Rc) {} fn geometry(self: Pin<&Self>) -> LogicalRect { LogicalRect::new( LogicalPoint::from_lengths(self.x(), self.y()), LogicalSize::from_lengths(self.width(), self.height()), ) } fn layout_info( self: Pin<&Self>, orientation: Orientation, _window_adapter: &Rc, ) -> LayoutInfo { let natural_size = self.source().size(); LayoutInfo { preferred: match orientation { _ if natural_size.width == 0 || natural_size.height == 0 => 0 as Coord, Orientation::Horizontal => natural_size.width as Coord, Orientation::Vertical => { natural_size.height as Coord * self.width().get() / natural_size.width as Coord } }, ..Default::default() } } fn input_event_filter_before_children( self: Pin<&Self>, _: MouseEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> InputEventFilterResult { InputEventFilterResult::ForwardAndIgnore } fn input_event( self: Pin<&Self>, _: MouseEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> InputEventResult { InputEventResult::EventIgnored } fn key_event( self: Pin<&Self>, _: &KeyEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> KeyEventResult { KeyEventResult::EventIgnored } fn focus_event( self: Pin<&Self>, _: &FocusEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> FocusEventResult { FocusEventResult::FocusIgnored } fn render( self: Pin<&Self>, backend: &mut &mut dyn ItemRenderer, self_rc: &ItemRc, ) -> RenderingResult { (*backend).draw_image(self, self_rc); RenderingResult::ContinueRenderingChildren } } impl ItemConsts for ImageItem { const cached_rendering_data_offset: const_field_offset::FieldOffset< ImageItem, CachedRenderingData, > = ImageItem::FIELD_OFFSETS.cached_rendering_data.as_unpinned_projection(); } #[repr(C)] #[derive(FieldOffsets, Default, SlintElement)] #[pin] /// The implementation of the `ClippedImage` element pub struct ClippedImage { pub source: Property, pub x: Property, pub y: Property, pub width: Property, pub height: Property, pub image_fit: Property, pub image_rendering: Property, pub colorize: Property, pub source_clip_x: Property, pub source_clip_y: Property, pub source_clip_width: Property, pub source_clip_height: Property, pub cached_rendering_data: CachedRenderingData, } impl Item for ClippedImage { fn init(self: Pin<&Self>, _window_adapter: &Rc) {} fn geometry(self: Pin<&Self>) -> LogicalRect { LogicalRect::new( LogicalPoint::from_lengths(self.x(), self.y()), LogicalSize::from_lengths(self.width(), self.height()), ) } fn layout_info( self: Pin<&Self>, orientation: Orientation, _window_adapter: &Rc, ) -> LayoutInfo { let natural_size = self.source().size(); LayoutInfo { preferred: match orientation { _ if natural_size.width == 0 || natural_size.height == 0 => 0 as Coord, Orientation::Horizontal => natural_size.width as Coord, Orientation::Vertical => { natural_size.height as Coord * self.width().get() / natural_size.width as Coord } }, ..Default::default() } } fn input_event_filter_before_children( self: Pin<&Self>, _: MouseEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> InputEventFilterResult { InputEventFilterResult::ForwardAndIgnore } fn input_event( self: Pin<&Self>, _: MouseEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> InputEventResult { InputEventResult::EventIgnored } fn key_event( self: Pin<&Self>, _: &KeyEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> KeyEventResult { KeyEventResult::EventIgnored } fn focus_event( self: Pin<&Self>, _: &FocusEvent, _window_adapter: &Rc, _self_rc: &ItemRc, ) -> FocusEventResult { FocusEventResult::FocusIgnored } fn render( self: Pin<&Self>, backend: &mut &mut dyn ItemRenderer, self_rc: &ItemRc, ) -> RenderingResult { (*backend).draw_clipped_image(self, self_rc); RenderingResult::ContinueRenderingChildren } } impl ItemConsts for ClippedImage { const cached_rendering_data_offset: const_field_offset::FieldOffset< ClippedImage, CachedRenderingData, > = ClippedImage::FIELD_OFFSETS.cached_rendering_data.as_unpinned_projection(); }