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

0001 /*
0002     SPDX-FileCopyrightText: 2011 John Layt <john@layt.net>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDATECOMBOBOXTEST_H
0008 #define KDATECOMBOBOXTEST_H
0009 
0010 #include <QWidget>
0011 
0012 class KDateComboBox;
0013 
0014 class KDateComboBoxTest : public QWidget
0015 {
0016     Q_OBJECT
0017 
0018 private Q_SLOTS:
0019     void testDefaults();
0020     void testValidNull();
0021     void testDateRange();
0022     void testDateList();
0023     void testOptions();
0024     void testDisplayFormat();
0025     void testSignals();
0026     void testDatePickerIntegration();
0027 };
0028 
0029 #endif // KDATECOMBOBOXTEST_H