use dioxus_core::Event; pub type SelectionEvent = Event; pub struct SelectionData { inner: Box, } impl SelectionData { /// Downcast this event to a concrete event type pub fn downcast(&self) -> Option<&T> { self.inner.as_any().downcast_ref::() } } impl From for SelectionData { fn from(e: E) -> Self { Self { inner: Box::new(e) } } } impl std::fmt::Debug for SelectionData { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("SelectionData").finish() } } impl PartialEq for SelectionData { fn eq(&self, _other: &Self) -> bool { true } } #[cfg(feature = "serialize")] /// A serialized version of SelectionData #[derive(serde::Serialize, serde::Deserialize)] pub struct SerializedSelectionData {} #[cfg(feature = "serialize")] impl From<&SelectionData> for SerializedSelectionData { fn from(_: &SelectionData) -> Self { Self {} } } #[cfg(feature = "serialize")] impl HasSelectionData for SerializedSelectionData { fn as_any(&self) -> &dyn std::any::Any { self } } #[cfg(feature = "serialize")] impl serde::Serialize for SelectionData { fn serialize(&self, serializer: S) -> Result { SerializedSelectionData::from(self).serialize(serializer) } } #[cfg(feature = "serialize")] impl<'de> serde::Deserialize<'de> for SelectionData { fn deserialize>(deserializer: D) -> Result { let data = SerializedSelectionData::deserialize(deserializer)?; Ok(Self { inner: Box::new(data), }) } } pub trait HasSelectionData: std::any::Any { /// return self as Any fn as_any(&self) -> &dyn std::any::Any; } impl_event! [ SelectionData; /// select onselect /// selectstart onselectstart /// selectionchange onselectionchange ];