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