home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 9.ddi / TVSRC.ZIP / SCLRSEL.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  2.9 KB  |  69 lines

  1. /*------------------------------------------------------------*/
  2. /* filename -       sclrsel.cpp                               */
  3. /*                                                            */
  4. /* Registeration objects for the following classes:           */
  5. /*                      TColorSelector                        */
  6. /*                      TMonoSelector                         */
  7. /*                      TColorDisplay                         */
  8. /*                      TColorGroupList                       */
  9. /*                      TColorItemList                        */
  10. /*                      TColorDialog                          */
  11. /*------------------------------------------------------------*/
  12.                                                               
  13. /*------------------------------------------------------------*/
  14. /*                                                            */
  15. /*    Turbo Vision -  Version 1.0                             */
  16. /*                                                            */
  17. /*                                                            */
  18. /*    Copyright (c) 1991 by Borland International             */
  19. /*    All Rights Reserved.                                    */
  20. /*                                                            */
  21. /*------------------------------------------------------------*/
  22.  
  23. #define Uses_TColorSelector
  24. #define Uses_TMonoSelector
  25. #define Uses_TColorDisplay
  26. #define Uses_TColorGroupList
  27. #define Uses_TColorItemList
  28. #define Uses_TColorDialog
  29. #define Uses_TStreamableClass
  30. #include <tv.h>
  31. __link( RCluster )
  32. __link( RView )
  33. __link( RLabel )
  34. __link( RButton )
  35. __link( RListViewer )
  36. __link( RDialog )
  37.  
  38. TStreamableClass RColorSelector( TColorSelector::name,
  39.                                  TColorSelector::build,
  40.                                  __DELTA(TColorSelector)      
  41.                                );
  42.  
  43. TStreamableClass RMonoSelector( TMonoSelector::name,
  44.                                 TMonoSelector::build,
  45.                                 __DELTA(TMonoSelector)
  46.                               );
  47.  
  48. TStreamableClass RColorDisplay( TColorDisplay::name,
  49.                                 TColorDisplay::build,
  50.                                 __DELTA(TColorDisplay)
  51.                               );
  52.  
  53. TStreamableClass RColorGroupList( TColorGroupList::name,
  54.                                   TColorGroupList::build,
  55.                                   __DELTA(TColorGroupList)                          
  56.                                 );
  57.  
  58.  
  59. TStreamableClass RColorItemList( TColorItemList::name,
  60.                                  TColorItemList::build,
  61.                                  __DELTA(TColorItemList)
  62.                                );
  63.  
  64. TStreamableClass RColorDialog( TColorDialog::name,
  65.                                TColorDialog::build,
  66.                                __DELTA(TColorDialog)
  67.                              );
  68.  
  69.