Glyphs.h 824 B

123456789101112131415161718192021222324
  1. //---------------------------------------------------------------------------
  2. #ifndef GlyphsH
  3. #define GlyphsH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <ImgList.hpp>
  8. //---------------------------------------------------------------------------
  9. class TGlyphsModule : public TDataModule
  10. {
  11. __published:
  12. TImageList *ExplorerImages;
  13. TImageList *SessionImages;
  14. TImageList *QueueImages;
  15. TImageList *LogImages;
  16. TImageList *ArrowImages;
  17. public:
  18. __fastcall TGlyphsModule(TComponent * Owner);
  19. };
  20. //---------------------------------------------------------------------------
  21. extern PACKAGE TGlyphsModule * GlyphsModule;
  22. //---------------------------------------------------------------------------
  23. #endif