AUI Framework  master
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
AImageLoaderRegistry.h
    1/*
    2 * AUI Framework - Declarative UI toolkit for modern C++20
    3 * Copyright (C) 2020-2025 Alex2772 and Contributors
    4 *
    5 * SPDX-License-Identifier: MPL-2.0
    6 *
    7 * This Source Code Form is subject to the terms of the Mozilla Public
    8 * License, v. 2.0. If a copy of the MPL was not distributed with this
    9 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
   10 */
   11
   12#pragma once
   13
   14#include <AUI/Url/AUrl.h>
   15#include <AUI/Logging/ALogger.h>
   16#include <AUI/Util/Cache.h>
   17#include "IImageLoader.h"
   18#include "AUI/Common/ADeque.h"
   19#include "AUI/Common/SharedPtr.h"
   20#include "AUI/Image/IAnimatedImageFactory.h"
   21
   26class API_AUI_IMAGE AImageLoaderRegistry {
   27    friend class AImage::Cache;
   28    friend class IDrawable;
   29    friend class AImage;
   30
   31private:
   32    ADeque<_<IImageLoader>> mRasterLoaders;
   33    ADeque<_<IImageLoader>> mVectorLoaders;
   34    ADeque<_<IImageLoader>> mAnimatedLoaders;
   35    ADeque<AString> mSupportedFormats;
   36
   37    _<IImageFactory> loadVector(AByteBufferView buffer);
   38    _<IAnimatedImageFactory> loadAnimated(AByteBufferView buffer);
   39    _<AImage> loadRaster(AByteBufferView buffer);
   40    inline _<IImageFactory> loadVector(const AUrl& url) {
   41        auto s = AByteBuffer::fromStream(url.open());
   42        return loadVector(s);
   43    }
   44    _<AImage> loadImage(const AUrl& url);
   45
   46    void registerLoader(ADeque<_<IImageLoader>>& d, _<IImageLoader> loader, AString name);
   47
   48public:
   49    AImageLoaderRegistry() = default;
   50
   51    void registerRasterLoader(_<IImageLoader> imageLoader, AString name = "");
   52    void registerVectorLoader(_<IImageLoader> imageLoader, AString name = "");
   53    void registerAnimatedLoader(_<IImageLoader> imageLoader, AString name = "");
   54    [[nodiscard]]
   55    const ADeque<AString>& supportedFormats() const noexcept;
   56
   57    static AImageLoaderRegistry& inst();
   58};
Acts like std::string_view but for AByteBuffer.
Definition AByteBufferView.h:24
A std::deque with AUI extensions.
Definition ADeque.h:27
Represents a Unicode character string.
Definition AString.h:38
Uniform Resource Locator implementation.
Definition AUrl.h:31
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179