digiKam
Loading...
Searching...
No Matches
itemselectionpropertiestab.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 : 2020-04-11
7 * Description : A tab to display information about the current selection.
8 *
9 * SPDX-FileCopyrightText: 2020 by Kartik Ramesh <kartikx2000 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 <QUrl>
20
21// Local includes
22
23#include "dexpanderbox.h"
24#include "digikam_export.h"
25
26namespace Digikam
27{
28
29class ItemInfoList;
30
31class DIGIKAM_EXPORT ItemSelectionPropertiesTab : public DExpanderBox
32{
33 Q_OBJECT
34
35public:
36
37 explicit ItemSelectionPropertiesTab(QWidget* const parent);
39
40 void setCurrentURL(const QUrl& url = QUrl());
41
42 void setSelectionCount(const QString& str);
43 void setSelectionSize(const QString& str);
44 void setTotalCount(const QString& str);
45 void setTotalSize(const QString& str);
46
47private:
48
49 class Private;
50 Private* const d = nullptr;
51};
52
53} // namespace Digikam
Definition dexpanderbox.h:240
Definition itemselectionpropertiestab.h:32
Definition datefolderview.cpp:34