home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dovetail.zip / COMBOBOX.H < prev    next >
C/C++ Source or Header  |  1994-04-05  |  642b  |  20 lines

  1. /*
  2.    Combination box.  Basically it has NO new operations:  it is just a
  3.    listbox plus entry field.  The only defined operation is just used to
  4.    select between conflicting char * conversion operators in the bases
  5. */
  6. #ifndef _COMBOBOX_INC
  7. #define _COMBOBOX_INC
  8. #include "efield.h"
  9. #include "listbox.h"
  10.  
  11. class Combobox : public Efield, public Listbox
  12.    {
  13.     public:
  14.                      Combobox (HWND,ULONG);
  15.                      Combobox (HWND,ULONG,SHORT,SHORT,SHORT,SHORT,
  16.                                ULONG=CBS_SIMPLE);
  17.                      operator char * () { return Efield::operator char *(); }
  18.    };
  19. #endif
  20.