Glyphs.h 942 B

123456789101112131415161718192021222324252627
  1. //---------------------------------------------------------------------------
  2. #ifndef GlyphsH
  3. #define GlyphsH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <ImgList.hpp>
  8. #include "PngImageList.hpp"
  9. //---------------------------------------------------------------------------
  10. class TGlyphsModule : public TDataModule
  11. {
  12. __published:
  13. TPngImageList *ExplorerImages;
  14. TPngImageList *SessionImages;
  15. TPngImageList *QueueImages;
  16. TImageList *ButtonImages;
  17. TPngImageList *DialogImages;
  18. public:
  19. __fastcall TGlyphsModule(TComponent * Owner);
  20. };
  21. //---------------------------------------------------------------------------
  22. extern PACKAGE TGlyphsModule * GlyphsModule;
  23. const int SiteImageIndex = 103;
  24. const int SiteColorMaskImageIndex = 104;
  25. //---------------------------------------------------------------------------
  26. #endif