digiKam
importiconview_p.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 : 2012-25-07
7  * Description : Private Qt item view for images
8  *
9  * Copyright (C) 2012 by Islam Wazery <wazery at ubuntu dot com>
10  * Copyright (C) 2012-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
11  *
12  * This program is free software you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation
15  * either version 2, or (at your option)
16  * any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * ============================================================ */
24 
25 #ifndef DIGIKAM_IMPORT_ICON_VIEW_PRIVATE_H
26 #define DIGIKAM_IMPORT_ICON_VIEW_PRIVATE_H
27 
28 // Qt includes
29 
30 #include <QObject>
31 
32 // Local includes
33 
34 #include "importiconview.h"
35 #include "importdelegate.h"
36 #include "importsettings.h"
37 #include "importoverlays.h"
38 
39 namespace Digikam
40 {
41 
42 class ImportNormalDelegate;
43 
44 class Q_DECL_HIDDEN ImportIconView::Private : public QObject
45 {
46  Q_OBJECT
47  Q_DECLARE_PUBLIC(ImportIconView)
48 
49 public:
50 
51  explicit Private(ImportIconView* const qq);
52  ~Private() override;
53 
54  void updateOverlays();
55 
56 public:
57 
60 
62 
65 
66 private:
67 
68  ImportIconView* q_ptr;
69 };
70 
71 } // namespace Digikam
72 
73 #endif // DIGIKAM_IMPORT_ICON_VIEW_PRIVATE_H
Definition: importiconview_p.h:45
bool overlaysActive
Definition: importiconview_p.h:61
ImportRotateOverlay * rotateRightOverlay
Definition: importiconview_p.h:64
ImportRotateOverlay * rotateLeftOverlay
Definition: importiconview_p.h:63
ImportNormalDelegate * normalDelegate
Definition: importiconview_p.h:59
ItemViewUtilities * utilities
Definition: importiconview_p.h:58
Definition: importiconview.h:38
Definition: importdelegate.h:176
Definition: importoverlays.h:206
Definition: itemviewutilities.h:44
Definition: datefolderview.cpp:43