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

  1. // MORegexPalette.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 MORegexPalette
  21. //
  22. // MORegexPalette is the main class for an IB palette of MORegexTextCell 
  23. // and MORegexFormCell controls.
  24.  
  25.  
  26. #import <apps/InterfaceBuilder.h>
  27.  
  28. @interface MORegexPalette:IBPalette
  29. {
  30.     id genericForm;
  31.     id genericMatrix;
  32.     id intForm;
  33.     id intMatrix;
  34.     id floatForm;
  35.     id floatMatrix;
  36.     id timeForm;
  37.     id timeMatrix;
  38.     id dateForm;
  39.     id dateMatrix;
  40.  
  41. }
  42.  
  43. + initialize;
  44.  
  45. - finishInstantiate;
  46.  
  47. @end
  48.