mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-20 09:31:15 +00:00
26 lines
623 B
Objective-C
26 lines
623 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "NameFormatter.h"
|
|
#import "SizeFormatter.h"
|
|
#import "AttributesFormatter.h"
|
|
|
|
@class Resource;
|
|
|
|
@interface OutlineViewDelegate : NSObject
|
|
{
|
|
IBOutlet NSWindow *window;
|
|
IBOutlet NameFormatter *nameFormatter;
|
|
IBOutlet SizeFormatter *sizeFormatter;
|
|
IBOutlet AttributesFormatter *attributesFormatter;
|
|
}
|
|
|
|
int compareResourcesAscending( Resource *r1, Resource *r2, void *context );
|
|
int compareResourcesDescending( Resource *r1, Resource *r2, void *context );
|
|
|
|
@end
|
|
|
|
@interface NSOutlineView (OutlineSortView)
|
|
- (void)swapForOutlineSortView;
|
|
@end
|
|
|
|
@interface OutlineSortView : NSOutlineView
|
|
@end |