Glyphs.h 892 B

1234567891011121314151617181920212223242526
  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 *ArrowImages;
  18. TImageList *ButtonImages;
  19. public:
  20. __fastcall TGlyphsModule(TComponent * Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern PACKAGE TGlyphsModule * GlyphsModule;
  24. //---------------------------------------------------------------------------
  25. #endif