home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / Pane.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  690 b   |  43 lines

  1.  
  2. /* $Id: Pane.h,v 1.1.1.1 1993/03/18 03:34:48 davis Exp $ */
  3.  
  4. #import <objc/Object.h>
  5.  
  6. @interface Pane:Object
  7. {
  8.     id        window;
  9.     id        view;
  10.  
  11.     char    *title;
  12.     char    *icon;
  13.  
  14.     id        status;            /* Current status        */
  15.     id        doc;            /* Current plot            */
  16.     BOOL    isCurrentPane;
  17.  
  18.     BOOL    _textCellChanged;
  19. }
  20.  
  21.  
  22. - init;
  23.  
  24. - view;
  25. - (const char *) icon;
  26.  
  27. - setTitle: (const char *) aString;
  28. - (const char *) title;
  29.  
  30. - selectControl:sender;
  31. - (BOOL)updateStatus:aStatus doc:aDoc;
  32. - (BOOL)forceUpdateStatus:aStatus doc:aDoc;
  33. - didSwapIn:sender;
  34. - didSwapOut:sender;
  35.  
  36.  
  37. /** Text Delegate Methods **/
  38.  
  39. - textDidEnd:textObject endChar:(unsigned short)whyEnd;
  40. - (BOOL) textWillChange:textObject;
  41.  
  42. @end
  43.