digiKam
importitempropertiestab.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 : 2006-02-08
7  * Description : A tab to display import item information
8  *
9  * Copyright (C) 2006-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_IMPORT_ITEM_PROPERTIES_TAB_H
25 #define DIGIKAM_IMPORT_ITEM_PROPERTIES_TAB_H
26 
27 // Qt includes
28 
29 #include <QString>
30 #include <QUrl>
31 
32 // Local includes
33 
34 #include "digikam_export.h"
35 #include "dmetadata.h"
36 #include "camiteminfo.h"
37 #include "dexpanderbox.h"
38 
39 namespace Digikam
40 {
41 
43 {
44  Q_OBJECT
45 
46 public:
47 
48  explicit ImportItemPropertiesTab(QWidget* const parent);
49  ~ImportItemPropertiesTab() override;
50 
51  void setCurrentItem(const CamItemInfo& itemInfo = CamItemInfo(),
52  DMetadata* const meta = nullptr);
53 
54 private:
55 
56  class Private;
57  Private* const d;
58 };
59 
60 } // namespace Digikam
61 
62 #endif // DIGIKAM_IMPORT_ITEM_PROPERTIES_TAB_H
Definition: camiteminfo.h:48
Definition: dexpanderbox.h:244
Definition: dmetadata.h:55
Definition: importitempropertiestab.h:43
ImportItemPropertiesTab(QWidget *const parent)
Definition: importitempropertiestab.cpp:181
~ImportItemPropertiesTab() override
Definition: importitempropertiestab.cpp:354
void setCurrentItem(const CamItemInfo &itemInfo=CamItemInfo(), DMetadata *const meta=nullptr)
Definition: importitempropertiestab.cpp:359
Definition: datefolderview.cpp:43