mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:32:43 +00:00 
			
		
		
		
	 6e19ab2bbc
			
		
	
	
		6e19ab2bbc
		
	
	
	
	
		
			
			We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/DeprecatedString.h>
 | |
| #include <AK/Noncopyable.h>
 | |
| #include <AK/OwnPtr.h>
 | |
| #include <AK/RefCounted.h>
 | |
| #include <LibCore/MappedFile.h>
 | |
| #include <LibGfx/Bitmap.h>
 | |
| #include <LibGfx/Font/VectorFont.h>
 | |
| 
 | |
| namespace WOFF {
 | |
| 
 | |
| class Font : public Gfx::VectorFont {
 | |
|     AK_MAKE_NONCOPYABLE(Font);
 | |
| 
 | |
| public:
 | |
|     static ErrorOr<NonnullRefPtr<Font>> try_load_from_file(DeprecatedString path, unsigned index = 0);
 | |
|     static ErrorOr<NonnullRefPtr<Font>> try_load_from_externally_owned_memory(ReadonlyBytes bytes, unsigned index = 0);
 | |
| 
 | |
|     virtual Gfx::ScaledFontMetrics metrics(float x_scale, float y_scale) const override { return m_input_font->metrics(x_scale, y_scale); }
 | |
|     virtual Gfx::ScaledGlyphMetrics glyph_metrics(u32 glyph_id, float x_scale, float y_scale) const override { return m_input_font->glyph_metrics(glyph_id, x_scale, y_scale); }
 | |
|     virtual float glyphs_horizontal_kerning(u32 left_glyph_id, u32 right_glyph_id, float x_scale) const override { return m_input_font->glyphs_horizontal_kerning(left_glyph_id, right_glyph_id, x_scale); }
 | |
|     virtual RefPtr<Gfx::Bitmap> rasterize_glyph(u32 glyph_id, float x_scale, float y_scale) const override { return m_input_font->rasterize_glyph(glyph_id, x_scale, y_scale); }
 | |
|     virtual u32 glyph_count() const override { return m_input_font->glyph_count(); }
 | |
|     virtual u16 units_per_em() const override { return m_input_font->units_per_em(); }
 | |
|     virtual u32 glyph_id_for_code_point(u32 code_point) const override { return m_input_font->glyph_id_for_code_point(code_point); }
 | |
|     virtual DeprecatedString family() const override { return m_input_font->family(); }
 | |
|     virtual DeprecatedString variant() const override { return m_input_font->variant(); }
 | |
|     virtual u16 weight() const override { return m_input_font->weight(); }
 | |
|     virtual u8 slope() const override { return m_input_font->slope(); }
 | |
|     virtual bool is_fixed_width() const override { return m_input_font->is_fixed_width(); }
 | |
| 
 | |
| private:
 | |
|     Font(NonnullRefPtr<Gfx::VectorFont> input_font, ByteBuffer input_font_buffer)
 | |
|         : m_input_font_buffer(move(input_font_buffer))
 | |
|         , m_input_font(move(input_font))
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     ByteBuffer m_input_font_buffer;
 | |
|     NonnullRefPtr<Gfx::VectorFont> m_input_font;
 | |
| };
 | |
| 
 | |
| }
 |