home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWWindow / Include / FWWinPro.h < prev   
Encoding:
Text File  |  1996-08-16  |  1.5 KB  |  55 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWWinPro.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWWINPRO_H
  11. #define FWWINPRO_H
  12.  
  13. #ifndef PRWINPRO_H
  14. #include "PRWinPro.h"
  15. #endif
  16.  
  17. // ----- Foundation Layer -----
  18.  
  19. #ifndef FWEXCLIB_H
  20. #include "FWExcLib.h"
  21. #endif
  22.  
  23. //========================================================================================
  24. //    Forward Declarations
  25. //========================================================================================
  26.  
  27. class ODFrame;
  28.  
  29. //========================================================================================
  30. //    class FW_CWindowProperties
  31. //========================================================================================
  32. // Obtains window properties from the storage unit referred to in the frame's
  33. // kODPropWindowProperties.
  34.  
  35. class FW_CWindowProperties : public FW_SWindowProperties
  36. {
  37. public:
  38.     FW_DECLARE_AUTO(FW_CWindowProperties)
  39.  
  40. //----------------------------------------------------------------------------------------
  41. //    Constructor/Destructor
  42. //
  43. public:
  44.     FW_CWindowProperties();
  45.     ~FW_CWindowProperties();
  46.  
  47. //----------------------------------------------------------------------------------------
  48. //    API
  49. //
  50. public:
  51.     FW_Boolean ReadWindowProperties(Environment* ev, ODFrame* frame);
  52. };
  53.  
  54. #endif
  55.