mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Add NSNibDeclarations, declare image and text views as outlets
This commit is contained in:
parent
fa6889234a
commit
e322757c5f
1 changed files with 7 additions and 3 deletions
|
@ -31,6 +31,9 @@
|
|||
#import <AppKit/NSNibDeclarations.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)
|
||||
|
||||
|
@ -44,11 +47,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;
|
||||
|
|
Loading…
Reference in a new issue