digiKam
Loading...
Searching...
No Matches
focuspoints_writer.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 : 28/08/2021
7 * Description : Writer of focus points to exiftool data
8 *
9 * SPDX-FileCopyrightText: 2021-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 * SPDX-FileCopyrightText: 2021 by Phuoc Khanh Le <phuockhanhnk94 at gmail dot com>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QObject>
21#include <QVariant>
22#include <QStringList>
23
24// Local includes
25
26#include "digikam_export.h"
27#include "focuspoint.h"
28
29namespace Digikam
30{
31
32class DIGIKAM_EXPORT FocusPointsWriter : public QObject
33{
34 Q_OBJECT
35
36public:
37
38 explicit FocusPointsWriter(QObject* const parent, const QString& path);
40
41public:
42
43 void writeFocusPoint(const FocusPoint& point);
44 void writeFocusPoint(const QRectF& rectF);
45
46private:
47
48 class Private;
49 Private* const d = nullptr;
50};
51
52} // namespace Digikam
Definition focuspoint.h:35
Definition focuspoints_writer.h:33
Definition datefolderview.cpp:34