File indexing completed on 2024-04-28 15:39:48

0001 /* SPDX-FileCopyrightText: 2012 Jesper K. Pedersen <blackie@kde.org>
0002 
0003    SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef SEARCHFORVIDEOSWITHOUTVIDEOTHUMBNAILSJOB_H
0007 #define SEARCHFORVIDEOSWITHOUTVIDEOTHUMBNAILSJOB_H
0008 
0009 #include <BackgroundTaskManager/JobInterface.h>
0010 
0011 namespace BackgroundJobs
0012 {
0013 
0014 /**
0015   \brief Search for videos without a thumbnail needed for cycling thumbnails.
0016   \see \ref videothumbnails
0017 */
0018 class SearchForVideosWithoutVideoThumbnailsJob : public BackgroundTaskManager::JobInterface
0019 {
0020     Q_OBJECT
0021 
0022 public:
0023     SearchForVideosWithoutVideoThumbnailsJob();
0024     void execute() override;
0025     QString title() const override;
0026     QString details() const override;
0027 };
0028 
0029 }
0030 
0031 #endif // SEARCHFORVIDEOSWITHOUTVIDEOTHUMBNAILSJOB_H
0032 // vi:expandtab:tabstop=4 shiftwidth=4: