| 12345678910111213141516171819202122232425262728 |
- //---------------------------------------------------------------------------
- #ifndef GlyphsH
- #define GlyphsH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <ImgList.hpp>
- #include "PngImageList.hpp"
- //---------------------------------------------------------------------------
- class TGlyphsModule : public TDataModule
- {
- __published:
- TPngImageList *ExplorerImages;
- TPngImageList *SessionImages;
- TPngImageList *QueueImages;
- TPngImageList *LogImages;
- TImageList *ButtonImages;
- TPngImageList *DialogImages;
- public:
- __fastcall TGlyphsModule(TComponent * Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TGlyphsModule * GlyphsModule;
- const int SiteImageIndex = 103;
- const int SiteColorMaskImageIndex = 104;
- //---------------------------------------------------------------------------
- #endif
|