1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 00:15:09 +00:00
serenity/Userland/Applications/PixelPaint/ProjectLoader.h
Mustafa Quraish 1e1e5bb5f7 PixelPaint: Remove unused methods to access files directly
After transitioning to FileSystemAccessServer, some of the methods
in `MainWidget` and `ProjectLoader` for opening files directly with
a filename as opposed to with a file descriptor are unused. This
commit removes them.
2021-09-12 00:17:04 +02:00

34 lines
803 B
C++

/*
* Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "Image.h"
#include <AK/JsonArray.h>
#include <AK/Result.h>
#include <AK/StringView.h>
namespace PixelPaint {
class ProjectLoader {
public:
ProjectLoader() = default;
~ProjectLoader() = default;
Result<void, String> try_load_from_fd_and_close(int fd, StringView path);
bool is_raw_image() const { return m_is_raw_image; }
bool has_image() const { return !m_image.is_null(); }
RefPtr<Image> release_image() const { return move(m_image); }
JsonArray const& json_metadata() const { return m_json_metadata; }
private:
RefPtr<Image> m_image { nullptr };
bool m_is_raw_image { false };
JsonArray m_json_metadata {};
};
}