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

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