mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 16:15:08 +00:00

This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
59 lines
2 KiB
C++
59 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
|
|
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Slide.h"
|
|
#include <AK/ByteString.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibGfx/Size.h>
|
|
|
|
static constexpr int const PRESENTATION_FORMAT_VERSION = 1;
|
|
|
|
// In-memory representation of the presentation stored in a file.
|
|
// This class also contains all the parser code for loading .presenter files.
|
|
class Presentation {
|
|
public:
|
|
~Presentation() = default;
|
|
|
|
static ErrorOr<NonnullOwnPtr<Presentation>> load_from_file(StringView file_name);
|
|
|
|
StringView title() const;
|
|
StringView author() const;
|
|
Gfx::IntSize normative_size() const { return m_normative_size; }
|
|
|
|
Slide const& current_slide() const { return m_slides[m_current_slide.value()]; }
|
|
unsigned current_slide_number() const { return m_current_slide.value(); }
|
|
unsigned current_frame_in_slide_number() const { return m_current_frame_in_slide.value(); }
|
|
|
|
bool has_next_frame() const;
|
|
bool has_previous_frame() const;
|
|
void next_frame();
|
|
void previous_frame();
|
|
void go_to_first_slide();
|
|
|
|
ErrorOr<ByteString> render();
|
|
|
|
private:
|
|
static HashMap<ByteString, ByteString> parse_metadata(JsonObject const& metadata_object);
|
|
static ErrorOr<Gfx::IntSize> parse_presentation_size(JsonObject const& metadata_object);
|
|
|
|
Presentation(Gfx::IntSize normative_size, HashMap<ByteString, ByteString> metadata);
|
|
static NonnullOwnPtr<Presentation> construct(Gfx::IntSize normative_size, HashMap<ByteString, ByteString> metadata);
|
|
|
|
void append_slide(Slide slide);
|
|
|
|
Vector<Slide> m_slides {};
|
|
// This is not a pixel size, but an abstract size used by the slide objects for relative positioning.
|
|
Gfx::IntSize m_normative_size;
|
|
HashMap<ByteString, ByteString> m_metadata;
|
|
|
|
Checked<unsigned> m_current_slide { 0 };
|
|
Checked<unsigned> m_current_frame_in_slide { 0 };
|
|
};
|