add first prototype of gridplanlayout

This commit is contained in:
2024-06-24 09:48:43 +02:00
parent 1ea50cb656
commit 04e243682a
2 changed files with 48 additions and 5 deletions

View File

@@ -1,9 +1,17 @@
# pragma once
# include <QGridLayout>
# include <QWidget>
# include <QLabel>
# include <QDateTime>
class PlanGrid {
class PlanGrid : public QWidget {
Q_OBJECT
private:
QString weekdays[5];
QString times[10];
protected:
QGridLayout* gridLayout;
QMap<QPair<QString, QString>, QLabel*>* planMap;
public:
PlanGrid(QWidget* parent = nullptr);
};
};