51class PT_GFX_API FontRegistry
53 friend class FontProvider;
59 { FontRegistry::instance(); }
62 static FontRegistry& instance();
72 const std::vector<System::Path>& fontFiles()
const;
77 FontRegistry(
const FontRegistry&) =
delete;
79 FontRegistry& operator=(
const FontRegistry&) =
delete;
81 void registerProvider(FontProvider& provider);
83 void unregisterProvider(FontProvider& provider);
86 std::vector<System::Path> _fontFiles;
87 std::vector<FontProvider*> _providers;