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

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   Defines class TBStatic.  This defines the basic behavior of BWCC static
  4. //   controls
  5. //----------------------------------------------------------------------------
  6. #ifndef __BSTATIC_H
  7. #define __BSTATIC_H
  8.  
  9. #ifndef __STATIC_H
  10.   #include <owl\static.h>
  11. #endif
  12.  
  13. //
  14. //  class TBStatic
  15. //  ----- --------
  16. //
  17. class  TBStatic : public TStatic {
  18.   public:
  19.     TBStatic(TWindow*        parent,
  20.              int             id,
  21.              const char far* title,
  22.              int x, int y, int w, int h,
  23.              UINT            TextLen,
  24.              TModule*        module = 0);
  25.  
  26.     TBStatic(TWindow* parent,
  27.              int      resourceId,
  28.              UINT     textLen,
  29.              TModule* module = 0);
  30.  
  31.   protected:
  32.     char far* GetClassName();
  33.  
  34.   DECLARE_STREAMABLE_FROM_BASE(, TBStatic, TStatic);
  35. };
  36.  
  37. #endif //__BSTATIC_H
  38.