X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/35167b10d151b0ae09f0f807670c318bc4d3de53..22a86e1af594d77fde7f056cf5152478f14dafbf:/ITTableView.h diff --git a/ITTableView.h b/ITTableView.h new file mode 100755 index 0000000..5661c74 --- /dev/null +++ b/ITTableView.h @@ -0,0 +1,28 @@ +/* + * ITKit + * ITTableView + * + * An NSTableView subclass with easy to use accessors for adding a menu (with optional image) + * to the corner view of the TableView. + * + * Original Author : Joseph Spiros + * Responsibility : Joseph Spiros + * + * Copyright (c) 2002 iThink Software. + * All Rights Reserved + * + */ + +#import +#import "ITTableCornerView.h" + +@interface ITTableView : NSTableView { + ITTableCornerView *corner; +} + +- (void)setCornerImage:(NSImage*)image; +- (NSImage*)cornerImage; +- (void)setCornerMenu:(NSMenu*)menu; +- (NSMenu*)cornerMenu; + +@end