File indexing completed on 2024-04-28 15:40:12

0001 // SPDX-FileCopyrightText: 2003-2022 Jesper K. Pedersen <blackie@kde.org>
0002 //
0003 // SPDX-License-Identifier: GPL-2.0-or-later
0004 
0005 #ifndef INVALIDDATEFINDER_H
0006 #define INVALIDDATEFINDER_H
0007 
0008 #include <QDialog>
0009 class QRadioButton;
0010 
0011 namespace MainWindow
0012 {
0013 
0014 class InvalidDateFinder : public QDialog
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit InvalidDateFinder(QWidget *parent);
0020 
0021 protected Q_SLOTS:
0022     void accept() override;
0023 
0024 private:
0025     QRadioButton *m_dateNotTime;
0026     QRadioButton *m_missingDate;
0027     QRadioButton *m_partialDate;
0028 };
0029 }
0030 
0031 #endif /* INVALIDDATEFINDER_H */
0032 
0033 // vi:expandtab:tabstop=4 shiftwidth=4: