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

  1. #ifndef __OOL_XCOMBO_H__
  2. #define __OOL_XCOMBO_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XComboBox                             */
  8. /*                       derived from: XListBox                              */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14.  
  15.  
  16. #include "xlistbox.h"
  17.  
  18. #ifdef OOL_FOR_OS2_X86
  19.  
  20.    #define CB_SIMPLE        CBS_SIMPLE
  21.    #define CB_DROPDOWN      0x0002
  22.    #define CB_DROPDOWNLIST  0x0004
  23.  
  24. #endif
  25.  
  26. class _export_ XComboBox: public XListBox{
  27.       friend void BuildChilds( HWND );
  28.    private:
  29.       XComboBox( const HWND hwnd): XListBox(hwnd) {;}
  30.    public:
  31.       XComboBox( const XWindow * owner, const XRect * rec, const USHORT id = 0, const ULONG style = CB_DROPDOWN | WIN_VISIBLE, const char*font=NULL );
  32.       virtual ~XComboBox() { ;}
  33.       void EnableOverWrite( const BOOL overWrite=TRUE) const ;
  34.       BOOL HasChanged(void) const ;
  35.       void Hilite( const BOOL hilite = TRUE) const ;
  36.       BOOL IsListShowing( void ) const ;
  37.       SHORT GetFirstChar( void ) const ;
  38.       BOOL IsReadOnly( void ) const ;
  39.       void GetSel( SHORT& start, SHORT& end);
  40.       void SetLimit( const USHORT len) const ;
  41.       void SetReadOnly( const BOOL readOnly = TRUE) const ;
  42.       void ShowList( const BOOL show = TRUE) const ;
  43. };
  44.  
  45.  
  46. #endif
  47.