summaryrefslogtreecommitdiffstats
path: root/xbmc/pictures/PictureThumbLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/pictures/PictureThumbLoader.h')
-rw-r--r--xbmc/pictures/PictureThumbLoader.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/xbmc/pictures/PictureThumbLoader.h b/xbmc/pictures/PictureThumbLoader.h
new file mode 100644
index 0000000..664968e
--- /dev/null
+++ b/xbmc/pictures/PictureThumbLoader.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "ThumbLoader.h"
+#include "utils/JobManager.h"
+
+class CPictureThumbLoader : public CThumbLoader, public CJobQueue
+{
+public:
+ CPictureThumbLoader();
+ ~CPictureThumbLoader() override;
+
+ bool LoadItem(CFileItem* pItem) override;
+ bool LoadItemCached(CFileItem* pItem) override;
+ bool LoadItemLookup(CFileItem* pItem) override;
+ void SetRegenerateThumbs(bool regenerate) { m_regenerateThumbs = regenerate; }
+ static void ProcessFoldersAndArchives(CFileItem *pItem);
+
+ /*!
+ \brief Callback from CThumbExtractor on completion of a generated image
+
+ Performs the callbacks and updates the GUI.
+
+ \sa CImageLoader, IJobCallback
+ */
+ void OnJobComplete(unsigned int jobID, bool success, CJob *job) override;
+
+protected:
+ void OnLoaderFinish() override;
+
+private:
+ bool m_regenerateThumbs;
+};