home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / combobox.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  454b  |  30 lines

  1. #ifndef _COMBOBOX_H_
  2. #define _COMBOBOX_H_
  3.  
  4. #ifndef _LISTBOX_H_
  5. #include <pm/ListBox.h>
  6. #endif
  7.  
  8. @interface ComboBox : ListBox <Archiving>
  9. {
  10. }
  11.  
  12. - initWithId: (ULONG) anId andFlags: (ULONG) flags in: (Window *) parent;
  13.  
  14. - (HWND) entryField;
  15. - (HWND) listBox;
  16.  
  17. /*
  18.  * Methods for protocol "Archiving"
  19.  */
  20.  
  21. - awake;
  22. - read: (TypedStream *) aStream;
  23. - write: (TypedStream *) aStream;
  24.  
  25. - createInPMWindow: (HWND) hwnd;
  26.  
  27. @end
  28.  
  29. #endif
  30.