mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	 73fdbba59c
			
		
	
	
		73fdbba59c
		
	
	
	
	
		
			
			This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
		
			
				
	
	
		
			109 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/RefCounted.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/StringView.h>
 | |
| #include <LibHTML/CSS/Length.h>
 | |
| 
 | |
| class StyleValue : public RefCounted<StyleValue> {
 | |
| public:
 | |
|     virtual ~StyleValue();
 | |
| 
 | |
|     enum class Type {
 | |
|         Invalid,
 | |
|         Inherit,
 | |
|         Initial,
 | |
|         String,
 | |
|         Length,
 | |
|     };
 | |
| 
 | |
|     Type type() const { return m_type; }
 | |
| 
 | |
|     bool is_inherit() const { return type() == Type::Inherit; }
 | |
|     bool is_initial() const { return type() == Type::Initial; }
 | |
| 
 | |
|     virtual String to_string() const = 0;
 | |
|     virtual Length to_length() const { return {}; }
 | |
| 
 | |
|     virtual bool is_auto() const { return false; }
 | |
| 
 | |
| protected:
 | |
|     explicit StyleValue(Type);
 | |
| 
 | |
| private:
 | |
|     Type m_type { Type::Invalid };
 | |
| };
 | |
| 
 | |
| class StringStyleValue : public StyleValue {
 | |
| public:
 | |
|     static NonnullRefPtr<StringStyleValue> create(const String& string)
 | |
|     {
 | |
|         return adopt(*new StringStyleValue(string));
 | |
|     }
 | |
|     virtual ~StringStyleValue() override {}
 | |
| 
 | |
|     String to_string() const override { return m_string; }
 | |
| 
 | |
| private:
 | |
|     explicit StringStyleValue(const String& string)
 | |
|         : StyleValue(Type::String)
 | |
|         , m_string(string)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     String m_string;
 | |
| };
 | |
| 
 | |
| class LengthStyleValue : public StyleValue {
 | |
| public:
 | |
|     static NonnullRefPtr<LengthStyleValue> create(const Length& length)
 | |
|     {
 | |
|         return adopt(*new LengthStyleValue(length));
 | |
|     }
 | |
|     virtual ~LengthStyleValue() override {}
 | |
| 
 | |
|     virtual String to_string() const override { return m_length.to_string(); }
 | |
|     virtual Length to_length() const override { return m_length; }
 | |
| 
 | |
|     const Length& length() const { return m_length; }
 | |
| 
 | |
|     virtual bool is_auto() const override { return m_length.is_auto(); }
 | |
| 
 | |
| private:
 | |
|     explicit LengthStyleValue(const Length& length)
 | |
|         : StyleValue(Type::Length)
 | |
|         , m_length(length)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     Length m_length;
 | |
| };
 | |
| 
 | |
| class InitialStyleValue final : public StyleValue {
 | |
| public:
 | |
|     static NonnullRefPtr<InitialStyleValue> create() { return adopt(*new InitialStyleValue); }
 | |
|     virtual ~InitialStyleValue() override {}
 | |
| 
 | |
|     String to_string() const override { return "initial"; }
 | |
| 
 | |
| private:
 | |
|     InitialStyleValue()
 | |
|         : StyleValue(Type::Initial)
 | |
|     {
 | |
|     }
 | |
| };
 | |
| 
 | |
| class InheritStyleValue final : public StyleValue {
 | |
| public:
 | |
|     static NonnullRefPtr<InheritStyleValue> create() { return adopt(*new InheritStyleValue); }
 | |
|     virtual ~InheritStyleValue() override {}
 | |
| 
 | |
|     String to_string() const override { return "inherit"; }
 | |
| 
 | |
| private:
 | |
|     InheritStyleValue()
 | |
|         : StyleValue(Type::Inherit)
 | |
|     {
 | |
|     }
 | |
| };
 |