home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ool.zip
/
OOL
/
include
/
xcombo.h
< prev
next >
Wrap
Text File
|
1997-02-23
|
2KB
|
47 lines
#ifndef __OOL_XCOMBO_H__
#define __OOL_XCOMBO_H__
/*===========================================================================*/
/* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
/*===========================================================================*/
/* class: XComboBox */
/* derived from: XListBox */
/* last update: 12/96 */
/* programmed by: Stefan von Brauk (sbrauk@gwdg.de) */
/*===========================================================================*/
#include "xlistbox.h"
#ifdef OOL_FOR_OS2_X86
#define CB_SIMPLE CBS_SIMPLE
#define CB_DROPDOWN 0x0002
#define CB_DROPDOWNLIST 0x0004
#endif
class _export_ XComboBox: public XListBox{
friend void BuildChilds( HWND );
private:
XComboBox( const HWND hwnd): XListBox(hwnd) {;}
public:
XComboBox( const XWindow * owner, const XRect * rec, const USHORT id = 0, const ULONG style = CB_DROPDOWN | WIN_VISIBLE, const char*font=NULL );
virtual ~XComboBox() { ;}
void EnableOverWrite( const BOOL overWrite=TRUE) const ;
BOOL HasChanged(void) const ;
void Hilite( const BOOL hilite = TRUE) const ;
BOOL IsListShowing( void ) const ;
SHORT GetFirstChar( void ) const ;
BOOL IsReadOnly( void ) const ;
void GetSel( SHORT& start, SHORT& end);
void SetLimit( const USHORT len) const ;
void SetReadOnly( const BOOL readOnly = TRUE) const ;
void ShowList( const BOOL show = TRUE) const ;
};
#endif