mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/FlyString.h>
 | 
						|
#include <AK/HashMap.h>
 | 
						|
#include <AK/String.h>
 | 
						|
#include <LibGfx/Font.h>
 | 
						|
#include <LibGfx/Forward.h>
 | 
						|
 | 
						|
struct FontSelector {
 | 
						|
    FlyString family;
 | 
						|
    int size { 0 };
 | 
						|
    int weight { 0 };
 | 
						|
    int slope { 0 };
 | 
						|
 | 
						|
    bool operator==(const FontSelector& other) const
 | 
						|
    {
 | 
						|
        return family == other.family && size == other.size && weight == other.weight && slope == other.slope;
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
namespace AK {
 | 
						|
template<>
 | 
						|
struct Traits<FontSelector> : public GenericTraits<FontSelector> {
 | 
						|
    static unsigned hash(const FontSelector& key) { return pair_int_hash(pair_int_hash(key.family.hash(), key.weight), key.size); }
 | 
						|
};
 | 
						|
}
 | 
						|
 | 
						|
class FontCache {
 | 
						|
public:
 | 
						|
    static FontCache& the();
 | 
						|
    RefPtr<Gfx::Font> get(const FontSelector&) const;
 | 
						|
    void set(const FontSelector&, NonnullRefPtr<Gfx::Font>);
 | 
						|
 | 
						|
private:
 | 
						|
    FontCache() = default;
 | 
						|
    mutable HashMap<FontSelector, NonnullRefPtr<Gfx::Font>> m_fonts;
 | 
						|
};
 |