File indexing completed on 2025-01-19 03:59:30

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2007-14-02
0007  * Description : interface to get item info from an albums list.
0008  *
0009  * SPDX-FileCopyrightText: 2007-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_ITEM_INFO_ALBUMS_JOB_H
0016 #define DIGIKAM_ITEM_INFO_ALBUMS_JOB_H
0017 
0018 // Qt includes
0019 
0020 #include <QObject>
0021 
0022 // Local includes
0023 
0024 #include "iteminfo.h"
0025 #include "albummanager.h"
0026 
0027 namespace Digikam
0028 {
0029 
0030 class ItemInfoAlbumsJob : public QObject
0031 {
0032     Q_OBJECT
0033 
0034 public:
0035 
0036     explicit ItemInfoAlbumsJob(QObject* const parent = nullptr);
0037     ~ItemInfoAlbumsJob() override;
0038 
0039     void allItemsFromAlbums(const AlbumList& albumsList);
0040     void stop();
0041 
0042 Q_SIGNALS:
0043 
0044     void signalCompleted(const ItemInfoList& items);
0045 
0046 private Q_SLOTS:
0047 
0048     void slotItemsInfo(const ItemInfoList&);
0049     void slotComplete();
0050 
0051 private:
0052 
0053     void parseAlbum();
0054 
0055 private:
0056 
0057     class Private;
0058     Private* const d;
0059 };
0060 
0061 } // namespace Digikam
0062 
0063 #endif // DIGIKAM_ITEM_INFO_ALBUMS_JOB_H