home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / slistbox.h_ / slistbox.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  765 b   |  37 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. //  SLISTBOX.H 
  10.  
  11. #if !defined(__SFX_SLISTBOX_H)
  12. #define __SFX_SLISTBOX_H
  13.  
  14. #if !defined(__OWL_LISTBOX_H)
  15.   #include <owl\listbox.h>
  16. #endif
  17.  
  18. //    class TSFXListBox
  19.  
  20. class _OWLCLASS TSFXListBox : public TListBox
  21. {
  22.   public:
  23.     TSFXListBox(TWindow*        parent,
  24.                 int             id,
  25.                 int x, int y, int w, int h,
  26.                 TModule*        module = 0);
  27.  
  28.     TSFXListBox(TWindow* parent, int resourceId, TModule*   module = 0);
  29.  
  30.   protected:
  31.     char far*    GetClassName();
  32.  
  33.   DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXListBox, TListBox);
  34. };
  35.  
  36. #endif //    __SFX_SLISTBOX_H
  37.