Glyphs.h 971 B

12345678910111213141516171819202122232425262728
  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. TPngImageList *LogImages;
  17. TImageList *ButtonImages;
  18. TPngImageList *DialogImages;
  19. public:
  20. __fastcall TGlyphsModule(TComponent * Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern PACKAGE TGlyphsModule * GlyphsModule;
  24. const int SiteImageIndex = 103;
  25. const int SiteColorMaskImageIndex = 104;
  26. //---------------------------------------------------------------------------
  27. #endif