home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / Palettes / MORegex / MODateFormCellInspector.h < prev    next >
Encoding:
Text File  |  1993-10-04  |  1.4 KB  |  50 lines

  1. // MODateFormCellInspector.h
  2. //
  3. // by Mike Ferris
  4. // Part of MOKit - MORegexPalette
  5. // Copyright 1993, all rights reserved.
  6.  
  7. // ABOUT MOKit
  8. // 
  9. // MOKit is a collection of useful and general objects.  Permission is 
  10. // granted by the author to use MOKit in your own programs in any way 
  11. // you see fit.  All other rights to the kit are reserved by the author 
  12. // including the right to sell these objects as part of a LIBRARY or as 
  13. // SOURCE CODE.  In plain English, I wish to retain rights to these 
  14. // objects as objects, but allow the use of the objects as pieces in a 
  15. // fully functional program.  NO WARRANTY is expressed or implied.  The author 
  16. // will under no circumstances be held responsible for ANY consequences to 
  17. // you from the use of these objects.  Since you don't have to pay for 
  18. // them, and full source is provided, I think this is perfectly fair.
  19.  
  20. // ABOUT MODateFormCellInspector
  21. //
  22. // Handles the inspector for a MODateFormCell.  It allows setting of the tag
  23. // and allowEmptyString flag.  It lets the cell be enabled or disabled, and
  24. // it allows a choice of American or European input styles and date 
  25. // formatting options.
  26.  
  27. #import <appkit/appkit.h>
  28.  
  29. #import <apps/InterfaceBuilder.h>
  30.  
  31. @interface MODateFormCellInspector:IBInspector
  32. {
  33.     id    styleRadioMatrix;
  34.     id    formatCheckbox;
  35.     id    formatForm;
  36.     id    checkboxMatrix;
  37.     id    tagForm;
  38. }
  39.  
  40. + initialize;
  41.  
  42. - init;
  43.  
  44. - ok:sender;
  45. - revert:sender;
  46.  
  47. - (BOOL)wantsButtons;
  48.  
  49. @end
  50.