File indexing completed on 2024-04-28 15:31:54

0001 /*
0002     SPDX-FileCopyrightText: 2011 John Layt <john@layt.net>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KTIMECOMBOBOXTEST_H
0008 #define KTIMECOMBOBOXTEST_H
0009 
0010 #include <QWidget>
0011 
0012 class KTimeComboBox;
0013 
0014 class KTimeComboBoxTest : public QWidget
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     KTimeComboBoxTest();
0020 
0021 private Q_SLOTS:
0022     void testDefaults();
0023     void testValidNull();
0024     void testTimeRange();
0025     void testTimeListInterval();
0026     void testTimeList();
0027     void testOptions();
0028     void testDisplayFormat();
0029     void testMask();
0030     void testEdit_data();
0031     void testEdit();
0032 
0033 private:
0034     KTimeComboBox *m_combo;
0035 };
0036 
0037 #endif