home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ool.zip
/
OOL
/
include
/
xsetbtn.h
< prev
next >
Wrap
Text File
|
1997-02-23
|
1KB
|
31 lines
#ifndef __OOL_XSETTINGBTN_H__
#define __OOL_XSETTINGBTN_H__
/*===========================================================================*/
/* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
/*===========================================================================*/
/* class: XSettingButton */
/* derived from: XButton */
/* last update: 12/96 */
/* programmed by: Stefan von Brauk (sbrauk@gwdg.de) */
/*===========================================================================*/
#include "xbutton.h"
class _export_ XSettingButton: public XButton
{
protected:
XSettingButton( const HWND hwnd): XButton(hwnd) {;}
XSettingButton( const XWindow * owner, const XRect * rec, const USHORT id, const ULONG style, const char * s , const unsigned char *classStyle, const char*font=NULL);
public:
virtual ~XSettingButton() {;}
virtual BOOL IsSelected( void ) const ;
virtual void Select( BOOL select = TRUE);
};
#endif