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

  1. #ifndef __OOL_XPUSHBTN_H__
  2. #define __OOL_XPUSHBTN_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XPushButton                           */
  8. /*                       derived from: XButton                               */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include  "xbutton.h"
  15.  
  16.  
  17. class _export_ XPushButton: public XButton{
  18.       friend void BuildChilds( HWND );
  19.    protected:
  20.       XPushButton( const HWND hwnd): XButton(hwnd) { ;}
  21.    public:
  22.       XPushButton( const XWindow * owner, const XRect& rec=XRect(), const USHORT id = 0, const ULONG style = WIN_VISIBLE, const char * s = "", const char*font=NULL);
  23.       virtual ~XPushButton() {;}
  24. };
  25.  
  26.  
  27. #endif
  28.