home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / OWLBWCC.PAK / BSTATBMP.H < prev    next >
C/C++ Source or Header  |  1995-08-29  |  943b  |  34 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   Defines class TBStaticBmp.  This is a static control that draws
  4. //   a bitmap
  5. //----------------------------------------------------------------------------
  6. #ifndef __BSTATBMP_H
  7. #define __BSTATBMP_H
  8.  
  9. #ifndef __CONTROL_H
  10.   #include <owl\control.h>
  11. #endif
  12.  
  13. //
  14. //  class TBStaticBmp
  15. //  ----- -----------
  16. //
  17. class  TBStaticBmp : public TControl {
  18.   public:
  19.     TBStaticBmp(TWindow*        parent,
  20.                 int             id,
  21.                 const char far* text,
  22.                 int x, int y, int w, int h,
  23.                 TModule*        module = 0);
  24.  
  25.     TBStaticBmp(TWindow* parent, int resourceId, TModule* module = 0);
  26.  
  27.   protected:
  28.     char far* GetClassName();
  29.  
  30.   DECLARE_STREAMABLE_FROM_BASE(, TBStaticBmp, TControl);
  31. };
  32.  
  33. #endif //__BSTATBMP_H
  34.