mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 03:21:04 +00:00
Add protocols to NSComboBox. Leave informal protocols in place.
This commit is contained in:
parent
9abf2a7494
commit
04dfeb9501
1 changed files with 6 additions and 0 deletions
|
@ -106,6 +106,9 @@
|
|||
#endif
|
||||
@end
|
||||
|
||||
@protocol NSComboBoxDataSource <NSObject>
|
||||
@end
|
||||
|
||||
@interface NSObject (NSComboBoxNotifications)
|
||||
- (void) comboBoxWillPopUp: (NSNotification *)notification;
|
||||
- (void) comboBoxWillDismiss: (NSNotification *)notification;
|
||||
|
@ -113,6 +116,9 @@
|
|||
- (void) comboBoxSelectionIsChanging: (NSNotification *)notification;
|
||||
@end
|
||||
|
||||
@protocol NSComboBoxDelegate <NSTextFieldDelegate>
|
||||
@end
|
||||
|
||||
APPKIT_EXPORT NSString *NSComboBoxWillPopUpNotification;
|
||||
APPKIT_EXPORT NSString *NSComboBoxWillDismissNotification;
|
||||
APPKIT_EXPORT NSString *NSComboBoxSelectionDidChangeNotification;
|
||||
|
|
Loading…
Reference in a new issue