digiKam
exiftoolconfpanel.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 : 2021-04-29
7  * Description : ExifTool configuration panel.
8  *
9  * Copyright (C) 2021-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_EXIF_TOOL_CONF_PANEL_H
25 #define DIGIKAM_EXIF_TOOL_CONF_PANEL_H
26 
27 // Qt includes
28 
29 #include <QWidget>
30 #include <QString>
31 
32 // Local includes
33 
34 #include "digikam_export.h"
35 #include "searchtextbar.h"
36 
37 namespace Digikam
38 {
39 
40 class DIGIKAM_EXPORT ExifToolConfPanel : public QWidget
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit ExifToolConfPanel(QWidget* const parent = nullptr);
47  ~ExifToolConfPanel() override;
48 
49  QString exifToolDirectory() const;
50  void setExifToolDirectory(const QString& dir);
51 
52 private Q_SLOTS:
53 
54  void slotSearchTextChanged(const SearchTextSettings&);
55  void slotExifToolBinaryFound(bool);
56 
57 private:
58 
59  class Private;
60  Private* const d;
61 };
62 
63 } // namespace Digikam
64 
65 #endif // DIGIKAM_EXIF_TOOL_CONF_PANEL_H
Definition: exiftoolconfpanel.h:41
Definition: searchtextbar.h:43
Definition: datefolderview.cpp:43