home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / DataOptionsPanel.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  1.1 KB  |  52 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. /* $Id: DataOptionsPanel.h,v 1.9 1993/05/18 03:54:55 davis Exp $ */
  12.  
  13.  
  14. #import "OptionsPanel.h"
  15.  
  16. @class FunctionObject, EditMatrix, Matrix, Pane;
  17.  
  18. @interface DataOptionsPanel:OptionsPanel
  19. {
  20.     id        stringSet;
  21.  
  22.     id        owner;
  23.     BOOL    isOwnerCurrent;
  24.     EditMatrix    *functionsMatrix;
  25.     id        function;
  26.     BOOL    isMult;
  27.  
  28.     Pane    *functionPane;        /* The Panes */
  29.     Pane    *dataFilePane;
  30.     Pane    *dataFileThreeDPane;
  31.     Pane    *noPane;
  32.  
  33.     Pane    *currentPane;        /* One of the above */
  34.  
  35.     id        stringField;        /* Controls */
  36.     id        titleField;
  37. }
  38.  
  39. - init;
  40.  
  41. - forceUpdate;                /** Overridden from OptionsPanel **/
  42. - windowDidUpdate:sender;
  43. - setOwner:anObject;
  44.  
  45. - ownerDidSwapIn:sender;        /** New methods            **/
  46. - ownerDidSwapOut:sender;
  47. - (FunctionObject *)function;        /* Selected function        */
  48. - (EditMatrix *)functionsMatrix;
  49. - setFunctionTitle:sender;
  50.  
  51. @end
  52.