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 FIXPUNCTUATIONDIALOG_H
0009 #define FIXPUNCTUATIONDIALOG_H
0010 
0011 #include "actionwithtargetdialog.h"
0012 
0013 QT_FORWARD_DECLARE_CLASS(QCheckBox)
0014 
0015 namespace SubtitleComposer {
0016 class FixPunctuationDialog : public ActionWithTargetDialog
0017 {
0018 public:
0019     FixPunctuationDialog(QWidget *parent = 0);
0020 
0021     bool spaces() const;
0022     bool quotes() const;
0023     bool englishI() const;
0024     bool ellipsis() const;
0025 
0026 private:
0027     QCheckBox *m_spacesCheckBox;
0028     QCheckBox *m_quotesCheckBox;
0029     QCheckBox *m_englishICheckBox;
0030     QCheckBox *m_ellipsisCheckBox;
0031 };
0032 }
0033 #endif