Project fixes so that stuff builds, updates to the Background view, tweaks all over.
[ITKit.git] / ITTableView.h
1 /*
2  *      ITKit
3  *      ITTableView
4  *    NSTableView subclass with easy to use accessors for adding a menu
5  *    (with optional image) to the corner view of the TableView.
6  *
7  *      Original Author : Joseph Spiros <joseph.spiros@ithinksw.com>
8  *   Responsibility : Matt Judy <mjudy@ithinksw.com>
9  *      Responsibility  : Joseph Spiros <joseph.spiros@ithinksw.com>
10  *
11  *      Copyright (c) 2002-2003 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