pub unsafe trait SWCollaborationViewDelegate: NSObjectProtocol {
// Provided methods
unsafe fn collaborationViewShouldPresentPopover(
&self,
collaboration_view: &SWCollaborationView,
) -> bool
where Self: Sized + Message { ... }
unsafe fn collaborationViewWillPresentPopover(
&self,
collaboration_view: &SWCollaborationView,
)
where Self: Sized + Message { ... }
unsafe fn collaborationViewDidDismissPopover(
&self,
collaboration_view: &SWCollaborationView,
)
where Self: Sized + Message { ... }
}Available on crate feature
SWCollaborationView only.Expand description
Provided Methods§
unsafe fn collaborationViewShouldPresentPopover( &self, collaboration_view: &SWCollaborationView, ) -> bool
Available on crate feature
objc2-app-kit and macOS only.unsafe fn collaborationViewWillPresentPopover( &self, collaboration_view: &SWCollaborationView, )
Available on crate feature
objc2-app-kit and macOS only.unsafe fn collaborationViewDidDismissPopover( &self, collaboration_view: &SWCollaborationView, )
Available on crate feature
objc2-app-kit and macOS only.