mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:32:45 +00:00 
			
		
		
		
	 e29abc5395
			
		
	
	
		e29abc5395
		
	
	
	
	
		
			
			And make them more self-documenting. Previously these constraints were duplicated across multiple files.
		
			
				
	
	
		
			144 lines
		
	
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			144 lines
		
	
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Stephan Unverwerth <s.unverwerth@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Bitmap.h>
 | |
| #include <AK/ByteReader.h>
 | |
| #include <AK/RefCounted.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/String.h>
 | |
| #include <AK/Types.h>
 | |
| #include <LibCore/MappedFile.h>
 | |
| #include <LibGfx/Bitmap.h>
 | |
| #include <LibGfx/Size.h>
 | |
| 
 | |
| namespace Gfx {
 | |
| 
 | |
| // FIXME: Make a MutableGlyphBitmap buddy class for FontEditor instead?
 | |
| class GlyphBitmap {
 | |
| public:
 | |
|     GlyphBitmap() = default;
 | |
|     GlyphBitmap(const u8* rows, size_t start_index, IntSize size)
 | |
|         : m_rows(rows)
 | |
|         , m_start_index(start_index)
 | |
|         , m_size(size)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     unsigned row(unsigned index) const { return ByteReader::load32(bitmap(index).data()); }
 | |
| 
 | |
|     bool bit_at(int x, int y) const { return bitmap(y).get(x); }
 | |
|     void set_bit_at(int x, int y, bool b) { bitmap(y).set(x, b); }
 | |
| 
 | |
|     IntSize size() const { return m_size; }
 | |
|     int width() const { return m_size.width(); }
 | |
|     int height() const { return m_size.height(); }
 | |
| 
 | |
|     static constexpr size_t bytes_per_row() { return sizeof(u32); }
 | |
|     static constexpr int max_width() { return bytes_per_row() * 8; }
 | |
|     static constexpr int max_height() { return max_width() + bytes_per_row(); }
 | |
| 
 | |
| private:
 | |
|     AK::Bitmap bitmap(size_t y) const
 | |
|     {
 | |
|         return { const_cast<u8*>(m_rows) + bytes_per_row() * (m_start_index + y), bytes_per_row() * 8 };
 | |
|     }
 | |
| 
 | |
|     const u8* m_rows { nullptr };
 | |
|     size_t m_start_index { 0 };
 | |
|     IntSize m_size { 0, 0 };
 | |
| };
 | |
| 
 | |
| class Glyph {
 | |
| public:
 | |
|     Glyph(const GlyphBitmap& glyph_bitmap, int left_bearing, int advance, int ascent)
 | |
|         : m_glyph_bitmap(glyph_bitmap)
 | |
|         , m_left_bearing(left_bearing)
 | |
|         , m_advance(advance)
 | |
|         , m_ascent(ascent)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     Glyph(RefPtr<Bitmap> bitmap, int left_bearing, int advance, int ascent)
 | |
|         : m_bitmap(bitmap)
 | |
|         , m_left_bearing(left_bearing)
 | |
|         , m_advance(advance)
 | |
|         , m_ascent(ascent)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     bool is_glyph_bitmap() const { return !m_bitmap; }
 | |
|     GlyphBitmap glyph_bitmap() const { return m_glyph_bitmap; }
 | |
|     RefPtr<Bitmap> bitmap() const { return m_bitmap; }
 | |
|     int left_bearing() const { return m_left_bearing; }
 | |
|     int advance() const { return m_advance; }
 | |
|     int ascent() const { return m_ascent; }
 | |
| 
 | |
| private:
 | |
|     GlyphBitmap m_glyph_bitmap;
 | |
|     RefPtr<Bitmap> m_bitmap;
 | |
|     int m_left_bearing;
 | |
|     int m_advance;
 | |
|     int m_ascent;
 | |
| };
 | |
| 
 | |
| struct FontMetrics {
 | |
|     float size { 0 };
 | |
|     float x_height { 0 };
 | |
|     float glyph_width { 0 };
 | |
|     float glyph_spacing { 0 };
 | |
| };
 | |
| 
 | |
| class Font : public RefCounted<Font> {
 | |
| public:
 | |
|     virtual NonnullRefPtr<Font> clone() const = 0;
 | |
|     virtual ~Font() {};
 | |
| 
 | |
|     FontMetrics metrics(u32 code_point) const;
 | |
| 
 | |
|     virtual u8 presentation_size() const = 0;
 | |
| 
 | |
|     virtual u16 weight() const = 0;
 | |
|     virtual Glyph glyph(u32 code_point) const = 0;
 | |
|     virtual bool contains_glyph(u32 code_point) const = 0;
 | |
| 
 | |
|     virtual u8 glyph_width(u32 code_point) const = 0;
 | |
|     virtual int glyph_or_emoji_width(u32 code_point) const = 0;
 | |
|     virtual u8 glyph_height() const = 0;
 | |
|     virtual int x_height() const = 0;
 | |
| 
 | |
|     virtual u8 min_glyph_width() const = 0;
 | |
|     virtual u8 max_glyph_width() const = 0;
 | |
|     virtual u8 glyph_fixed_width() const = 0;
 | |
| 
 | |
|     virtual u8 baseline() const = 0;
 | |
|     virtual u8 mean_line() const = 0;
 | |
| 
 | |
|     virtual int width(StringView) const = 0;
 | |
|     virtual int width(const Utf8View&) const = 0;
 | |
|     virtual int width(const Utf32View&) const = 0;
 | |
| 
 | |
|     virtual String name() const = 0;
 | |
| 
 | |
|     virtual bool is_fixed_width() const = 0;
 | |
| 
 | |
|     virtual u8 glyph_spacing() const = 0;
 | |
| 
 | |
|     virtual size_t glyph_count() const = 0;
 | |
| 
 | |
|     virtual String family() const = 0;
 | |
|     virtual String variant() const = 0;
 | |
| 
 | |
|     virtual String qualified_name() const = 0;
 | |
| 
 | |
|     Font const& bold_variant() const;
 | |
| 
 | |
| private:
 | |
|     mutable RefPtr<Gfx::Font> m_bold_variant;
 | |
| };
 | |
| 
 | |
| }
 |