home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.bin / SourceCode / MiscKit1.2.6 / Projects / MiscFindPanel / SearchBench / MiscFindPanelClass.h < prev    next >
Encoding:
Text File  |  1993-10-21  |  852 b   |  36 lines

  1. /*
  2.  *  Copyright (c) 1993 Christopher J. Kane.  All rights reserved.
  3.  *
  4.  *  This software is subject to the terms of the MiscKit license
  5.  *  agreement.  Refer to the license document included with the
  6.  *  MiscKit distribution for these terms.
  7.  *
  8.  *  Version: 1.1 (22 October 1993)
  9.  */
  10.  
  11. #import <appkit/appkit.h>
  12. #import "MiscFindPanel.h"
  13.  
  14. @interface Application (MiscFindPanelClass)
  15.  
  16. - (Class)MiscFindPanelClass;
  17. - (BOOL)isMiscFindPanelClassLoaded;
  18. - (MiscFindPanel *)findPanel;
  19. - (BOOL)isFindPanelLoaded;
  20.  
  21. - enterSelection:sender;
  22. - findNext:sender;
  23. - findPrevious:sender;
  24. - jumpToSelection:sender;
  25. - orderFrontFindPanel:sender;
  26.  
  27. @end
  28.  
  29. @interface Object (MiscFindPanelClassDelegateMethods)
  30.  
  31. - (Class)MiscFindPanelClassWasLoaded:(Class)theClass;
  32. - findPanelWillLoad:(Class)theClass;
  33. - (MiscFindPanel *)findPanelDidLoad:(MiscFindPanel *)thePanel;
  34.  
  35. @end
  36.