home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sdframe.h_ / sdframe.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  968 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. //  SDFRAME.H
  10.  
  11. #if !defined(__SFX_SDFRAME_H)
  12. #define __SFX_SDFRAME_H
  13.  
  14. #if !defined(__OWL_DECFRAME_H)
  15.   #include <owl\decframe.h>
  16. #endif
  17.  
  18. //  class TSFXDecoratedFrame
  19.  
  20. class _OWLCLASS TSFXDecoratedFrame : public TDecoratedFrame
  21. {
  22.   public:
  23.     TSFXDecoratedFrame(TWindow*        parent,
  24.                        const char far* title,
  25.                        TWindow*        clientWnd,
  26.                        BOOL            trackMenuSelection = FALSE,
  27.                        BOOL            sfxCaption = FALSE,
  28.                        TModule*        module = 0);
  29.  
  30.   protected:
  31.     //    call SFXDefWindowProc instead of DefWindowProc
  32.     LRESULT           DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  33.  
  34.   DECLARE_RESPONSE_TABLE(TSFXDecoratedFrame);
  35.   DECLARE_STREAMABLE(_OWLCLASS, TSFXDecoratedFrame, 1);
  36. };
  37.  
  38. #endif  // __SFX_SDFRAME_H
  39.