home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: Preferences.h,v 1.4 1993/05/04 16:22:38 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? */
- }
-
- - init;
- - free;
- - awakeFromNib;
-
- - showPanel:sender;
-
- - doSetConstantUpdate:sender;
- - (int)constantUpdate;
- - doSetNewDocument:sender;
- - (BOOL)newDocument;
- - doSetDefaultInspector:sender;
- - (int)defaultInspector;
- - doSetHalvePlot:sender;
- - (BOOL)halvePlot;
-
-
- @end
-