home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Palettes / MiscClockPalette / MiscClockViewInspector.h < prev    next >
Encoding:
Text File  |  1993-10-01  |  795 b   |  34 lines

  1. //
  2. //    MiscClockViewInspector.h -- a simple view class for displaying date/time
  3. //        Written by Scott Anguish (c) 1993 by Scott Anguish.
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14.  
  15. #import <apps/InterfaceBuilder.h>
  16.  
  17. @interface MiscClockViewInspector : IBInspector <IBInspectors> 
  18. {
  19.     id dayText;
  20.     id dateText;
  21.     id monthText;
  22.     id yearText;
  23.     id hourText;
  24.     id minuteText;
  25.     id secondText;
  26.     
  27.     id militaryTime;
  28.     id showYear;
  29. }
  30.  
  31. - setToCurrentTime:sender;
  32.  
  33. @end
  34.