Glyphs.cpp 1014 B

12345678910111213141516171819202122232425262728
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Global.h"
  5. #include "Glyphs.h"
  6. #include "GUITools.h"
  7. //---------------------------------------------------------------------------
  8. #pragma package(smart_init)
  9. #pragma link "PngImageList"
  10. #ifndef NO_RESOURCES
  11. #pragma resource "*.dfm"
  12. #endif
  13. //---------------------------------------------------------------------------
  14. TGlyphsModule * GlyphsModule;
  15. //---------------------------------------------------------------------------
  16. __fastcall TGlyphsModule::TGlyphsModule(TComponent* Owner)
  17. : TDataModule(Owner)
  18. {
  19. SelectScaledImageList(ExplorerImages);
  20. SelectScaledImageList(SessionImages);
  21. SelectScaledImageList(QueueImages);
  22. SelectScaledImageList(ButtonImages);
  23. SelectScaledImageList(LogImages);
  24. SelectScaledImageList(DialogImages);
  25. SelectScaledImageList(AnimationImages);
  26. }
  27. //---------------------------------------------------------------------------