digiKam
exiftoollistviewgroup.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 : 2021-04-18
7  * Description : ExifTool metadata list view group.
8  *
9  * Copyright (C) 2021-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_EXIF_TOOL_LIST_VIEW_GROUP_H
25 #define DIGIKAM_EXIF_TOOL_LIST_VIEW_GROUP_H
26 
27 // Qt includes
28 
29 #include <QTreeWidget>
30 #include <QString>
31 
32 namespace Digikam
33 {
34 
35 class ExifToolListView;
36 
37 class ExifToolListViewGroup : public QTreeWidgetItem
38 {
39 public:
40 
42  const QString& group);
43  ~ExifToolListViewGroup() override;
44 
45 private:
46 
47  Q_DISABLE_COPY(ExifToolListViewGroup)
48 };
49 
50 } // namespace Digikam
51 
52 #endif // DIGIKAM_EXIF_TOOL_LIST_VIEW_GROUP_H
Definition: exiftoollistviewgroup.h:38
~ExifToolListViewGroup() override
Definition: exiftoollistviewgroup.cpp:464
ExifToolListViewGroup(ExifToolListView *const parent, const QString &group)
Definition: exiftoollistviewgroup.cpp:41
Definition: exiftoollistview.h:46
Definition: datefolderview.cpp:43