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

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