home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Projects / MiscFindPanel / SearchBench / SBApp.m < prev    next >
Encoding:
Text File  |  1993-10-22  |  827 b   |  33 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 "SBApp.h"
  12. #import "MiscFindPanel.h"
  13.  
  14. @implementation SBApp
  15.  
  16. - orderFrontInfoPanel:sender
  17. {
  18.   [self loadNibSection:"Info.nib" owner:self withNames:NO];
  19.   [infoPanel makeKeyAndOrderFront:self];
  20.   return self;
  21. }
  22.  
  23. // make the Timer instance (instantiated in SearchBench.nib) the
  24. // "first conformer", so that timing can be done; this method is
  25. // called when the find panel is first brought to the screen or used.
  26. - (Class)MiscFindPanelClassWasLoaded:(Class)theClass
  27. {
  28.   [theClass setFirstConformer:timerObj];
  29.   return theClass;
  30. }
  31.  
  32. @end
  33.