mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 06:11:16 +00:00
Add API to sixtyfps::Image in Rust and C++ to access the optional path
This commit is contained in:
parent
bbe178aadf
commit
4eef8c7688
5 changed files with 39 additions and 0 deletions
|
@ -54,6 +54,16 @@ public:
|
|||
/// Returns the size of the Image in pixels.
|
||||
Size size() const { return cbindgen_private::types::sixtyfps_image_size(&data); }
|
||||
|
||||
/// Returns the path of the image on disk, if it was constructed via Image::load_from_path().
|
||||
std::optional<sixtyfps::SharedString> path() const
|
||||
{
|
||||
if (auto *str = cbindgen_private::types::sixtyfps_image_path(&data)) {
|
||||
return *str;
|
||||
} else {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns true if \a a refers to the same image as \a b; false otherwise.
|
||||
friend bool operator==(const Image &a, const Image &b) { return a.data == b.data; }
|
||||
/// Returns false if \a a refers to the same image as \a b; true otherwise.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue