Add IsUsingPreinstalledFonts API

This commit is contained in:
elasota
2021-04-15 20:03:06 -04:00
parent bd422d0eb3
commit 5dd8bf28f5
9 changed files with 25 additions and 0 deletions

View File

@@ -104,6 +104,11 @@ bool GpSystemServices_Android::AreFontResourcesSeekable() const
return false;
}
bool GpSystemServices_Android::IsUsingPreinstalledFonts() const
{
return false;
}
IGpClipboardContents *GpSystemServices_Android::GetClipboardContents() const
{
return nullptr;

View File

@@ -19,6 +19,7 @@ public:
void SetTextInputEnabled(bool isEnabled) override;
bool IsTextInputEnabled() const override;
bool AreFontResourcesSeekable() const override;
bool IsUsingPreinstalledFonts() const override;
IGpClipboardContents *GetClipboardContents() const override;
void SetClipboardContents(IGpClipboardContents *contents) override;