digiKam
diofinders.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2005-05-17
7  * Description : low level files management interface - Finder classes.
8  *
9  * Copyright (C) 2005 by Renchi Raju <renchi dot raju at gmail dot com>
10  * Copyright (C) 2012-2013 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
11  * Copyright (C) 2018 by Maik Qualmann <metzpinguin at gmail dot com>
12  *
13  * This program is free software; you can redistribute it
14  * and/or modify it under the terms of the GNU General
15  * Public License as published by the Free Software Foundation;
16  * either version 2, or (at your option)
17  * any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU General Public License for more details.
23  *
24  * ============================================================ */
25 
26 #ifndef DIGIKAM_DIO_FINDERS_H
27 #define DIGIKAM_DIO_FINDERS_H
28 
29 // Qt includes
30 
31 #include <QList>
32 #include <QUrl>
33 #include <QString>
34 
35 // Local includes
36 
37 #include "digikam_export.h"
38 
39 namespace Digikam
40 {
41 
42 class ItemInfo;
43 
44 class DIGIKAM_GUI_EXPORT SidecarFinder
45 {
46 
47 public:
48 
49  explicit SidecarFinder(const QList<QUrl>& files);
50 
51 public:
52 
56 };
57 
58 // -----------------------------------------------------------------------------------------
59 
60 class DIGIKAM_GUI_EXPORT GroupedImagesFinder
61 {
62 
63 public:
64 
65  explicit GroupedImagesFinder(const QList<ItemInfo>& source);
66 
67 public:
68 
70 };
71 
72 } // namespace Digikam
73 
74 #endif // DIGIKAM_DIO_FINDERS_H
Definition: diofinders.h:61
QList< ItemInfo > infos
Definition: diofinders.h:69
Definition: diofinders.h:45
QList< QString > localFileSuffixes
Definition: diofinders.h:55
QList< QUrl > localFiles
Definition: diofinders.h:53
QList< bool > localFileModes
Definition: diofinders.h:54
Definition: datefolderview.cpp:43