home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xsetbtn.h < prev    next >
Text File  |  1998-04-06  |  1KB  |  31 lines

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