home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / scombo.h_ / scombo.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  878 b   |  42 lines

  1. //    Microworks ObjectMate  2.6
  2. //
  3. //  "SFX Class Library"
  4. //
  5. //    An ObjectWindows 2.0 extension for Borland C++ 4.0
  6. //
  7. //    Copyright 1992-94 Microworks Sydney, Australia.
  8. //
  9. //  SCOMBO.H 
  10.  
  11. #if !defined(__SFX_SCOMBO_H)
  12. #define __SFX_SCOMBO_H
  13.  
  14. #if !defined(__OWL_COMBOBOX_H)
  15.   #include <owl\combobox.h>
  16. #endif
  17.  
  18. //    class TSFXComboBox
  19.  
  20. class _OWLCLASS TSFXComboBox : public TComboBox
  21. {
  22. public:
  23.     TSFXComboBox(TWindow*        parent,
  24.                  int             id,
  25.                  int x, int y, int w, int h,
  26.                  DWORD           style,
  27.                  UINT            textLen,
  28.                  TModule*        module = 0);
  29.  
  30.     TSFXComboBox(TWindow*   parent,
  31.                  int        resourceId,
  32.                  UINT       textLen = 0,
  33.                  TModule*   module = 0);
  34.  
  35.   protected:
  36.     char far*    GetClassName();
  37.  
  38.   DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXComboBox, TComboBox);
  39. };
  40.  
  41. #endif //    __SFX_SCOMBO_H
  42.