digiKam
Loading...
Searching...
No Matches
vidplayerdlg.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 : 2017-05-25
7 * Description : a dialog to play video.
8 *
9 * SPDX-FileCopyrightText: 2017-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt include
18
19#include <QDialog>
20#include <QWidget>
21#include <QString>
22
23// Local includes
24
25#include "digikam_export.h"
26
27namespace Digikam
28{
29
30class DIGIKAM_EXPORT VidPlayerDlg : public QDialog
31{
32 Q_OBJECT
33
34public:
35
36 explicit VidPlayerDlg(const QString& file, QWidget* const parent = nullptr);
37 ~VidPlayerDlg() override;
38
39private:
40
41 class Private;
42 Private* const d = nullptr;
43};
44
45} // namespace Digikam
Definition vidplayerdlg.h:31
Definition datefolderview.cpp:34