home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dho.zip / DHO / SRC / SOURCE.ZIP / bmp_pbtn.h < prev    next >
C/C++ Source or Header  |  1995-08-27  |  705b  |  30 lines

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: bmp_pbtn.h 1.2 1995/08/13 03:21:12 teb Exp $ */
  8.  
  9. #ifndef __BMP_PBTN_H__
  10. #define __BMP_PBTN_H__
  11.  
  12.  
  13.  
  14. #include<winbase.h>
  15. #include<control.h>
  16.  
  17.  
  18. class TBmpPushButton: public TControl
  19. {
  20.    public:
  21.       TBmpPushButton(TWinBase *parent, ULONG resource);
  22.       TBmpPushButton(TWinBase *parent, ULONG bmpId, ULONG id,
  23.                             LONG xPos, LONG yPos, LONG xWidth, LONG yHeight);
  24.       virtual ~TBmpPushButton();
  25.  
  26.       virtual const char *getClassName();
  27. };
  28.  
  29. #endif
  30.