32 lines
400 B
C
32 lines
400 B
C
![]() |
#ifndef DATE_H
|
||
|
#define DATE_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class date;
|
||
|
}
|
||
|
|
||
|
class date : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit date(QWidget *parent = nullptr);
|
||
|
~date();
|
||
|
|
||
|
private slots:
|
||
|
void on_calendarWidget_selectionChanged();
|
||
|
|
||
|
void on_calendarWidget_clicked(const QDate &date);
|
||
|
|
||
|
private:
|
||
|
Ui::date *ui;
|
||
|
signals:
|
||
|
void kaishi(QString str);
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // DATE_H
|