home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / include / xsbitmap.h < prev    next >
Text File  |  1997-02-23  |  1KB  |  28 lines

  1. #ifndef __OOL_XSBITMAP_H__
  2. #define __OOL_XSBITMAP_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XStaticBitmap                         */
  8. /*                       derived from: XStatic                               */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xstatic.h"
  15.  
  16.  
  17. class _export_ XStaticBitmap: public XStatic
  18. {
  19.       friend void BuildChilds( HWND );
  20.    private:
  21.       XStaticBitmap( const OOL_WINDOWHANDLE hwnd):XStatic(hwnd) {;}
  22.    public:
  23.       XStaticBitmap( XWindow * w,  const XRect * p=NULL, const LONG id = 0, const LONG style=ST_AUTOSIZE);
  24.       virtual ~XStaticBitmap() {;}
  25. };
  26.  
  27. #endif
  28.