ImagesDirectory and FontsDirectory

This commit is contained in:
Kulikova Svetlana
2021-01-29 13:00:59 +03:00
parent c764cce0da
commit c33c5d7b2e
7 changed files with 12 additions and 22 deletions

View File

@ -113,9 +113,9 @@ namespace NSGraphics
class CGraphics
{
public:
static std::wstring m_sApplicationFontsDirectory;
static std::wstring m_sApplicationImagesDirectory;
static std::wstring m_sApplicationThemesDirectory;
std::wstring m_sApplicationFontsDirectory;
std::wstring m_sApplicationImagesDirectory;
std::wstring m_sApplicationThemesDirectory;
private:
NSFonts ::IApplicationFonts* m_pApplicationFonts;
@ -131,7 +131,7 @@ namespace NSGraphics
RELEASEINTERFACE(m_pApplicationFonts);
}
void init(double width_px, double height_px, double width_mm, double height_mm);
void init(std::wstring ImagesDirectory, std::wstring FontsDirectory, double width_px, double height_px, double width_mm, double height_mm);
void EndDraw() {}
void put_GlobalAlpha(bool enable, double globalAlpha);
void Start_GlobalAlpha() {}