home *** CD-ROM | disk | FTP | other *** search
-
- /* $Id: Preferences.h,v 1.1.1.1 1993/03/18 03:35:19 davis Exp $ */
-
- #import <objc/Object.h>
- #import <dpsclient/event.h> /* NXPoint */
-
- @interface Preferences:Object
- {
- id window; /* Preferences panel */
-
- id constantUpdateMatrix; /* When should the plot be */
- int constantUpdate; /* updated (replotted)? */
-
- id newDocumentButton;
- BOOL newDocument; /* Should we create an */
- /* untitled plot at launch? */
-
- id defaultInspectorMatrix;
- int defaultInspector; /* What should the default */
- /* inspector be? */
-
- id halvePlotMatrix;
- BOOL halvePlot; /* Should the plot be */
- /* half-size as in 3.x? */
-
- id addDataToCurrentButton; /* Services */
- id addDataToNewButton;
-
- id initFileField; /* Currently unused */
- id initFileButton;
- const char *initFile;
- BOOL isInitFile;
-
- }
-
- - init;
- - free;
- - awakeFromNib;
-
- - showPanel:sender;
-
- - doSetConstantUpdate:sender;
- - (int)constantUpdate;
- - doSetNewDocument:sender;
- - (BOOL)newDocument;
- - doSetDefaultInspector:sender;
- - (int)defaultInspector;
- - doSetHalvePlot:sender;
- - (BOOL)halvePlot;
- - doSetAddDataToCurrent:sender;
- - (BOOL)addDataToCurrent;
- - doSetAddDataToNew:sender;
- - (BOOL)addDataToNew;
- - doSetIsInitFile:sender;
- - (BOOL)isInitFile;
- - doSetInitFile:sender;
- - doSetInitFileWithOpenPanel:sender;
- - (const char *)initFile;
-
-
- @end
-