digiKam
Loading...
Searching...
No Matches
actiondata.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 : 2009-02-06
7 * Description : Thread actions container.
8 *
9 * SPDX-FileCopyrightText: 2009-2024 by Gilles Caulier <caulier dot gilles 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 <QString>
20#include <QMetaType>
21#include <QUrl>
22
23namespace Digikam
24{
25
27{
28
29public:
30
43
44public:
45
46 ActionData() = default;
47
49
50 QString message;
51
52 QUrl fileUrl;
53 QUrl destUrl;
54
55 bool noWrite = false;
56};
57
58} // namespace Digikam
59
60Q_DECLARE_METATYPE(Digikam::ActionData)
Definition actiondata.h:27
ActionStatus status
Definition actiondata.h:48
QUrl fileUrl
Definition actiondata.h:52
QUrl destUrl
Definition actiondata.h:53
QString message
Definition actiondata.h:50
bool noWrite
Definition actiondata.h:55
ActionStatus
Definition actiondata.h:32
@ BatchFailed
Definition actiondata.h:36
@ TaskCanceled
Definition actiondata.h:41
@ BatchCanceled
Definition actiondata.h:38
@ BatchSkipped
Definition actiondata.h:37
@ BatchStarted
Definition actiondata.h:34
@ None
Definition actiondata.h:33
@ TaskDone
Definition actiondata.h:39
@ TaskFailed
Definition actiondata.h:40
@ BatchDone
Definition actiondata.h:35
Definition datefolderview.cpp:34