1 /* vim: set ft=objc ts=4 nowrap: */
2 /*
3  *  TrackListView.h
4  *
5  *  Copyright (c) 2003
6  *
7  *  Author: Andreas Schik <andreas@schik.de>
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23 
24 #ifndef __TRACKLIST_VIEW_H_INCLUDED
25 #define __TRACKLIST_VIEW_H_INCLUDED
26 
27 #include <AppKit/AppKit.h>
28 
29 @interface TrackListView : NSView
30 {
31 	NSTableView *table;
32 	NSScrollView *scroll;
33 	id delegate;
34 }
35 
36 - (void) tableDoubleClicked: (id)sender;
37 
38 @end
39 
40 #endif
41