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

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