File indexing completed on 2024-04-28 04:21:19

0001 /* SPDX-FileCopyrightText: 2003-2010 Jesper K. Pedersen <blackie@kde.org>
0002 
0003    SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 #ifndef EXIFPAGE_H
0006 #define EXIFPAGE_H
0007 #include <QComboBox>
0008 #include <QWidget>
0009 
0010 namespace Exif
0011 {
0012 class TreeView;
0013 }
0014 
0015 namespace Settings
0016 {
0017 class SettingsData;
0018 
0019 class ExifPage : public QWidget
0020 {
0021 public:
0022     explicit ExifPage(QWidget *parent);
0023     void loadSettings(Settings::SettingsData *);
0024     void saveSettings(Settings::SettingsData *);
0025 
0026 private:
0027     Exif::TreeView *m_exifForViewer;
0028     Exif::TreeView *m_exifForDialog;
0029     QComboBox *m_iptcCharset;
0030 };
0031 
0032 }
0033 
0034 #endif /* EXIFPAGE_H */
0035 
0036 // vi:expandtab:tabstop=4 shiftwidth=4: