digiKam
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 tool to generate video slideshow from images.
8  *
9  * Copyright (C) 2017-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_VID_PLAYER_DLG_H
25 #define DIGIKAM_VID_PLAYER_DLG_H
26 
27 // Qt include
28 
29 #include <QDialog>
30 #include <QWidget>
31 #include <QString>
32 
33 // Local includes
34 
35 #include "digikam_export.h"
36 
37 namespace Digikam
38 {
39 
40 class DIGIKAM_EXPORT VidPlayerDlg : public QDialog
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit VidPlayerDlg(const QString& file, QWidget* const parent = nullptr);
47  ~VidPlayerDlg() override;
48 
49 private:
50 
51  class Private;
52  Private* const d;
53 };
54 
55 } // namespace Digikam
56 
57 #endif // DIGIKAM_VID_PLAYER_DLG_H
Definition: vidplayerdlg.h:41
Definition: datefolderview.cpp:43