Class Value¶
Defined in File slint-interpreter.h
Class Documentation¶
-
class Value¶
This is a dynamically typed value used in the Slint interpreter. It can hold a value of different types, and you should use the different overloaded constructors and the to_xxx() functions to access the value within.
It is also possible to query the type the value holds by calling the Value::type() function.
Note that models are only represented in one direction: You can create a slint::Model<Value> in C++, store it in a std::shared_ptr and construct Value from it. Then you can set it on a property in your .slint code that was declared to be either an array (
property <[sometype]> foo;
) or an object literal (property <{foo: string, bar: int}> my_prop;
). Such properties are dynamic and accept models implemented in C++.Value v(42.0); // Creates a value that holds a double with the value 42. Value some_value = ...; // Check if the value has a string if (std::optional<slint::SharedString> string_value = some_value.to_string()) do_something(*string_value); // Extract the string by de-referencing
Public Functions
-
inline Value()¶
Constructs a new value of type Value::Type::Void.
-
inline ~Value()¶
Destroys the value.
-
inline std::optional<double> to_number() const¶
Returns a std::optional that contains a double if the type of this Value is Type::Double, otherwise an empty optional is returned.
-
inline std::optional<slint::SharedString> to_string() const¶
Returns a std::optional that contains a string if the type of this Value is Type::String, otherwise an empty optional is returned.
-
inline std::optional<bool> to_bool() const¶
Returns a std::optional that contains a bool if the type of this Value is Type::Bool, otherwise an empty optional is returned.
-
inline std::optional<slint::SharedVector<Value>> to_array() const¶
Returns a std::optional that contains a vector of values if the type of this Value is Type::Model, otherwise an empty optional is returned.
The vector will be constructed by serializing all the elements of the model.
-
inline std::optional<slint::Brush> to_brush() const¶
Returns a std::optional that contains a brush if the type of this Value is Type::Brush, otherwise an empty optional is returned.
-
inline std::optional<Struct> to_struct() const¶
Returns a std::optional that contains a Struct if the type of this Value is Type::Struct, otherwise an empty optional is returned.
-
inline std::optional<Image> to_image() const¶
Returns a std::optional that contains an Image if the type of this Value is Type::Image, otherwise an empty optional is returned.
-
inline Value(int value)¶
Constructs a new Value that holds the int value. Internally this is stored as a double and Value::type() will return Value::Type::Number.
Constructs a new Value that holds the string str.
Constructs a new Value that holds the value vector v as a model.
Constructs a new Value that holds the value model m.
-
inline Value()¶