Add skeleton for NSTableRowView class that includes set/get methods

This commit is contained in:
Gregory John Casamento 2024-04-25 09:18:13 -04:00
parent 82dce67eb4
commit 4d2dcb9e04
3 changed files with 164 additions and 1 deletions

View file

@ -102,6 +102,15 @@ typedef enum _NSTableViewRowSizeStyle
} NSTableViewRowSizeStyle;
#endif
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
typedef enum _NSTableViewDraggingDestinationFeedbackStyle
{
NSTableViewDraggingDestinationFeedbackStyleNone = 0,
NSTableViewDraggingDestinationFeedbackStyleRegular,
NSTableViewDraggingDestinationFeedbackStyleSourceList,
NSTableViewDraggingDestinationFeedbackStyleGap,
} NSTableViewDraggingDestinationFeedbackStyle;
#endif
APPKIT_EXPORT_CLASS
@interface NSTableView : NSControl <NSUserInterfaceValidations>