comparison lisp/oobr/tree-nx/TreeController.h @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
1
2 #import <appkit/appkit.h>
3
4 @interface TreeController:Object
5 {
6 id treeView;
7 id infoPanel;
8 int nextX, nextY;
9 BOOL first;
10 }
11
12 - init;
13 - info:sender;
14 - open:sender;
15 - (BOOL)openFile:(const char *)name;
16
17 /* Application delegate methods */
18
19 - appDidInit:(Application *)sender;
20 - (int)app:sender openFile:(const char *)file type:(const char *)type;
21 - (BOOL)appAcceptsAnotherFile:sender;
22
23 @end