ladybird/Userland/Applications/Presenter/Slide.h

32 lines
842 B
C
Raw Normal View History

/*
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "SlideObject.h"
#include <AK/Forward.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/String.h>
#include <LibGfx/Forward.h>
// A single slide of a presentation.
class Slide final {
public:
static ErrorOr<Slide> parse_slide(JsonObject const& slide_json, NonnullRefPtr<GUI::Window> window);
// FIXME: shouldn't be hard-coded to 1.
unsigned frame_count() const { return 1; }
StringView title() const { return m_title; }
void paint(Gfx::Painter&, unsigned current_frame, Gfx::FloatSize display_scale) const;
private:
Slide(NonnullRefPtrVector<SlideObject> slide_objects, String title);
NonnullRefPtrVector<SlideObject> m_slide_objects;
String m_title;
};