File indexing completed on 2025-01-19 03:57:02

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2017-05-25
0007  * Description : a dialog to play video.
0008  *
0009  * SPDX-FileCopyrightText: 2017-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_VID_PLAYER_DLG_H
0016 #define DIGIKAM_VID_PLAYER_DLG_H
0017 
0018 // Qt include
0019 
0020 #include <QDialog>
0021 #include <QWidget>
0022 #include <QString>
0023 
0024 // Local includes
0025 
0026 #include "digikam_export.h"
0027 
0028 namespace Digikam
0029 {
0030 
0031 class DIGIKAM_EXPORT VidPlayerDlg : public QDialog
0032 {
0033     Q_OBJECT
0034 
0035 public:
0036 
0037     explicit VidPlayerDlg(const QString& file, QWidget* const parent = nullptr);
0038     ~VidPlayerDlg() override;
0039 
0040 private:
0041 
0042     class Private;
0043     Private* const d;
0044 };
0045 
0046 } // namespace Digikam
0047 
0048 #endif // DIGIKAM_VID_PLAYER_DLG_H