Cleaning up a bit, and testing SyncMail. PLEASE DO NOT CHANGE THE ITKIT TARGET SETTI...
[ITKit.git] / ITTableView.h
1 /*
2  *      ITKit
3  *      ITTableView
4  *
5  *      An NSTableView subclass with easy to use accessors for adding a menu (with optional image)
6  *      to the corner view of the TableView.
7  *
8  *      Original Author : Joseph Spiros <joseph.spiros@ithinksw.com>
9  *      Responsibility  : Joseph Spiros <joseph.spiros@ithinksw.com>
10  *
11  *      Copyright (c) 2002 iThink Software.
12  *      All Rights Reserved
13  *
14  */
15
16 #import <Cocoa/Cocoa.h>
17
18 @class ITTableCornerView;
19
20 @interface ITTableView : NSTableView {
21     ITTableCornerView *corner;
22 }
23
24 - (void)setCornerImage:(NSImage*)image;
25 - (NSImage*)cornerImage;
26 - (void)setCornerMenu:(NSMenu*)menu;
27 - (NSMenu*)cornerMenu;
28
29 @end