diff --git a/src/View/EinsatzplanFrame/EinsatzplanFrame.hpp b/src/View/EinsatzplanFrame/EinsatzplanFrame.hpp index 19a50d8..db10652 100644 --- a/src/View/EinsatzplanFrame/EinsatzplanFrame.hpp +++ b/src/View/EinsatzplanFrame/EinsatzplanFrame.hpp @@ -1,7 +1,21 @@ # include +# include +# include +# include "../PlanGrid/PlanGrid.hpp" class EinsatzplanFrame : public QFrame{ protected: + QLabel* profileImg_m; + QLabel* id_m; + QLabel* einsatzplanLabel_m; + + PlanGrid* planGrid_m; + + QPushButton* abmeldenButton_m; + QPushButton* createMemberButton_m; + QPushButton* deleteMemberButton_m; + QPushButton* createVeranstaltungButton_m; + QPushButton* deleteVeranstaltungButton_m; public: EinsatzplanFrame(QWidget* parent = nullptr, bool admin); diff --git a/src/View/PlanGrid/PlanGrid.cpp b/src/View/PlanGrid/PlanGrid.cpp new file mode 100644 index 0000000..e69de29 diff --git a/src/View/PlanGrid/PlanGrid.hpp b/src/View/PlanGrid/PlanGrid.hpp new file mode 100644 index 0000000..288e717 --- /dev/null +++ b/src/View/PlanGrid/PlanGrid.hpp @@ -0,0 +1,7 @@ +# include + +class PlanGrid : QWidget{ +protected: +public: + PlanGrid(QWidget* parent = nullptr); +}; \ No newline at end of file