home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sdmframe.h_ / sdmframe.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  1018 b   |  39 lines

  1. //    Microworks ObjectMate  2.6
  2. //
  3. //  "SFX Class Library"
  4. //
  5. //    An ObjectWindows 2.0 extension for Borland C++ 4.0
  6. //
  7. //    Copyright 1992-94 Microworks Sydney, Australia.
  8. //
  9. //  SDMFRAME.H
  10.  
  11. #if !defined(__SFX_SDMFRAME_H)
  12. #define __SFX_SDMFRAME_H
  13.  
  14. #if !defined(__OWL_DECMDIFR_H)
  15.   #include <owl\decmdifr.h>
  16. #endif
  17.  
  18. //  class TSFXDecoratedMDIFrame
  19.  
  20. class _OWLCLASS TSFXDecoratedMDIFrame : public TDecoratedMDIFrame
  21. {
  22.   public:
  23.     TSFXDecoratedMDIFrame(const char far* title,
  24.                                  TResId          menuResId,
  25.                                  TMDIClient&     clientWnd = *new TMDIClient,
  26.                                  BOOL            sfxCaption = FALSE,
  27.                                  BOOL            trackMenuSelection = FALSE,
  28.                                TModule*        module = 0);
  29.  
  30.   protected:
  31.     //    call SFXDefFrameProc instead of DefFrameProc
  32.     LRESULT           DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  33.  
  34.   DECLARE_RESPONSE_TABLE(TSFXDecoratedMDIFrame);
  35.   DECLARE_STREAMABLE(_OWLCLASS, TSFXDecoratedMDIFrame, 1);
  36. };
  37.  
  38. #endif  // __SFX_SDMFRAME_H
  39.