This commit is contained in:
Alexis Delhaie
2020-08-02 22:17:09 +02:00
commit 68f44834de
31 changed files with 3088 additions and 0 deletions

34
sources/setdaydialog.h Normal file
View File

@@ -0,0 +1,34 @@
#ifndef SETDAYDIALOG_H
#define SETDAYDIALOG_H
#include <QDialog>
#include "day.h"
#include "tools.h"
namespace Ui {
class SetDayDialog;
}
class SetDayDialog : public QDialog
{
Q_OBJECT
public:
explicit SetDayDialog(Day d, QWidget *parent = nullptr);
~SetDayDialog();
Day get_result();
public slots:
void compute_time();
private:
Ui::SetDayDialog *ui;
Day d;
void init();
};
#endif // SETDAYDIALOG_H