Pointer + time delta

This commit is contained in:
Aurélie Delhaie
2022-03-01 21:08:34 +01:00
parent ffebb3c7d7
commit 9bb56fe174
24 changed files with 652 additions and 282 deletions

30
sources/weekoption.h Normal file
View File

@@ -0,0 +1,30 @@
#ifndef WEEKOPTION_H
#define WEEKOPTION_H
#include <QDialog>
#include "models/week.h"
namespace Ui {
class WeekOption;
}
class WeekOption : public QDialog
{
Q_OBJECT
public:
explicit WeekOption(Week *w, QWidget *parent = nullptr);
~WeekOption();
int get_time_delta();
private slots:
void set_time_delta(int);
private:
Ui::WeekOption *ui;
int time_delta;
};
#endif // WEEKOPTION_H