kodi
PictureFolderImageFileLoader.h
1 /*
2  * Copyright (C) 2023 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "imagefiles/SpecialImageFileLoader.h"
12 
17 {
18 public:
20  ~CPictureFolderImageFileLoader() override = default;
21 
22  bool CanLoad(const std::string& specialType) const override;
23  std::unique_ptr<CTexture> Load(const std::string& specialType,
24  const std::string& filePath,
25  unsigned int preferredWidth,
26  unsigned int preferredHeight) const override;
27 };
An interface to load special image files into a texture for display.
Definition: SpecialImageFileLoader.h:26
Generates a thumbnail for a folder in the picture browser, tile 4 images inside the folder...
Definition: PictureFolderImageFileLoader.h:16