home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscShell / MiscShellInspector.h < prev    next >
Encoding:
Text File  |  1995-04-12  |  466 b   |  32 lines

  1. // Copyright (C) 1995 Steve Hayman
  2. // Use is governed by the MiscKit license
  3.  
  4. #import <appkit/appkit.h>
  5.  
  6. #import <apps/InterfaceBuilder.h>
  7.  
  8.  
  9. @interface MiscShellInspector : IBInspector
  10. {
  11.     id text;
  12.     id scrollView;
  13.     
  14.     id scriptBox;
  15.     id optionsBox;
  16.     id swapBox;
  17.     id delimiters;
  18.     
  19.     id tableSort;
  20.     
  21.     id runToCompletionCheck;
  22.     id customDelimiters;
  23. }
  24.  
  25. - init;
  26. - swapView:sender;
  27. - revert:sender;
  28. - ok:sender;
  29. - (BOOL)wantsButtons;
  30.  
  31. @end
  32.