In a future commit, ownership of animation will be transferred from these clients to `AnimatedDecodedImageData` and we will need a way to invalidate them for new frames. This also revealed some `ImageProvider`s which don't yet support animated images (e.g. `<input type="file">`, `<object>`, etc) but that is left as a FIXME for now.
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2023, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Optional.h>
|
|
#include <LibGC/Cell.h>
|
|
#include <LibGfx/DecodedImageFrame.h>
|
|
#include <LibGfx/Size.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/PixelUnits.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
// FIXME: Update all ImageProviders to be DecodedImageData::Clients (i.e. support animated images)
|
|
class ImageProvider {
|
|
public:
|
|
virtual ~ImageProvider() { }
|
|
|
|
bool is_image_available() const { return decoded_image_data() != nullptr; }
|
|
|
|
virtual size_t current_frame_index() const = 0;
|
|
|
|
virtual GC::Ptr<HTML::DecodedImageData> decoded_image_data() const = 0;
|
|
|
|
Optional<CSSPixels> intrinsic_width() const;
|
|
Optional<CSSPixels> intrinsic_height() const;
|
|
Optional<CSSPixelSize> intrinsic_size() const;
|
|
Optional<CSSPixelFraction> intrinsic_aspect_ratio() const;
|
|
|
|
Optional<Gfx::DecodedImageFrame> current_image_frame(Optional<Gfx::IntSize> size = {}) const;
|
|
Optional<Gfx::DecodedImageFrame> default_image_frame(Optional<Gfx::IntSize> size = {}) const;
|
|
|
|
virtual void layout_node_was_detached() const { }
|
|
|
|
protected:
|
|
static void did_update_alt_text(ImageBox&);
|
|
};
|
|
|
|
}
|