Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITTableView.h
1 /*
2  *      ITKit
3  *      ITTableCornerView.h
4  *
5  *      NSTableView subclass that uses an ITTableCornerView as its default
6  *              cornerView and provides easy to use accessors to the features
7  *              provided by ITTableCornerView when it is being used.
8  *
9  *      Copyright (c) 2005 iThink Software
10  *
11  */
12
13 #import <Cocoa/Cocoa.h>
14
15 @interface ITTableView : NSTableView {
16
17 }
18
19 - (void)setCornerImage:(NSImage*)image;
20 - (NSImage*)cornerImage;
21 - (void)setCornerMenu:(NSMenu*)menu;
22 - (NSMenu*)cornerMenu;
23
24 @end