digiKam
Loading...
Searching...
No Matches
dbheaderlistitem.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 : 2010-05-22
7 * Description : header list view item
8 *
9 * SPDX-FileCopyrightText: 2010-2012 by Andi Clemens <andi dot clemens at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QObject>
20#include <QString>
21#include <QTreeWidget>
22#include <QTreeWidgetItem>
23
24namespace Digikam
25{
26
27class DbHeaderListItem : public QObject,
28 public QTreeWidgetItem
29{
30 Q_OBJECT
31
32public:
33
34 explicit DbHeaderListItem(QTreeWidget* parent, const QString& key);
35 ~DbHeaderListItem() override = default;
36
37private Q_SLOTS:
38
39 void slotThemeChanged();
40
41private:
42
43 DbHeaderListItem(const DbHeaderListItem&) = delete;
44 DbHeaderListItem& operator=(const DbHeaderListItem&) = delete;
45};
46
47} // namespace Digikam
Definition dbheaderlistitem.h:29
~DbHeaderListItem() override=default
Definition datefolderview.cpp:34