pub unsafe trait NSComboBoxDelegate: NSTextFieldDelegate + MainThreadOnly {
// Provided methods
unsafe fn comboBoxWillPopUp(&self, notification: &NSNotification)
where Self: Sized + Message { ... }
unsafe fn comboBoxWillDismiss(&self, notification: &NSNotification)
where Self: Sized + Message { ... }
unsafe fn comboBoxSelectionDidChange(&self, notification: &NSNotification)
where Self: Sized + Message { ... }
unsafe fn comboBoxSelectionIsChanging(&self, notification: &NSNotification)
where Self: Sized + Message { ... }
}
Available on crate features
NSComboBox
and NSControl
and NSTextField
only.