Mercurial > hg > xemacs-beta
annotate pkg-src/tree-nx/TreeController.h @ 172:a38aed19690b
Added tag r20-3b12 for changeset 929b76928fce
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:47:55 +0200 |
parents | 0132846995bd |
children |
rev | line source |
---|---|
163 | 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 |