|
@@ -12,6 +12,7 @@
|
|
|
#include <LibGfx/Font/Font.h>
|
|
|
#include <LibGfx/Font/FontDatabase.h>
|
|
|
#include <LibGfx/Font/OpenType/Font.h>
|
|
|
+#include <LibGfx/Font/ScaledFont.h>
|
|
|
#include <LibGfx/Font/WOFF/Font.h>
|
|
|
|
|
|
namespace Gfx {
|
|
@@ -23,8 +24,7 @@ FontDatabase& FontDatabase::the()
|
|
|
}
|
|
|
|
|
|
struct FontDatabase::Private {
|
|
|
- HashMap<ByteString, NonnullRefPtr<Gfx::Font>, CaseInsensitiveStringTraits> full_name_to_font_map;
|
|
|
- HashMap<FlyString, Vector<NonnullRefPtr<Typeface>>, AK::ASCIICaseInsensitiveFlyStringTraits> typefaces;
|
|
|
+ HashMap<FlyString, Vector<NonnullRefPtr<VectorFont>>, AK::ASCIICaseInsensitiveFlyStringTraits> typeface_by_family;
|
|
|
};
|
|
|
|
|
|
void FontDatabase::load_all_fonts_from_uri(StringView uri)
|
|
@@ -46,14 +46,18 @@ void FontDatabase::load_all_fonts_from_uri(StringView uri)
|
|
|
// FIXME: What about .otf
|
|
|
if (auto font_or_error = OpenType::Font::try_load_from_resource(resource); !font_or_error.is_error()) {
|
|
|
auto font = font_or_error.release_value();
|
|
|
- auto typeface = get_or_create_typeface(font->family(), font->variant());
|
|
|
- typeface->set_vector_font(move(font));
|
|
|
+ auto& family = m_private->typeface_by_family.ensure(font->family(), [] {
|
|
|
+ return Vector<NonnullRefPtr<VectorFont>> {};
|
|
|
+ });
|
|
|
+ family.append(font);
|
|
|
}
|
|
|
} else if (path.has_extension(".woff"sv)) {
|
|
|
if (auto font_or_error = WOFF::Font::try_load_from_resource(resource); !font_or_error.is_error()) {
|
|
|
auto font = font_or_error.release_value();
|
|
|
- auto typeface = get_or_create_typeface(font->family(), font->variant());
|
|
|
- typeface->set_vector_font(move(font));
|
|
|
+ auto& family = m_private->typeface_by_family.ensure(font->family(), [] {
|
|
|
+ return Vector<NonnullRefPtr<VectorFont>> {};
|
|
|
+ });
|
|
|
+ family.append(font);
|
|
|
}
|
|
|
}
|
|
|
return IterationDecision::Continue;
|
|
@@ -68,46 +72,32 @@ FontDatabase::FontDatabase()
|
|
|
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(FlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope)
|
|
|
{
|
|
|
- auto it = m_private->typefaces.find(family);
|
|
|
- if (it == m_private->typefaces.end())
|
|
|
+ auto it = m_private->typeface_by_family.find(family);
|
|
|
+ if (it == m_private->typeface_by_family.end())
|
|
|
return nullptr;
|
|
|
for (auto const& typeface : it->value) {
|
|
|
if (typeface->weight() == weight && typeface->width() == width && typeface->slope() == slope)
|
|
|
- return typeface->get_font(point_size);
|
|
|
+ return typeface->scaled_font(point_size);
|
|
|
}
|
|
|
return nullptr;
|
|
|
}
|
|
|
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(FlyString const& family, FlyString const& variant, float point_size)
|
|
|
{
|
|
|
- auto it = m_private->typefaces.find(family);
|
|
|
- if (it == m_private->typefaces.end())
|
|
|
+ auto it = m_private->typeface_by_family.find(family);
|
|
|
+ if (it == m_private->typeface_by_family.end())
|
|
|
return nullptr;
|
|
|
for (auto const& typeface : it->value) {
|
|
|
if (typeface->variant() == variant)
|
|
|
- return typeface->get_font(point_size);
|
|
|
+ return typeface->scaled_font(point_size);
|
|
|
}
|
|
|
return nullptr;
|
|
|
}
|
|
|
|
|
|
-RefPtr<Typeface> FontDatabase::get_or_create_typeface(FlyString const& family, FlyString const& variant)
|
|
|
+void FontDatabase::for_each_typeface_with_family_name(FlyString const& family_name, Function<void(VectorFont const&)> callback)
|
|
|
{
|
|
|
- auto it = m_private->typefaces.find(family);
|
|
|
- if (it != m_private->typefaces.end()) {
|
|
|
- for (auto const& typeface : it->value) {
|
|
|
- if (typeface->variant() == variant)
|
|
|
- return typeface;
|
|
|
- }
|
|
|
- }
|
|
|
- auto typeface = adopt_ref(*new Typeface(family, variant));
|
|
|
- m_private->typefaces.ensure(family).append(typeface);
|
|
|
- return typeface;
|
|
|
-}
|
|
|
-
|
|
|
-void FontDatabase::for_each_typeface_with_family_name(FlyString const& family_name, Function<void(Typeface const&)> callback)
|
|
|
-{
|
|
|
- auto it = m_private->typefaces.find(family_name);
|
|
|
- if (it == m_private->typefaces.end())
|
|
|
+ auto it = m_private->typeface_by_family.find(family_name);
|
|
|
+ if (it == m_private->typeface_by_family.end())
|
|
|
return;
|
|
|
for (auto const& typeface : it->value)
|
|
|
callback(*typeface);
|