ITKit for Menutunes
[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 <AppKit/AppKit.h>
17 #import "ITTableCornerView.h"
18
19 @interface ITTableView : NSTableView {
20     ITTableCornerView *corner;
21 }
22
23 - (void)setCornerImage:(NSImage*)image;
24 - (NSImage*)cornerImage;
25 - (void)setCornerMenu:(NSMenu*)menu;
26 - (NSMenu*)cornerMenu;
27
28 @end