digiKam
Loading...
Searching...
No Matches
placeholderwidget.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-12-05
7 * Description : Placeholder widget for when backends are activated
8 *
9 * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 * SPDX-FileCopyrightText: 2010 by Michael G. Hansen <mike at mghansen dot de>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QFrame>
21
22// Local includes
23
24#include "digikam_export.h"
25
26namespace Digikam
27{
28
29class DIGIKAM_EXPORT PlaceholderWidget : public QFrame
30{
31 Q_OBJECT
32
33public:
34
35 explicit PlaceholderWidget(QWidget* const parent = nullptr);
36 ~PlaceholderWidget() override;
37
38 void setMessage(const QString& message);
39
40private:
41
42 Q_DISABLE_COPY(PlaceholderWidget)
43
44 class Private;
45 const QScopedPointer<Private> d;
46};
47
48} // namespace Digikam
Definition placeholderwidget.h:30
Definition datefolderview.cpp:34