home *** CD-ROM | disk | FTP | other *** search
- // Microworks ObjectMate 2.6
- //
- // "SFX Class Library"
- //
- // An ObjectWindows 2.0 extension for Borland C++ 4.0
- //
- // Copyright 1992-94 Microworks Sydney, Australia.
- //
- // SLISTBOX.H
-
- #if !defined(__SFX_SLISTBOX_H)
- #define __SFX_SLISTBOX_H
-
- #if !defined(__OWL_LISTBOX_H)
- #include <owl\listbox.h>
- #endif
-
- // class TSFXListBox
-
- class _OWLCLASS TSFXListBox : public TListBox
- {
- public:
- TSFXListBox(TWindow* parent,
- int id,
- int x, int y, int w, int h,
- TModule* module = 0);
-
- TSFXListBox(TWindow* parent, int resourceId, TModule* module = 0);
-
- protected:
- char far* GetClassName();
-
- DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXListBox, TListBox);
- };
-
- #endif // __SFX_SLISTBOX_H
-