File indexing completed on 2024-06-16 04:38:17

0001 /*
0002     SPDX-FileCopyrightText: 2007-2009 Sergio Pistone <sergio_pistone@yahoo.com.ar>
0003     SPDX-FileCopyrightText: 2010-2022 Mladen Milinkovic <max@smoothware.net>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef SHIFTTIMESDIALOG_H
0009 #define SHIFTTIMESDIALOG_H
0010 
0011 #include "actionwithtargetdialog.h"
0012 
0013 class TimeEdit;
0014 class KComboBox;
0015 
0016 namespace SubtitleComposer {
0017 class ShiftTimesDialog : public ActionWithTargetDialog
0018 {
0019 public:
0020     ShiftTimesDialog(QWidget *parent = 0);
0021 
0022     void resetShiftTime();
0023 
0024     int shiftTimeMillis() const;
0025 
0026 private:
0027     KComboBox *m_directionComboBox;
0028     TimeEdit *m_shiftTimeEdit;
0029 };
0030 }
0031 #endif