File indexing completed on 2024-04-28 04:51:35

0001 /*
0002     SPDX-FileCopyrightText: 2023 Jean-Baptiste Mardelle <jb@kdenlive.org>
0003 
0004 SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include "ui_import_subtitle_ui.h"
0010 
0011 #include "definitions.h"
0012 #include "utils/timecode.h"
0013 
0014 /**
0015  * @class ImportSubtitle
0016  * @brief A dialog for editing markers and guides.
0017  * @author Jean-Baptiste Mardelle
0018  */
0019 class ImportSubtitle : public QDialog, public Ui::ImportSub_UI
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit ImportSubtitle(const QString &path, QWidget *parent = nullptr);
0025     ~ImportSubtitle() override;
0026 };