File indexing completed on 2025-01-19 03:53:52

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2010-01-14
0007  * Description : a dialog to display image file save options.
0008  *
0009  * SPDX-FileCopyrightText:      2009 by David Eriksson <meldavid at acc umu se>
0010  * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_FILE_SAVE_OPTIONS_DLG_H
0017 #define DIGIKAM_FILE_SAVE_OPTIONS_DLG_H
0018 
0019 // Qt includes
0020 
0021 #include <QDialog>
0022 
0023 // Local includes
0024 
0025 #include "digikam_export.h"
0026 #include "filesaveoptionsbox.h"
0027 
0028 class QWidget;
0029 
0030 namespace Digikam
0031 {
0032 
0033 class DIGIKAM_EXPORT FileSaveOptionsDlg : public QDialog
0034 {
0035     Q_OBJECT
0036 
0037 public:
0038 
0039     FileSaveOptionsDlg(QWidget* const parent, FileSaveOptionsBox* const options);
0040     ~FileSaveOptionsDlg();
0041 };
0042 
0043 } // namespace Digikam
0044 
0045 #endif // DIGIKAM_FILE_SAVE_OPTIONS_DLG_H