Add NSNibDeclarations, declare image and text views as outlets

This commit is contained in:
Gregory John Casamento 2022-12-12 12:22:25 -05:00
parent b895ffe953
commit 4856bec185

View file

@ -27,8 +27,10 @@
#import <AppKit/NSView.h>
#import <AppKit/NSCell.h>
#import <AppKit/AppKitDefines.h>
#import <AppKit/NSTableView.h>
#import <AppKit/NSNibDeclarations.h>
#import <AppKit/AppKitDefines.h>
#if OS_API_VERSION(MAC_OS_X_VERSION_10_7, GS_API_LATEST)
@ -42,11 +44,12 @@ APPKIT_EXPORT_CLASS
@interface NSTableCellView : NSView
{
id _objectValue;
NSImageView *_imageView;
NSTextField *_textField;
IBOutlet NSImageView *_imageView;
IBOutlet NSTextField *_textField;
NSArray *_draggingImageComponents;
NSBackgroundStyle _backgroundStyle;
NSTableViewRowSizeStyle _rowSizeStyle;
NSArray *_draggingImageComponents;
}
- (id) objectValue;