2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-06-21 00:25:25 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-21 19:58:45 +03:00
|
|
|
#include <AK/RefCounted.h>
|
2019-06-22 22:48:21 +03:00
|
|
|
#include <AK/RefPtr.h>
|
2019-09-28 23:18:19 +03:00
|
|
|
#include <AK/String.h>
|
2019-06-22 22:48:21 +03:00
|
|
|
#include <AK/StringView.h>
|
2019-10-19 12:49:46 +03:00
|
|
|
#include <AK/URL.h>
|
|
|
|
#include <AK/WeakPtr.h>
|
2020-02-06 14:07:05 +03:00
|
|
|
#include <LibGfx/Bitmap.h>
|
2020-06-02 14:51:30 +03:00
|
|
|
#include <LibGfx/Color.h>
|
2020-03-07 12:32:51 +03:00
|
|
|
#include <LibWeb/CSS/Length.h>
|
|
|
|
#include <LibWeb/CSS/PropertyID.h>
|
2020-06-06 00:32:23 +03:00
|
|
|
#include <LibWeb/Loader/ImageResource.h>
|
2019-06-21 00:25:25 +03:00
|
|
|
|
2020-03-07 12:27:02 +03:00
|
|
|
namespace Web {
|
|
|
|
|
2019-10-06 11:25:08 +03:00
|
|
|
class Document;
|
|
|
|
|
|
|
|
namespace CSS {
|
|
|
|
enum class ValueID {
|
|
|
|
Invalid,
|
|
|
|
VendorSpecificLink,
|
2020-05-25 21:54:27 +03:00
|
|
|
VendorSpecificPaletteDesktopBackground,
|
|
|
|
VendorSpecificPaletteActiveWindowBorder1,
|
|
|
|
VendorSpecificPaletteActiveWindowBorder2,
|
|
|
|
VendorSpecificPaletteActiveWindowTitle,
|
|
|
|
VendorSpecificPaletteInactiveWindowBorder1,
|
|
|
|
VendorSpecificPaletteInactiveWindowBorder2,
|
|
|
|
VendorSpecificPaletteInactiveWindowTitle,
|
|
|
|
VendorSpecificPaletteMovingWindowBorder1,
|
|
|
|
VendorSpecificPaletteMovingWindowBorder2,
|
|
|
|
VendorSpecificPaletteMovingWindowTitle,
|
|
|
|
VendorSpecificPaletteHighlightWindowBorder1,
|
|
|
|
VendorSpecificPaletteHighlightWindowBorder2,
|
|
|
|
VendorSpecificPaletteHighlightWindowTitle,
|
|
|
|
VendorSpecificPaletteMenuStripe,
|
|
|
|
VendorSpecificPaletteMenuBase,
|
|
|
|
VendorSpecificPaletteMenuBaseText,
|
|
|
|
VendorSpecificPaletteMenuSelection,
|
|
|
|
VendorSpecificPaletteMenuSelectionText,
|
|
|
|
VendorSpecificPaletteWindow,
|
|
|
|
VendorSpecificPaletteWindowText,
|
|
|
|
VendorSpecificPaletteButton,
|
|
|
|
VendorSpecificPaletteButtonText,
|
|
|
|
VendorSpecificPaletteBase,
|
|
|
|
VendorSpecificPaletteBaseText,
|
|
|
|
VendorSpecificPaletteThreedHighlight,
|
|
|
|
VendorSpecificPaletteThreedShadow1,
|
|
|
|
VendorSpecificPaletteThreedShadow2,
|
|
|
|
VendorSpecificPaletteHoverHighlight,
|
|
|
|
VendorSpecificPaletteSelection,
|
|
|
|
VendorSpecificPaletteSelectionText,
|
|
|
|
VendorSpecificPaletteInactiveSelection,
|
|
|
|
VendorSpecificPaletteInactiveSelectionText,
|
|
|
|
VendorSpecificPaletteRubberBandFill,
|
|
|
|
VendorSpecificPaletteRubberBandBorder,
|
|
|
|
VendorSpecificPaletteLink,
|
|
|
|
VendorSpecificPaletteActiveLink,
|
|
|
|
VendorSpecificPaletteVisitedLink,
|
|
|
|
VendorSpecificPaletteRuler,
|
|
|
|
VendorSpecificPaletteRulerBorder,
|
|
|
|
VendorSpecificPaletteRulerActiveText,
|
|
|
|
VendorSpecificPaletteRulerInactiveText,
|
|
|
|
VendorSpecificPaletteTextCursor,
|
|
|
|
VendorSpecificPaletteFocusOutline,
|
|
|
|
VendorSpecificPaletteSyntaxComment,
|
|
|
|
VendorSpecificPaletteSyntaxNumber,
|
|
|
|
VendorSpecificPaletteSyntaxString,
|
|
|
|
VendorSpecificPaletteSyntaxType,
|
|
|
|
VendorSpecificPaletteSyntaxPunctuation,
|
|
|
|
VendorSpecificPaletteSyntaxOperator,
|
|
|
|
VendorSpecificPaletteSyntaxKeyword,
|
|
|
|
VendorSpecificPaletteSyntaxControlKeyword,
|
|
|
|
VendorSpecificPaletteSyntaxIdentifier,
|
|
|
|
VendorSpecificPaletteSyntaxPreprocessorStatement,
|
|
|
|
VendorSpecificPaletteSyntaxPreprocessorValue,
|
2019-10-16 21:32:17 +03:00
|
|
|
Center,
|
|
|
|
Left,
|
|
|
|
Right,
|
2019-10-20 13:30:25 +03:00
|
|
|
Justify,
|
2020-06-13 11:54:58 +03:00
|
|
|
VendorSpecificCenter,
|
2019-10-06 11:25:08 +03:00
|
|
|
};
|
2020-03-23 19:29:15 +03:00
|
|
|
|
|
|
|
enum class Position {
|
|
|
|
Static,
|
|
|
|
Relative,
|
|
|
|
Absolute,
|
|
|
|
Fixed,
|
|
|
|
Sticky,
|
|
|
|
};
|
2020-06-24 00:28:40 +03:00
|
|
|
|
|
|
|
enum class TextAlign {
|
|
|
|
Left,
|
|
|
|
Center,
|
|
|
|
Right,
|
|
|
|
Justify,
|
|
|
|
VendorSpecificCenter,
|
|
|
|
};
|
|
|
|
|
2019-10-06 11:25:08 +03:00
|
|
|
}
|
|
|
|
|
2019-06-21 16:29:31 +03:00
|
|
|
class StyleValue : public RefCounted<StyleValue> {
|
2019-06-21 00:25:25 +03:00
|
|
|
public:
|
|
|
|
virtual ~StyleValue();
|
|
|
|
|
2019-07-03 08:55:22 +03:00
|
|
|
enum class Type {
|
2019-06-21 00:25:25 +03:00
|
|
|
Invalid,
|
|
|
|
Inherit,
|
|
|
|
Initial,
|
2019-07-03 08:55:22 +03:00
|
|
|
String,
|
|
|
|
Length,
|
2020-05-12 00:04:59 +03:00
|
|
|
Percentage,
|
2019-09-28 23:18:19 +03:00
|
|
|
Color,
|
2019-10-06 11:25:08 +03:00
|
|
|
Identifier,
|
2019-10-19 12:49:46 +03:00
|
|
|
Image,
|
2020-03-23 19:29:15 +03:00
|
|
|
Position,
|
2019-06-21 00:25:25 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
Type type() const { return m_type; }
|
|
|
|
|
2019-07-08 08:14:23 +03:00
|
|
|
bool is_inherit() const { return type() == Type::Inherit; }
|
|
|
|
bool is_initial() const { return type() == Type::Initial; }
|
2019-09-29 19:05:37 +03:00
|
|
|
bool is_color() const { return type() == Type::Color; }
|
2019-10-06 11:25:08 +03:00
|
|
|
bool is_identifier() const { return type() == Type::Identifier; }
|
2019-10-19 12:49:46 +03:00
|
|
|
bool is_image() const { return type() == Type::Image; }
|
2019-11-18 13:49:19 +03:00
|
|
|
bool is_string() const { return type() == Type::String; }
|
|
|
|
bool is_length() const { return type() == Type::Length; }
|
2020-05-12 00:04:59 +03:00
|
|
|
bool is_percentage() const { return type() == Type::Percentage; }
|
2020-03-23 19:29:15 +03:00
|
|
|
bool is_position() const { return type() == Type::Position; }
|
2019-07-08 08:14:23 +03:00
|
|
|
|
2019-06-25 07:31:47 +03:00
|
|
|
virtual String to_string() const = 0;
|
2020-06-24 12:08:46 +03:00
|
|
|
virtual Length to_length() const { return Length::make_auto(); }
|
2019-10-06 11:25:08 +03:00
|
|
|
virtual Color to_color(const Document&) const { return {}; }
|
2019-06-25 07:31:47 +03:00
|
|
|
|
2019-08-18 09:09:56 +03:00
|
|
|
virtual bool is_auto() const { return false; }
|
|
|
|
|
2019-06-21 00:25:25 +03:00
|
|
|
protected:
|
|
|
|
explicit StyleValue(Type);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type { Type::Invalid };
|
|
|
|
};
|
2019-06-22 22:48:21 +03:00
|
|
|
|
2019-07-03 08:55:22 +03:00
|
|
|
class StringStyleValue : public StyleValue {
|
2019-06-22 22:48:21 +03:00
|
|
|
public:
|
2019-07-04 16:49:16 +03:00
|
|
|
static NonnullRefPtr<StringStyleValue> create(const String& string)
|
2019-06-22 22:48:21 +03:00
|
|
|
{
|
2019-07-04 16:49:16 +03:00
|
|
|
return adopt(*new StringStyleValue(string));
|
2019-06-22 22:48:21 +03:00
|
|
|
}
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~StringStyleValue() override { }
|
2019-06-22 22:48:21 +03:00
|
|
|
|
2019-06-25 07:31:47 +03:00
|
|
|
String to_string() const override { return m_string; }
|
2019-06-22 22:48:21 +03:00
|
|
|
|
|
|
|
private:
|
2019-07-04 16:49:16 +03:00
|
|
|
explicit StringStyleValue(const String& string)
|
|
|
|
: StyleValue(Type::String)
|
|
|
|
, m_string(string)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-06-22 22:48:21 +03:00
|
|
|
String m_string;
|
|
|
|
};
|
2019-07-03 08:55:22 +03:00
|
|
|
|
|
|
|
class LengthStyleValue : public StyleValue {
|
|
|
|
public:
|
2019-07-04 16:49:16 +03:00
|
|
|
static NonnullRefPtr<LengthStyleValue> create(const Length& length)
|
2019-07-03 08:55:22 +03:00
|
|
|
{
|
2019-07-04 16:49:16 +03:00
|
|
|
return adopt(*new LengthStyleValue(length));
|
2019-07-03 08:55:22 +03:00
|
|
|
}
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~LengthStyleValue() override { }
|
2019-07-03 08:55:22 +03:00
|
|
|
|
2019-07-26 09:05:14 +03:00
|
|
|
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; }
|
2019-07-03 08:55:22 +03:00
|
|
|
|
2019-08-18 09:09:56 +03:00
|
|
|
virtual bool is_auto() const override { return m_length.is_auto(); }
|
|
|
|
|
2019-07-03 08:55:22 +03:00
|
|
|
private:
|
2019-07-04 16:49:16 +03:00
|
|
|
explicit LengthStyleValue(const Length& length)
|
|
|
|
: StyleValue(Type::Length)
|
|
|
|
, m_length(length)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-07-03 08:55:22 +03:00
|
|
|
Length m_length;
|
|
|
|
};
|
2019-07-08 08:14:23 +03:00
|
|
|
|
2020-05-12 00:04:59 +03:00
|
|
|
class PercentageStyleValue : public StyleValue {
|
|
|
|
public:
|
|
|
|
static NonnullRefPtr<PercentageStyleValue> create(float percentage)
|
|
|
|
{
|
|
|
|
return adopt(*new PercentageStyleValue(percentage));
|
|
|
|
}
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~PercentageStyleValue() override { }
|
2020-05-12 00:04:59 +03:00
|
|
|
|
|
|
|
virtual String to_string() const override { return String::format("%g%%", m_percentage); }
|
|
|
|
|
2020-06-07 18:55:46 +03:00
|
|
|
Length to_length(float reference) const { return Length((m_percentage / 100.0f) * reference, Length::Type::Px); }
|
2020-05-12 00:04:59 +03:00
|
|
|
|
|
|
|
private:
|
2020-06-24 12:08:46 +03:00
|
|
|
virtual Length to_length() const override { return Length::make_auto(); }
|
2020-05-12 00:04:59 +03:00
|
|
|
virtual bool is_auto() const override { return false; }
|
|
|
|
|
|
|
|
explicit PercentageStyleValue(float percentage)
|
|
|
|
: StyleValue(Type::Percentage)
|
|
|
|
, m_percentage(percentage)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
float m_percentage { 0 };
|
|
|
|
};
|
|
|
|
|
2019-07-08 08:14:23 +03:00
|
|
|
class InitialStyleValue final : public StyleValue {
|
|
|
|
public:
|
|
|
|
static NonnullRefPtr<InitialStyleValue> create() { return adopt(*new InitialStyleValue); }
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~InitialStyleValue() override { }
|
2019-07-08 08:14:23 +03:00
|
|
|
|
|
|
|
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); }
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~InheritStyleValue() override { }
|
2019-07-08 08:14:23 +03:00
|
|
|
|
|
|
|
String to_string() const override { return "inherit"; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
InheritStyleValue()
|
|
|
|
: StyleValue(Type::Inherit)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
2019-09-28 23:18:19 +03:00
|
|
|
|
|
|
|
class ColorStyleValue : public StyleValue {
|
|
|
|
public:
|
|
|
|
static NonnullRefPtr<ColorStyleValue> create(Color color)
|
|
|
|
{
|
|
|
|
return adopt(*new ColorStyleValue(color));
|
|
|
|
}
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~ColorStyleValue() override { }
|
2019-09-28 23:18:19 +03:00
|
|
|
|
|
|
|
Color color() const { return m_color; }
|
2019-10-03 17:11:46 +03:00
|
|
|
String to_string() const override { return m_color.to_string(); }
|
2019-10-06 11:25:08 +03:00
|
|
|
Color to_color(const Document&) const override { return m_color; }
|
2019-09-28 23:18:19 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit ColorStyleValue(Color color)
|
|
|
|
: StyleValue(Type::Color)
|
|
|
|
, m_color(color)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Color m_color;
|
|
|
|
};
|
2019-10-06 11:25:08 +03:00
|
|
|
|
|
|
|
class IdentifierStyleValue final : public StyleValue {
|
|
|
|
public:
|
|
|
|
static NonnullRefPtr<IdentifierStyleValue> create(CSS::ValueID id)
|
|
|
|
{
|
|
|
|
return adopt(*new IdentifierStyleValue(id));
|
|
|
|
}
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~IdentifierStyleValue() override { }
|
2019-10-06 11:25:08 +03:00
|
|
|
|
|
|
|
CSS::ValueID id() const { return m_id; }
|
|
|
|
|
|
|
|
virtual String to_string() const override;
|
|
|
|
virtual Color to_color(const Document&) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit IdentifierStyleValue(CSS::ValueID id)
|
|
|
|
: StyleValue(Type::Identifier)
|
|
|
|
, m_id(id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CSS::ValueID m_id { CSS::ValueID::Invalid };
|
|
|
|
};
|
2019-10-19 12:49:46 +03:00
|
|
|
|
2020-06-02 14:51:30 +03:00
|
|
|
class ImageStyleValue final
|
|
|
|
: public StyleValue
|
2020-06-06 00:32:23 +03:00
|
|
|
, public ImageResourceClient {
|
2019-10-19 12:49:46 +03:00
|
|
|
public:
|
|
|
|
static NonnullRefPtr<ImageStyleValue> create(const URL& url, Document& document) { return adopt(*new ImageStyleValue(url, document)); }
|
2020-06-02 14:51:30 +03:00
|
|
|
virtual ~ImageStyleValue() override { }
|
2019-10-19 12:49:46 +03:00
|
|
|
|
|
|
|
String to_string() const override { return String::format("Image{%s}", m_url.to_string().characters()); }
|
|
|
|
|
2020-02-06 13:56:38 +03:00
|
|
|
const Gfx::Bitmap* bitmap() const { return m_bitmap; }
|
2019-10-19 12:49:46 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
ImageStyleValue(const URL&, Document&);
|
|
|
|
|
2020-06-02 14:51:30 +03:00
|
|
|
// ^ResourceClient
|
|
|
|
virtual void resource_did_load() override;
|
|
|
|
|
2019-10-19 12:49:46 +03:00
|
|
|
URL m_url;
|
|
|
|
WeakPtr<Document> m_document;
|
2020-02-06 13:56:38 +03:00
|
|
|
RefPtr<Gfx::Bitmap> m_bitmap;
|
2019-10-19 12:49:46 +03:00
|
|
|
};
|
2020-03-07 12:27:02 +03:00
|
|
|
|
|
|
|
}
|