Mercurial > hg > xemacs-beta
annotate lisp/oobr/tree-nx/TreeController.h @ 9:6f2bbbbbe05a
Added tag r19-15b5 for changeset 4b173ad71786
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:47:36 +0200 |
parents | 376386a54a3c |
children |
rev | line source |
---|---|
0 | 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 |