home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / scombo.cp_ / scombo.cp
Encoding:
Text File  |  1994-09-06  |  994 b   |  45 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.CPP 
  10.  
  11. #include <owl\owlpch.h>
  12. #include <sfx\sfx200.h>
  13. #include "sfx\scombo.h"
  14.  
  15. IMPLEMENT_STREAMABLE_FROM_BASE(TSFXComboBox, TComboBox);
  16.  
  17. //    constructor for a TSFXComboBox object
  18.  
  19. TSFXComboBox::TSFXComboBox(TWindow*        parent,
  20.                            int             id,
  21.                            int x, int y, int w, int h,
  22.                            DWORD           style,
  23.                            UINT            textLen,
  24.                            TModule*        module)
  25.     :TComboBox(parent, id, x, y, w, h, style, textLen, module)
  26. {
  27. }
  28.  
  29. //    constructor for a TSFXComboBox resource object
  30.  
  31. TSFXComboBox::TSFXComboBox(TWindow*   parent,
  32.                            int        resourceId,
  33.                            UINT       textLen,
  34.                            TModule*   module)
  35.   : TComboBox(parent, resourceId, textLen, module)
  36. {
  37. }
  38.  
  39. char far*
  40. TSFXComboBox::GetClassName()
  41. {
  42.     return "SFXCOMBOBOX";
  43. }
  44.  
  45.