123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- /*
- * 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.
- */
- #pragma once
- #include <AK/String.h>
- #include <LibGfx/Font.h>
- #include <LibGfx/Bitmap.h>
- #include <LibGUI/Icon.h>
- namespace GUI {
- class Variant {
- public:
- Variant();
- Variant(bool);
- Variant(float);
- Variant(i32);
- Variant(i64);
- Variant(unsigned);
- Variant(const char*);
- Variant(const String&);
- Variant(const FlyString&);
- Variant(const Gfx::Bitmap&);
- Variant(const GUI::Icon&);
- Variant(const Gfx::Point&);
- Variant(const Gfx::Size&);
- Variant(const Gfx::Rect&);
- Variant(const Gfx::Font&);
- Variant(const AK::JsonValue&);
- Variant(Color);
- Variant(const Variant&);
- Variant& operator=(const Variant&);
- Variant(Variant&&) = delete;
- Variant& operator=(Variant&&);
- void clear();
- ~Variant();
- enum class Type {
- Invalid,
- Bool,
- Int32,
- Int64,
- UnsignedInt,
- Float,
- String,
- Bitmap,
- Color,
- Icon,
- Point,
- Size,
- Rect,
- Font,
- };
- bool is_valid() const { return m_type != Type::Invalid; }
- bool is_bool() const { return m_type == Type::Bool; }
- bool is_i32() const { return m_type == Type::Int32; }
- bool is_i64() const { return m_type == Type::Int64; }
- bool is_uint() const { return m_type == Type::UnsignedInt; }
- bool is_float() const { return m_type == Type::Float; }
- bool is_string() const { return m_type == Type::String; }
- bool is_bitmap() const { return m_type == Type::Bitmap; }
- bool is_color() const { return m_type == Type::Color; }
- bool is_icon() const { return m_type == Type::Icon; }
- bool is_point() const { return m_type == Type::Point; }
- bool is_size() const { return m_type == Type::Size; }
- bool is_rect() const { return m_type == Type::Rect; }
- bool is_font() const { return m_type == Type::Font; }
- Type type() const { return m_type; }
- bool as_bool() const
- {
- ASSERT(type() == Type::Bool);
- return m_value.as_bool;
- }
- bool to_bool() const
- {
- if (type() == Type::Bool)
- return as_bool();
- if (type() == Type::String)
- return !!m_value.as_string;
- if (type() == Type::Int32)
- return m_value.as_i32 != 0;
- if (type() == Type::Int64)
- return m_value.as_i64 != 0;
- if (type() == Type::UnsignedInt)
- return m_value.as_uint != 0;
- if (type() == Type::Rect)
- return !as_rect().is_null();
- if (type() == Type::Size)
- return !as_size().is_null();
- if (type() == Type::Point)
- return !as_point().is_null();
- return is_valid();
- }
- int as_i32() const
- {
- ASSERT(type() == Type::Int32);
- return m_value.as_i32;
- }
- int as_i64() const
- {
- ASSERT(type() == Type::Int64);
- return m_value.as_i64;
- }
- unsigned as_uint() const
- {
- ASSERT(type() == Type::UnsignedInt);
- return m_value.as_uint;
- }
- template<typename T>
- T to_integer() const
- {
- if (is_i32())
- return as_i32();
- if (is_i64())
- return as_i64();
- if (is_bool())
- return as_bool() ? 1 : 0;
- if (is_float())
- return (int)as_float();
- if (is_uint()) {
- ASSERT(as_uint() <= INT32_MAX);
- return (int)as_uint();
- }
- if (is_string()) {
- bool ok;
- int value = as_string().to_int(ok);
- if (!ok)
- return 0;
- return value;
- }
- return 0;
- }
- i32 to_i32() const
- {
- return to_integer<i32>();
- }
- i64 to_i64() const
- {
- return to_integer<i64>();
- }
- float as_float() const
- {
- ASSERT(type() == Type::Float);
- return m_value.as_float;
- }
- Gfx::Point as_point() const
- {
- return { m_value.as_point.x, m_value.as_point.y };
- }
- Gfx::Size as_size() const
- {
- return { m_value.as_size.width, m_value.as_size.height };
- }
- Gfx::Rect as_rect() const
- {
- return { as_point(), as_size() };
- }
- String as_string() const
- {
- ASSERT(type() == Type::String);
- return m_value.as_string;
- }
- const Gfx::Bitmap& as_bitmap() const
- {
- ASSERT(type() == Type::Bitmap);
- return *m_value.as_bitmap;
- }
- GUI::Icon as_icon() const
- {
- ASSERT(type() == Type::Icon);
- return GUI::Icon(*m_value.as_icon);
- }
- Color as_color() const
- {
- ASSERT(type() == Type::Color);
- return Color::from_rgba(m_value.as_color);
- }
- const Gfx::Font& as_font() const
- {
- ASSERT(type() == Type::Font);
- return *m_value.as_font;
- }
- Color to_color(Color default_value = {}) const
- {
- if (type() == Type::Color)
- return as_color();
- if (type() == Type::String) {
- auto color = Color::from_string(as_string());
- if (color.has_value())
- return color.value();
- }
- return default_value;
- }
- String to_string() const;
- bool operator==(const Variant&) const;
- bool operator<(const Variant&) const;
- private:
- void copy_from(const Variant&);
- struct RawPoint {
- int x;
- int y;
- };
- struct RawSize {
- int width;
- int height;
- };
- struct RawRect {
- RawPoint location;
- RawSize size;
- };
- union {
- StringImpl* as_string;
- Gfx::Bitmap* as_bitmap;
- GUI::IconImpl* as_icon;
- Gfx::Font* as_font;
- bool as_bool;
- i32 as_i32;
- i64 as_i64;
- unsigned as_uint;
- float as_float;
- Gfx::RGBA32 as_color;
- RawPoint as_point;
- RawSize as_size;
- RawRect as_rect;
- } m_value;
- Type m_type { Type::Invalid };
- };
- const char* to_string(Variant::Type);
- }
|