Utah Raster Toolkit  9999-git
URT Development version (post-3.1b)
Myapp.h
Go to the documentation of this file.
1 #import <appkit/Application.h>
2 
3 // Myapp.h
4 //
5 // Written by Vince DeMarco
6 // demarco@cpsc.ucalgary.ca
7 //
8 // This program is In the Public Domain. If you make any improvements to this
9 // program please let me know
10 
11 @interface Myapp:Application
12 {
17  int saveType; /* 1 tiff 2 eps */
18 }
19 
20 + new;
21 - (int)appOpenFile:(const char *)fullPath type:(const char *)type;
22 - (BOOL)appAcceptsAnotherFile:sender;
23 - openfile:sender;
24 - print:sender;
25 - save:sender;
26 - saveTypeEPS:sender;
27 - saveTypeTiff:sender;
28 - (int)setCompType;
29 @end
int setCompType()
Definition: Myapp.m:128
id compPopUP
Definition: Myapp.h:16
BOOL appAcceptsAnotherFile:(id sender)
Definition: Myapp.m:47
id saveTypeTiff:(id sender)
Definition: Myapp.m:119
id saveTypeEPS:(id sender)
Definition: Myapp.m:110
id savepanel
Definition: Myapp.h:14
id savePanelAccessory
Definition: Myapp.h:15
id openpanel
Definition: Myapp.h:13
id save:(id sender)
Definition: Myapp.m:89
id new()
int saveType
Definition: Myapp.h:17
id openfile:(id sender)
Definition: Myapp.m:52
id print:(id sender)
Definition: Myapp.m:83
int appOpenFile:type:(const char *fullPath,[type] const char *type)
Definition: Myapp.m:34
Definition: Myapp.m:25